Hi guys,
I need to inventory 1300 pc on my network! So I need to install by GPO. I read a lot of issues about but nothing is working, inclunde the psexec method. I have made a vbs script, that works, but the user need to press "next" button and it isn't good. Look to my simple batch script:
ECHO OFF
title *** INSTALACAO ***
START \\server\share\ocspackage.msi
EXIT
Then, I tryed a .vbs script, but the same thing happen without success:
On error resume next
Dim WshShell, fso
Set WshShell = WScript.CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
WshShell.Run ("msiexec.exe /I ""
\\server\share\ocspackage.msi
"" NETWORKTYPE=1 /qb!")
WScript.Sleep 100
Wscript.Quit
I really need a help here guys! Best regards