Jump to content

Recommended Posts

Posted

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?


Posted

persaonnly i use this vbs script and wrks just fine

edit the path to your setup

FOR CDROM

Set FSO = CreateObject("Scripting.FileSystemObject")

For Each Drive In FSO.Drives
 If Drive.DriveType = 4 And Drive.IsReady And FSO.FileExists(Drive & "\WIN51") Then CDROM = Drive
Next

If Len(CDROM) = 0 Then
 MsgBox "Error: CD-ROM not found!", vbCritical
 WScript.Quit
End If
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run(CDROM & "\Software\Applications\CDandDVD\Alc\setup.exe /qn REBOOT=REALLYSUPPRESS")
WScript.Sleep 19000
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 10000
WshShell.SendKeys "{ENTER}"
WScript.Quit

FROM HD

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run("%systemdrive%\install\Applications\CDandDVD\Alc\setup.exe /qn REBOOT=REALLYSUPPRESS")
WScript.Sleep 19000
WshShell.SendKeys "{TAB}"
WScript.Sleep 1000
WshShell.SendKeys "{ENTER}"
WScript.Sleep 10000
WshShell.SendKeys "{ENTER}"
WScript.Quit

  • 2 months later...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...