Jump to content

Alcohol 120%


jamesas

Recommended Posts


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

Link to comment
Share on other sites

  • 2 months later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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