- Using notepad or another editor create a .vbs file with the code below (assuming that your Partner installation is located at “C:Partner”)
Here is the script:
Dim WshShell, fileSys
Set WshShell = WScript.CreateObject("WScript.Shell")
Set fileSys = CreateObject("Scripting.FileSystemObject")
if fileSys.FolderExists("C:\Partner\os\windows\terminal") then
WshShell.CurrentDirectory = "C:\Partner\os\windows\terminal"
WshShell.run "partner-update.bat"
end if