Jump to content

IcemanND

Patron
  • Posts

    3,252
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by IcemanND

  1. I haven't tried it since I only use mine in a RAID, but all you should have to do is change the entries in txtsetup.sif to this, all other instructions are the same: [SCSI] iaAHCI = "Intel(R) 82801FR SATA AHCI Controller (Desktop ICH6R)" [SourceDisksFiles] iastor.sys = 1,,,,,,3_,4,1 [HardwareIdsDatabase] PCI\VEN_8086&DEV_2652&CC_0106 = "iaAHCI" [SCSI.load] iaAHCI = iastor.sys,4
  2. Sorry it took so long, had to reload my machine. create $oem$\drivers\IAA and copy contents of floppy here. add path to OemPnpDriversPath in winnt.sif use makecab.exe on iastor.sys move iastor.sy_ to i386 folder add the following to txtsetup.sif either all at the end or you can add these entries to their respective sections already there. (the default iaStor_ICH6R as a driver name does not seem to work, 8 letter limit? changed to iaStor and problem went away.) [SCSI] iaStor = "Intel(R) 82801FR/82801ER/6300ESB SATA RAID Controller" [SourceDisksFiles] iastor.sys = 1,,,,,,3_,4,1 [HardwareIdsDatabase] PCI\VEN_8086&DEV_2652&CC_0104 = "iaStor" [SCSI.load] iaStor = iastor.sys,4Any questions let me know.
  3. I have the same drive for my Gigabyte board. I had the same problems with it. When I get home I'll post the info on how I got it to work.
  4. What version og Ghost are you using? I use 8 every day without problems on XP, 7 had some minor issues but only in specific configurations.
  5. you can't use F6 to install drivers with and unattended install cd. INtegrate them and be done with it.
  6. if you are using ghost 7 or 8 it has a boot disk creator called the Ghost Boot Wizard.
  7. sunshine thingamajig snow skiing or water skiing
  8. Try EasyRecovery by Ontrack, I've used it many timnes with success recovering data from unknown partitions.
  9. I'm guessing that you don't know what the BSOD error is since you didn't post it. So I'll go out on a limb and guess that its a "Unmountable Boot Volume" error. If this is the case and you have made no hardware changes, like to the IDE controller, this normally is indicative of a failing hard drive. Boot from an XP cd and go to the repair console and run CHKDSK /R This normally will get the system to bot again if it is not too bad. Afteerwards I recommend backing up data and imaging the drive to a new drive. I have had MFG disk utilities detect no problems with the disk, then when I go to image it using Norton Ghost bad sectors are detected.
  10. This should work for any text file. replace "path\textfile" with the path and name of your original file. replace "originaltext" with the text you want to replace. replace "newtext" with the text you want instead. for /f %%L in (path\textfile) DO ( if "%%L"=="originaltext" ( echo newtext>>path\temp.TMP ) ELSE ( echo %%L>>path\temp.TMP ) ) copy /Y path\temp.TMP path\textfile
  11. Not sure what this is: (I'd kill it and delete it) Running processes: C:\WINDOWS\ntsystem.exe
  12. as a test/check remove the CMDOW line and change exit to pause, then you will see any errors which might be coming up. Also I had the same problem, turned out to be some regtweak I was applying before I did the runonceex.cmd, changed the order and it worked great.
  13. Change: if intReturn = 2 then WshShell.Run "shutdown -l" ,,True if intReturn = 1 then wscript.quit to: if intReturn = 7 then WshShell.Run "shutdown -l" ,,True if intReturn = 6 then wscript.quit Return codes for MSGBOX: 1 OK 2 Cancel 3 Abort 4 Retry 5 Ignore 6 Yes 7 No
  14. Try these http://www.msfn.org/board/index.php?showtopic=16583&hl= http://www.msfn.org/board/index.php?showtopic=38342&hl=roxio
  15. how, why, .... that's wrong in so many different ways....
  16. Yep, you ran into the and I quote "The maximum length of prompt is approximately 1024 characters, depending on the width of the characters used." limit. In your case 1175 characters including spaces. Why not have this as a prompt before they login? Reword it that by entering a password and logging in they agree to the terms. run gpedit.msc Computer Configuration\Windows Settings\Security Settings\Local Policies\Security Options Interactive Logon: Message text for users attempting to logon Interactive Logon: Message title for users attempting to logon
  17. post your code and let us take a look at it.
  18. the look on the kids face is priceless.
  19. 8x200gb sata 1.6tb
  20. MsgBox ("If" & VBCRLF & "you" & VBCRLF & "agree" & VBCRLF & _ "click" & VBCRLF & "ok" & VBCRLF & "to" & _ VBCRLF & "continue", vbOKCancel + vbExclamation, "Alert")
  21. A zip drive is considered a removable drive by the os. It has nothing to do with my program it's the way the os detects them.
  22. see http://www.msfn.org/board/index.php?showtopic=38985
  23. You'll have to create the user and then log in as that user once, or somewhere there was a post as to get windows to create the folder without logging in but I'm unable to find it now.
  24. Set WshShell = WScript.CreateObject("Wscript.Shell") intReturn = MsgBox ("If you agree click ok to continue", vbOKCancel + vbExclamation, "Alert") if intReturn = 2 then WshShell.Run "shutdown -l" ,,True if intReturn = 1 then wscript.quit
  25. F6 will not work properly with an Unattended installation, just in case you were trying.
×
×
  • Create New...