Jump to content

jaclaz

Member
  • Posts

    21,274
  • Joined

  • Last visited

  • Days Won

    53
  • Donations

    0.00 USD 
  • Country

    Italy

Everything posted by jaclaz

  1. Personally, I would try using the FREEWARE version of Effect Maker: http://www.effectmaker.com/application/ and assemble the thingy in a "screensaver" jaclaz
  2. ..or you need to upload the image to a FREE server, then put the link in the post. Read here: http://www.911cd.net/forums//index.php?showtopic=15995&st=7 to post the link, you press 8th button from left: 1 B Bold 2 I Utalic 3 U Underlined 4 S Striken 5 A Text Color 6 hyperlink (world with chain) 7 e-mail (envelope) 8 image (tree on lawn) 9 quote (balloon) 10 code (#) jaclaz
  3. Yep, just put a statement in it like this: SETLOCAL ENABLEDELAYEDEXPANSION http://www.robvanderwoude.com/local.html and here is the details about Why it won't work without delayed expansion disabled http://www.robvanderwoude.com/ntset.html#DelayedExpansion When you have a doubt about batch files, go here: http://www.robvanderwoude.com/ (if there is a solution, normally is there) jaclaz
  4. A few more alternatives (besides du-baron): http://www.911cd.net/forums//index.php?showtopic=15809&hl= Another one: http://www.easeus.com/disk-copy/index.htm though I don't think that "resizing" of the partition is handled by the above utilities, but there is one that is FREE and should have this feature: http://www.miray.de/products/sat.hdclone.html Another one that I am not sure about: http://www.pcinspector.de/clone-maxx/uk/welcome.htm Here is anice review/comparison of commercial ones: http://disk-imaging-software-review.toptenreviews.com/ jaclaz
  5. See links in my posts here: http://www.911cd.net/forums//index.php?showtopic=15854&hl= jaclaz
  6. Yep, the idea behind testdisk/photorec (and MOST but not ALL file recovery programs) is to access directly the hard disk (or memory card) data, bypassing the filesystem driver of the OS. If the camera is shown as a drive letter, it means that there is a working physical connection, so it will work. The AMOUNT and/or "quality" of recovered data cannot be estimated offhand, though, very often in these cases recover is TOTAL, some times it is partial, a few times is NO recovery at all. As a general advice as different utilities use different "strategies" to acces the data, if recover with one is not total, you can try another one. jaclaz
  7. Well, the "correct" way of re-formatting under ANY OS is to do so AFTER having wiped the disk, expecially if some "strange" application like bootmanagers or proprietary programs that hardcode data into hidden sectors were used on the drive. There are tens of programs able to do so, you don't need a "secure wipe" one like these: http://www.thefreecountry.com/security/securedelete.shtml just a program that writes all 00's or FF's to the drive, like this one: DSFOK http://members.ozemail.com.au/~nulifetv/fr...ware/index.html part of the DSFOK tools is the program XDL (6 Kbytes): It is possible that in some cases hard disk format under win2K/XP "misbehaves", just as it does floppy disk formatting:http://www.denispetrov.com/format144/ jaclaz
  8. You need to boot from a boot CD, as an example the WIN2K one, or floppy. The error you are reporting is typical of a non-formatted (and non-fdisked) drive. When you boot from the Win2k Cd the install program will detect the drive and allow you to partition and format it. jaclaz
  9. ..or try with the program that comes together with testdisk: http://www.cgsecurity.org/testdisk.html ...it is called PHOTOREC, the name says it all.... jaclaz
  10. Strange, DOS 7.x (aka Win9x) files instead of the MS-DOS 6.22 ones) i.e. NATIVE FAT32 access, should NOT be able to load the Win3.x GUI unless 3Xstart is loaded.....but maybe this applies to 3.1 and not to 3.11... Some links about the matter: http://www.oldfiles.org.uk/powerload/ 3XSTART http://oldfiles.org.uk/powerload/win3x.htm http://www.devedia.com/dosghost/dos/ph_w31.htm http://mw16.2ya.com/ http://www.geocities.com/politalk/ http://www.geocities.com/politalk/rmdrv/win31.htm jaclaz
  11. As every one has shared some knowledge, I'll throw my two cents in: @ECHO OFF REM ATTRIB -H -S -R C:\BOOT.INI echo [Boot Loader] > C:\boot.tmp echo Timeout=0 >> C:\boot.tmp type boot.ini | FIND /V "[Boot Loader]" | FIND /V "Timeout=" >> C:\boot.tmp Copy C:\BOOT.TMP C:\BOOT.INI > NUL DEL C:\BOOT.TMP REM ATTRIB +H +S +R C:\BOOT.INI (you will need to UNrem the two remmed lines) Maybe it's brutal, but no need for FOR loops, conditional statements or external utilities.... jaclaz P.S.: the line "type boot.ini | .....>> C:\boot.tmp" has to be on the SAME line
  12. Actually it "might" be possible using a form of "distributed" filesystem, like the 2003 one: http://www.windowsnetworking.com/articles_...ile-System.html but I would use AFS, or to be more exact, OpenAFS: http://www.openafs.org/ but maybe it isn't worth the hassle of learning and installing... jaclaz
  13. To password protect the booting process you might need a bootmanager like XOSL or the like. If you just want to "hide" the entry in boot.ini, simply edit it from: [boot loader] timeout=30 default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect /NoExecute=OptIn C:\CMDCONS\BOOTSECT.DAT="Microsoft Windows Recovery Console" /cmdcons C:\CMDCONS\BOOTSECT.DAT="Microsoft Windows PE" to [boot loader] timeout=30 default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /fastdetect /NoExecute=OptIn C:\CMDCONS\BOOTSECT.DAT="Microsoft Windows Recovery Console" /cmdcons C:\CMDCONS\BOOTSECT.DAT= reference: http://myitforum.com/articles/14/view.asp?id=8808 You won't "see" last entry when booting, but if you use the down arrow key, you will able to select the "empty" line. jaclaz
  14. @venery Yep, unfortunately the Win2k (silently and without warning ) "updates" the NTFS filesystem: http://support.microsoft.com/?kbid=198904 Files from NT 4.00 SP4 are enough to re-access the partition. I would try to bluntly copy the NTFS.SYS from SP4 over the existing one and see what happens.... ....but cannot say if it will work. jaclaz
  15. @midiboy I still don't understand WHY you need to delete the partition. You can boot from a secondary install or BartPE and simply DELETE ALL FILES and DIRECTORIES on C:\ You can be sure that Windows XP WON'T ask you to install to the "existing C:\Windows", as it does NOT exist anymore @Takeshi @all It is NOT recommended to "play" with partitions , Murphy's law is always lurking around trying to prove itself right, and I have seen SEVERAL people weeping because a power sourge or outage WHILST converting partitions ruined ALL their DATA... jaclaz
  16. Well, NO, that kind of setup is NON-standard. There are TWO "weak" points in your setup. as I see it: 1) WHY do you want/need two primary partitions? All NT based systems can be installed on extended partitions, they only need their BOOT files on a Primary active partition. 2) WHY you delete the partition when you want to re-install? You only need to EMPTY it, then reinstall on the same partition. Though windows NT/2K/XP can "live" happily with more than one Primary partition on the same disk, the setup portion will NOT make a second primary partition on the same drive. There quite a few reasons why it is NOT advised to have two primary partitions on the same drive, main one is the drive lettering. Read these threads: http://www.msfn.org/board/index.php?showtopic=53177 http://www.msfn.org/board/index.php?showtopic=47182 http://www.msfn.org/board/index.php?showtopic=35329 http://www.msfn.org/board/index.php?showtopic=33964 and referenced to threads. jaclaz
  17. hmmm.... NOT easy. There is a couple of ongoing threads here, though: http://www.911cd.net/forums//index.php?showtopic=15837&hl= http://www.911cd.net/forums//index.php?showtopic=14181&hl= jaclaz
  18. Mind you I don't have right now a copy of Excel, so I am just trying to remember things..... ...but there are several objects in Excel Visual Basic (in order of "importance"): Workbook Worksheet Sheets Range You should add a "Select" statement for "Workbook" and "Sheet" BEFORE the "Range" one. This is not necessary on the recorded macro as a Workbook AND a Sheets is already selected. These might be of help: http://j-walk.com/ss/excel/faqs/xl95faq4.htm http://www.excel-vba.com/v-microsoft-excel-range.htm http://www.ozgrid.com/VBA/excel-vba-sheet-names.htm http://www.anthony-vba.kefra.com/vba/vbabasic2.htm jaclaz
  19. NO, the problem is the so called 48 bit LBA limit. Read here: http://www.48bitlba.com/ http://www.48bitlba.com/faq.htm FAQ #1 @dannyd0g http://www.48bitlba.com/win98hbi.htm jaclaz
  20. Most probably the NEW hard disk is NOT fdisked/formatted. So, the BIOS (i.e. the hardware) detects it, but the Operating System (i.e. software) has no way to access it until a minimum of information (MBR and filesystem) is written to it. Read these howtos: http://www.pcmech.com/show/harddrive/43/ http://www.regstevens.co.uk/add1.htm http://www.5starsupport.com/tutorial/hdrive.htm You should get the idea. If you need any further help, just post again. jaclaz
  21. Well, they work for me: http://winimize.com/min98.zip http://winimize.com/clsidall.zip http://winimize.com/bootcd.zip jaclaz
  22. Well, something VERY similar has already been made using Ken Kato's VDK by Sanbarrow. DO have a look at his site: http://sanbarrow.com/ and search threads where he posted on the 911 CD Forum: http://www.911cd.net/forums/index.php? This one is just an example: http://www.911cd.net/forums//index.php?showtopic=14996&hl= (not actally .ISO support, but drive images all the same, and as I see it sparse images are more handy than "static" .ISO images) jaclaz
  23. 谢谢 should mean THANK YOU VERY MUCH! Now I can start experimenting with it with less "fear" to make damages! jaclaz
  24. While joining in the celebrations of our Chinese mates New Year.... ....I know that I risk being flamed for "attempted thread hijacking.... , but... anyone willing to help me here: http://www.msfn.org/board/index.php?showtopic=63553 jaclaz
  25. 1) Read these: http://home.graffiti.net/jaclaz:graffiti.n...SB/USBfaqs.html http://home.graffiti.net/jaclaz:graffiti.n...B/USBstick.html 2) if the USB drive is seen as "Fixed", nothing prevents you from multipartitioning it, once booted NTFS filesystem is fully supported, you will need just a minimal FAT16 partition to boot from 3) idf the USB drive is seen as "Removable", you can use the Hitachi Microdrive Filter Driver to make it "seem" "Fixed": http://www.911cd.net/forums//index.php?showtopic=14292 jaclaz
×
×
  • Create New...