Files
Disco/Disco.ClientBootstrapper/BootstrapperWorkstationInstall.vbs
T
2013-02-28 17:15:46 +11:00

11 lines
349 B
Plaintext

Option Explicit
Dim objShell, BootstrapperLocation
Set objShell = CreateObject("WScript.Shell")
BootstrapperLocation = Mid(WScript.ScriptFullName, 1, InStrRev(WScript.ScriptFullName, "\")) & "\Disco.ClientBootstrapper.exe"
Call objShell.Run("""" & BootstrapperLocation & """ /Install", , True)
WScript.Echo "Disco Client Bootstrapper Installed"