Bonjour,
dans le cadre d'une automatisation de désinstallation de la version 1.0.1 a grand échelle pour un upgrade en 1.0.2 j'utilise le batch suivant ci dessous
Mais la désinstallation n'est pas complétement silencieuse j'ai toujours le message
"Le service UltraVNC a été libéré" avec OK à valider
Comment rendre la désinstallation complètement silencieuse
Merci
dim path,GetPath
Set WshShell = WScript.CreateObject("WScript.Shell")
Set oExec =WshShell.exec ("C:\Progra~1\UltraVNC\unins000.exe /SUPPRESSMSGBOXES /SILENT /NORESTART")
Do While oExec.Status = 0
WScript.Sleep 100
Loop
path = WScript.ScriptFullName
GetPath = Left(path, InStrRev(path, "\"))
set oExec =WshShell.exec (GetPath&"setup.exe /VERYSILENT /NORESTART /LOADINF=Filename.inf")
Do While oExec.Status = 0
WScript.Sleep 100
Loop
Set oExec =nothing
WScript.Quit