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. Yep, there already is a program to do it: http://www.donationcoder.com/Software/Mous...rang/index.html jaclaz
  2. That error is due to not having a few "ID" files in the root of the CD. Read here, the matter is explained: http://www.911cd.net/forums//index.php?showtopic=16381&hl= jaclaz
  3. Double posting wont get you any priority.... ...it will only increase the entropy of the board.... (the double post is here: http://www.msfn.org/board/index.php?showtopic=72162&hl= please, people willing to help, post in there, just to keep things together...) jaclaz
  4. Sorry, but I don't see the actual advantage of your batch file as compared to simply run ver jaclaz
  5. The above applies ONLY to elder versions, with a patched SFCx.DLL: http://www.winguides.com/registry/display.php/790/ but it is inconvenient, as every newish SP will change the address to be patched. Read these: http://pubs.logicalexpressions.com/Pub0009...icle.asp?ID=290 http://pubs.logicalexpressions.com/pub0009...icle.asp?ID=510 The "new" method is derived from an idea of Damian Bakowsky: http://www.d--b.webpark.pl/index2_en.htm http://www.d--b.webpark.pl/reverse04_en.htm (making an EMPTY sfcfiles.dll) I passed the info to Fred Vorck: http://www.vorck.com/remove-ie.html who bettered the coding and the method found it's way into Nuhi's Nlite: jaclaz
  6. Well, actually it can be done from batch too. Two examples from Rob Van der Woude Scripting site: For XP only (uses diskpart): http://www.robvanderwoude.com/files/cdromxp.txt More generic: http://www.robvanderwoude.com/amb_cdrom.html#CdRom2 jaclaz
  7. hmmm, posting a WORKING link might help: Your link: Correct link: jaclaz
  8. Good work, Markymoo. Just for the record Wingrub development is on hold, the GRUB4DOS version it has is corresponding to 0.91, whilst GRUB4DOS is up 0.4.1 - corresponding to 0.97 (stable) and and 0.4.2pre is just out: http://sarovar.org/projects/grub4dos/ You can use allright the Wingrub to make the menu.lst, but it is better if you use the latest grub4dos as the actual bootloader. You do not actually need to INSTALL it. You can format the key under NT/2K/XP/2003 (so that the bootrecord invokes NTLDR), then you copy to the stick: menu.lst (it can be either in ROOT, /boot/, /boot/grub/) NTLDR GRLDR and you add a boot.ini file with this entry (at least): C:\GRLDR="Start GRUB" If you format the key as a (win9x) DOS disk (so that bootrecord invokes io.sys/msdos.sys/command.com) you add to the stick: menu.lst (it can be either in ROOT, /boot/, /boot/grub/) GRUB.EXE and (optionally) you add to your autoexec.bat the line: GRUB.EXE (or you can input it on comand prompt, only when you need to shift partitions) @Markymoo Where did you get that splashimage? jaclaz
  9. Read here: http://www.911cd.net/forums//index.php?showtopic=14292 Unless you can change the Removable/Fixed bit via the manufacturer utility or the Hitachi Microdrive Filter, you will be limited to one partition under 2K/Xp. @LLXX USB STICKS controllers usually default as "Removable" (but with the right utility can be set as "Fixed") USB DRIVES controllers ALWAYS default as "Fixed" The above has NOTHING to do with BIOS, it's the Windows driver that questions directly the hardware. jaclaz
  10. Hint: does the word "proxy" mean anything to you? jaclaz
  11. Well, megaupload download work as follow: 1) in the top right of the page when you access it there is a countdown to wait xx seconds 2) when the timeout expires a window appears OVER the same area 3) this window has a X button on top right corner 4) knowing that conventionally clicking on a X button means to close a window..... 5) you might want to try clicking on that button and looking what is UNDER that window jaclaz
  12. The simplest thing you can do is using a DOS (win9x one) boot disk and use the FDISK for FREEDOS. it is easily scriptable: http://www.23cc.com/free-fdisk/index.htm If you simply want to delete partition entries, there are quite a bunch of programs capable of wiping out or overwriting the MBR, under DOS or Linux. As an example, I sometimes use this ones: http://ms-sys.sourceforge.net/ with a --mbrzero option http://www.diydatarecovery.nl/mbrtool.htm Or you can use MBRwizard: http://mbrwizard.tripod.com/ with a switch of /Wipe=1 or /Wipe=2 (which is scriptable too) jaclaz
  13. No, please, DO NOT do that! (desks are so expensive nowadays) jaclaz
  14. Yes, sure, that's all the point about BOOT CD's. jaclaz
  15. Just to keep things together, a small howto to boot from BartPE (CD) to install XP has been posted here: http://www.msfn.org/board/index.php?showtopic=68252 adapting it to USB drive/key (a BIG one, ) should not be a problem. jaclaz
  16. As mentioned here: http://www.msfn.org/board/index.php?showtopic=33964 actually having the system on LOGICAL VOLUMES inside an EXTENDED PARTITION is, generally speaking, safer than having it on PRIMARY. Drive lettering (and the way DOS/Windows does it) is one of the worse headaches: http://www.msfn.org/board/index.php?showtopic=67395 (and given links) jaclaz
  17. @Yurek3 If you change the line ECHO [boot loader] >> %inifile% to ECHO [boot loader] > %inifile% (taking out a > ) you can remove the line del /F /Q %systemdrive%\boot.ini from your batch. jaclaz
  18. Have a try with this: http://fontforge.sourceforge.net/ jaclaz
  19. Ohhh, I see. So we are talking of the DOS floppy diskette that XP can make. Then there is no easy way out, the three extensions used are: .COM .EXE .BAT (the solution LLXX works, but has it's negative consequences) but a file with a different extension "could" work, see this: http://support.microsoft.com/?kbid=35284 (it applies to "real" MS-DOS, not the one that XP creates, which is a "derivative of the DOS part of ME, I believe, but trying won't do any harm) jaclaz
  20. Let see if we can put it straight. 1) there is NO DOS in XP 2) there is the Command Prompt (that is NOT DOS) 3) the Command prompt can be generated by two DIFFERENT COMMAND INTERPRETERS 4) The main (default) one is cmd.exe that has MORE features 5) To mantain a better compatibility with DOS programs, there is also the command.com that has LESS features, i.e. only 8.3 filenames, etc. Read here: http://www.ss64.com/nt/cmd.html Now the so-called "executable program" file extensions are usually: .bat .cmd .com .exe .vbs plus a few more: http://antivirus.about.com/od/securitytips/a/fileextview.htm Windows "decides" that a file is executable by it's extension. Executable extensions are held in the Registry, nothing prohibits you to ADD an .abc file extension in the Registry, complete howto: http://filext.com/info/showthread.php?t=12 and an useful (FREEWARE) program: http://www.angelfire.com/biz/rhaminisys/fileasoc.html jaclaz
  21. I have a Direcway satellite connection and the only problem is the FEE, that is much higher than a corresponding DSL one (and the speed is lower). The Direcway uses a sort of router, so no problem in setting it up, 100% compatible with existing network. jaclaz
  22. You do not install an Operating System "AS" either client or server. You simply install it. Then you configure its networking, here is the best site I ever found that has all tutorials you will ever need: http://www.windowsnetworking.com/ jaclaz
  23. No prob, I will: http://www.msfn.org/board/index.php?showtopic=70122 jaclaz
  24. There is no hope about that. Maybe those willing to take part in the flame war could just read this elder thread: http://www.msfn.org/board/index.php?showtopic=37402 (all 45 pages of it) or just go directly to my post here: http://www.msfn.org/board/index.php?showtopic=37402&st=411 This 9x vs. NT war is one of the most recurring topics.... jaclaz
  25. How to convert a (multiple) space separated text into Tab delimited (with WORD). 1) paste the columnar text in an empty Word Document 2) Start the search/replace function 2) In the search field input 2 (two) spaces 3) in the replace field input ^t (the character t preceded by ^ means a TAB) 4) run the replace until no more occurrences of the two spaces is found 5) now input in the search field ^t^t (it means two conscutive TABs) 6) leave the replace field as is 7) run the replace until no more occurrences of double TABs are found 8) if the number of spaces between the columns was ODD, there can still be occurrences of either TAB followed by a single space or of a single space followed by a TAB, to "clean them re-run the replace function once with [space]^t and once with ^t[space] in the search field 9) copy the now tab-delimited text 10) paste it to the "final" word document At this point you can (as you wish) set the TABs or select the data and convert it to a table using the TXT->Table function, specifying that the separator is a TAB If you enable seeing "hidden characters" in the WORD document (where a space is shown as a dot and a tab is shown as a right handed arrow) will help you visually analize the proceedings. Just for the record, the apparent "misalignment" you experienced is due to the fact that NOTEPAD uses a FIXED font, whilst WORD usally defaults to Times New Roman which is a PROPORTIONAL font, i.e. a font where a letter like W takes as much as THREE times the space for a letter I. jaclaz
×
×
  • Create New...