jamesas Posted January 2, 2005 Posted January 2, 2005 Hey guys i did find the solutions before but i cant ifind it again so anyway is there a way to suppress the hardware detection of the virtual cdrom during silent install?
gon freecs Posted January 3, 2005 Posted January 3, 2005 don't you think it's already been discussed around here ?
glent Posted January 3, 2005 Posted January 3, 2005 persaonnly i use this vbs script and wrks just fineedit the path to your setup FOR CDROMSet FSO = CreateObject("Scripting.FileSystemObject")For Each Drive In FSO.Drives If Drive.DriveType = 4 And Drive.IsReady And FSO.FileExists(Drive & "\WIN51") Then CDROM = DriveNextIf Len(CDROM) = 0 Then MsgBox "Error: CD-ROM not found!", vbCritical WScript.QuitEnd IfSet WshShell = WScript.CreateObject("WScript.Shell")WshShell.Run(CDROM & "\Software\Applications\CDandDVD\Alc\setup.exe /qn REBOOT=REALLYSUPPRESS")WScript.Sleep 19000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{ENTER}"WScript.Sleep 10000WshShell.SendKeys "{ENTER}"WScript.QuitFROM HDSet WshShell = WScript.CreateObject("WScript.Shell")WshShell.Run("%systemdrive%\install\Applications\CDandDVD\Alc\setup.exe /qn REBOOT=REALLYSUPPRESS")WScript.Sleep 19000WshShell.SendKeys "{TAB}"WScript.Sleep 1000WshShell.SendKeys "{ENTER}"WScript.Sleep 10000WshShell.SendKeys "{ENTER}"WScript.Quit
Nologic Posted January 3, 2005 Posted January 3, 2005 there is also a autoit script if you prefer to go that route.
Marnic-Man Posted March 24, 2005 Posted March 24, 2005 there is no alcohol 120% Auto it script on that page.... Can you please re-link?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now