Jump to content

jaclaz

Member
  • Posts

    21,300
  • Joined

  • Last visited

  • Days Won

    53
  • Donations

    0.00 USD 
  • Country

    Italy

Everything posted by jaclaz

  1. JFYI : http://www.boot-land.net/forums/index.php?...=6054&st=44 Happy problem is solved. jaclaz
  2. The "source" for that Wikipedia is this page (that doesn't work in Opera) : http://www.microsoft.com/iplicensing/produ...nsing%20Program compare it with the "known" FAT one: http://www.microsoft.com/iplicensing/produ...20File%20System Try searching for "Any" in category "Filesystem": The good guys at MS have "queer" ways.... I will cite this from the benefits of FAT: Definitely CP/M filesystem appears a bit dated when we see the first two "benefits" :whistling: Remember to take your time reading "Resources" and expecially "FAQ's" .... Isn't it unusual that you have a FAQ section but apparently nowhere to submit a question? jaclaz
  3. NO, I mean yes. I have NO particular concerns about slowing/security, but I consider it a BLOAT. A more complete take on the matter, JFYI: http://www.msfn.org/board/accidentally-rem...ll-t129520.html AFAIK nlite needed only much smaller .NET "runtimes": http://www.nliteos.com/files/runtimes.txt but if I remember correctly this happened a long time ago, right now on the dowload page: http://www.nliteos.com/download.html X86: http://www.microsoft.com/downloads/details...;DisplayLang=en X64: http://www.microsoft.com/downloads/details...;displaylang=en there are links to the "full" 2.0, instead of the "redistributable" that is here (x86): http://www.microsoft.com/downloads/details...;displaylang=en Cannot say whether current nlite runs on them or in later 3.0: http://www.microsoft.com/downloads/details...;displaylang=en Some of the members which are more experienced with nlite may give more updated info. jaclaz
  4. Workaround . Rename React Os xcopy.exe to ROSXCOPY.EXE Create a batch file that "translates the syntax", something along the lines of (just a simple example):. IF %1.==/DE. ROSXCOPY.EXE /D /E "Compile" it with this: http://www.f2ko.de/English/b2e/index.php as XCOPY.EXE Would it work? Cannot say, but it should. jaclaz
  5. You will need a contiguous source file for direct mapping. Using Firadisk you are not anymore limited to the "mythical" but actually effective 500/512 Mb size limit of RAMDISK.SYS (and OK, the limit is somewhere else, AND it can be overcome now ): http://www.boot-land.net/forums/index.php?...ic=9474&hl= But still it takes TIME to load an image to RAM, expecially if source is a slow device, besides requiring LOTS of RAM. Once the image is loaded in RAM, it's speed isn't that great, Karyonix is working to speed up things: http://www.boot-land.net/forums/index.php?...8804&st=186 If and when either Karyonix or Sha0 (Firadisk and WinVblock developers respectively) or some other developer will take seriously this idea: http://www.boot-land.net/forums/index.php?...=8168&st=11 things may change. I even found a couple of possible candidates (existing drivers) but it seems that noone is interested in the minimalistic approach, as well as in this one: http://www.boot-land.net/forums/index.php?...ic=3717&hl= I am always looking around for volunteers, do you happen to have a "lab rat attitude"? jaclaz
  6. SET PartialIP=%TargetIP:~0,7% IF "%PartialIP%"=="10.10.6" ECHO Bad, BAD boy!&PAUSE jaclaz
  7. Since the pinged machine address is also in square brackets [], the snippet will work allright. Let's go on, let's call it checkping.cmd: @ECHO OFF SETLOCAL ENABLEEXTENSIONS SETLOCAL ENABLEDELAYEDEXPANSION ::Usage: checkping.cmd machine-name SET Target=%1 IF %Target%.==. ECHO Missing target!&PAUSE&GOTO :EOF FOR /F "tokens=2 delims=[]" %%A in ('PING %Target% -n 1 ^| FIND "["') DO ( SET TargetIP=%%A ) IF NOT DEFINED TargetIP ECHO NO IP found!&PAUSE&GOTO :EOF SET TargetIP :Compare jaclaz
  8. For whatever may be of use (I think None ), on the referenced page on bbs.mydigit.com there is only the .pdf of the schematics, which can be found here also: http://www.go-gddq.com/upload/2009_10/09100815016151.pdf Specs here: http://www.ite.com.tw/EN/products_more.asp...=4&ID=14,52 A driver can be found: http://www.mtwchina.com/download.asp http://www.mtwchina.com/download/setup_UT3...USBest_0110.rar Here you can find: http://www.hjreggel.net/cardspeed/index.html http://www.hjreggel.net/cardspeed/info-readers.html http://www.hjreggel.net/cardspeed/speed-by-readers.html that a card reader with: Vid=1307 Pid=0330 is manufactured by Digisol, models 00047200 and 00047201, for which drivers are available: http://www.digisol-online.com/epages/61690...20x/4720x_win98 dated 19/07/2009 they do seem newer than anything else, but really cannot say if it would make a difference. ..and yes, HP printer software DOES suck! jaclaz
  9. There is casually a full fledged NT FOR tokens and delimiters tutorial here: http://www.robvanderwoude.com/ntfortokens.php using, among the other things, PING. A simple example with IPCONFIG is here: http://www.boot-land.net/forums/index.php?showtopic=5881 Do an actual PING and an actual NSLOOKUP, and post the results, the parsing may be different in different language OS. As an example, here is an actual output of PING on my machine, pinging for a machine named "hall": C:\>ping Hall -n 1 Esecuzione di Ping Hall [10.2.7.2] con 32 byte di dati: Risposta da 10.2.7.2: byte=32 durata<1ms TTL=128 Statistiche Ping per 10.2.7.2: Pacchetti: Trasmessi = 1, Ricevuti = 1, Persi = 0 (0% persi), Tempo approssimativo percorsi andata/ritorno in millisecondi: Minimo = 0ms, Massimo = 0ms, Medio = 0ms Which can be parsed with a simple batch cleverly named parsehallip.cmd : @ECHO OFF FOR /F "tokens=2 delims=[]" %%A in ('PING hall -n 1 ^| FIND "["') DO ( SET hall=%%A SET hall ) Which, when executed results in: C:\>parsehallip.cmd hall=10.2.7.2 jaclaz
  10. We use to call them debuggers.... jaclaz
  11. I will gladly. Booting a PE in RAM is not anything new. It is possible since the release of Server2003 SP1, end of 2004/first months of 2005 methods were found: http://www.911cd.net/forums/index.php?showtopic=9685 http://www.911cd.net/forums/index.php?showtopic=10445 http://www.911cd.net/forums//index.php?showtopic=10482 http://www.911cd.net/forums//index.php?showtopic=10806 The BootSDI plugin is just the way some winbuilder projects implemented RAMDISK booting. The way you depict, (mapping the iso to --mem with grub4dos) you are effectively loading the PE in memory TWICE, read here WHY: http://www.boot-land.net/forums/index.php?...=8258&st=37 With Firadisk or WinVblock, you re-use the SAME image in RAM loaded via grub4dos. jaclaz
  12. Lots of them. Post your attempt to detect the IP and a (short, fake) list of the IP's to be compared, and we'll try to fill the gaps. jaclaz
  13. Well, NO. With SOME free stuff you may get that, with some other you can get MUCH more than with paid for solution: it's not the marketing model that makes the difference, it is the quality of the programs and the dedication of the programmers that make a difference. But we do HAVE NTFS drivers with source: NTFS-3G, and the good guys at ReactOS before or later will release a working NTFS driver. And exFAT is not that different from FAT32, for which driver source is available. Sure it won't probably allow INSTALLING Win9x on such systems, but that would be rather pointless anyway. jaclaz
  14. Follwowing the "DISM working on XP", there is now a new way to mount .wim images under XP, using just three files from Windows 7 (that you can extract with 7-zip from the DVD allright) and a new app by psc over at boot-land (Peter Schlang): http://nativeex.boot-land.net/Programs/Wim...x/WimCaptEx.htm Here are some batches to use it without winbuilder: http://www.boot-land.net/forums/index.php?showtopic=9765 Please NOTE that it is still widely experimental, so DO NOT trust the batches. @MrJinje Cannot say if you can adapt the batch routines to your nice tool, possibly as an option for XP users. jaclaz
  15. So you managed to double post AND revive unneededly a thread marked as [sOLVED] AND completely failed to read the present thread. The whole point is that the HP USB format tool in some configuration DOES NOT WORK properly, and that ANOTHER tool needs to be tested in such cases. More generally, the use of the HP USB format tool is currently deprecated EXACTLY because it is subject to failures on some hardware. Now, be kind, take your time and READ: http://www.boot-land.net/forums/index.php?showtopic=9460 Particularly, READ the whole thread by Fuwi: http://www.911cd.net/forums//index.php?showtopic=21702 ALREADY linked to by cdob previously. jaclaz
  16. Owww , comeon, you should have learned by now that we are not (yet ) mind readers and that the stoopid crystal ball tuning guys are simply a bunch of incompetent and lazy bastards! WHAT have you used to partition/format the stick? With which settings? Which Filesystem? Which MBR? In the meantime, all I can give you is my standard reply #32 : http://www.boot-land.net/forums/?showtopic=2587&st=1 jaclaz
  17. Well, a man can dream, or not? The point I was trying to make is that with the Win9x environment largely out of any kind of official support, ONLY hobbyists, a few "dinosaurs" and more generally NON-COMMERCIAL users are likely to still use it. I bet that the revenues from very "vertical" apps, targeted exclusively to the unsupported/unused Windows platform are very near to 0. A few "illuminated" companies/developers, no matter if because they are just "good guys" or because they actually keep their sales under control and found that it's several years they were able to sell a license for apps aimed to a Commercially non-existant target, stoppped their development and made them available freely, a few examples: http://www.ardi.com/win_download.php http://web.archive.org/web/20080308215648/...ft.com/ftp/sdd/ http://www.xp-smoker.com/98smoker.html http://www.boot-land.net/forums/index.php?showtopic=752 On the other hand, there are episodes of what I cannot but consider commercially "stoopid" approaches: http://www.911cd.net/forums//index.php?sho...12326&st=22 http://www.911cd.net/forums//index.php?sho...12326&st=39 Now that Neoware has been acquired by HP, it's allright, since they don't have to sell their products, and a nice thingy has been lost forever: http://www.hp.com/hpinfo/newsroom/press/2007/071001xa.html Sure, I don't doubt you have the knowledge to do that , only you won't do it or won't do it for free. Please note that I do understand that it is exclusively your choice to write it, choose the license form and to have people pay for your software, but I am notoriously cheap. Maybe, or maybe having a "C based" tool, would make it easier. Exactly my point: not foreseeable income from the sales of such software. jaclaz
  18. @cdob watch out, I have a deja-vu feeling : http://www.imdb.com/title/tt0074860/quotes in case: http://www.imdb.com/title/tt0109830/quotes jaclaz
  19. I wouldn't be (and am not) so sure. If it is, "generic" tool is here: http://www.cgsecurity.org/wiki/CmosPwd it can also "zap" the whole CMOS, if needed. jaclaz
  20. Are we talking of BIOS password (which is one thing) or Hard disk password (which is another)? What EXACT make/model of PC/motherboard? What EXACT make/model of hard disk? jaclaz
  21. Also: http://www.mediachance.com/free/multimon.htm cannot say about 7. jaclaz
  22. Post your complete autoexec.bat and config.sys. Describe in more detail the actual need you have for a virtual drive, in other words, try describing which is your "final goal" as opposed to "I want to use SUBST", there may be other solutions. jaclaz
  23. As Bob Dylan would have put it : ..or in google and in doing some homework.... http://www.boot-land.net/forums/index.php?...ic=9736&hl= jaclaz
  24. Yep, smaller files mean slower speed, see this as a quick reference: http://www.boot-land.net/forums/index.php?...=9347&st=15 If you are "runnning" on flash device, this may (or may completely fail to ) help: http://www.boot-land.net/forums/index.php?showtopic=8757 Yes there was: http://www.boot-land.net/forums/index.php?...ic=9474&hl= And yes it has. You are now outdated. Firadisk: http://www.msfn.org/board/6-t137714.html http://www.boot-land.net/forums/index.php?showforum=94 But of course you need lots of RAM and the time to transfer the data to RAM is anyway needed. jaclaz
  25. As often happens, OFF-TOPIC, but not much : How much money do you think these guys are making nowadays from selling this?: http://www.techsoftpl.com/vxd/index.htm at US$ 429 apiece? http://www.techsoftpl.com/vxd/order.htm Maybe if they would decide to "let go" that software or provide a "complimentary copy" a C programmer willing to take the challenge could even be found. jaclaz
×
×
  • Create New...