How would you type the command out if you were typing it in a command prompt to install so I can see the command without all the quotes etc in the vb script.
Code:
Dim sCmd
sCmd = "msiexec.exe /i " & chr(34) & "\\ash005\Masters\Ricoh\ClientforXP\Equitrac Express Client.msi" & chr(34) & " " & "EQCASNAME=" & chr(34) & "ASH005" & chr(34) & " " & "EQLANGUAGE=" & chr(34) & "en" & chr(34) & " " & "ADDLOCAL=" & chr(34) & "Common,DesktopPrinting,ClientBilling,CostPreview,WindowsPrinting,DRC,InteractiveRules" & chr(34)
msgbox sCmd
objShell.Run sCmd,0 ,true
I have the message box to output and show what the command looks like, so assuming the above is correct you can comment out the msgbox
The only other thing I have seen here is using cmd /k as part of the code as per here :
http://www.visualbasicscript.com/obj...ms-m60133.aspx
Code:
objShell.Run "cmd /k c: & CD c:.. & msiexec /i " etc etc
Maybe worth while pre fixing the cmd /k c: & CD c:.. & msiexec /i " etc and see if that makes any difference.