patrick118
Technical User
I want to install a program from a vbs script.
When i do it manually and put the following line in my run command it works great.
\\server01\programs\inoculate\image\setup.exe /N /S
So i created a script like this:
Set oWsh = CreateObject("WScript.Shell")
oWsh.Run("\\server01\programs\inoculate\image\setup.exe /N /S")
But it doesn't work now. Why? Can anyone give me an answer
When i do it manually and put the following line in my run command it works great.
\\server01\programs\inoculate\image\setup.exe /N /S
So i created a script like this:
Set oWsh = CreateObject("WScript.Shell")
oWsh.Run("\\server01\programs\inoculate\image\setup.exe /N /S")
But it doesn't work now. Why? Can anyone give me an answer