24 lines
654 B
TeX
24 lines
654 B
TeX
[Initial]
|
|
Message=Deinstalliere MDG Visual Studio Code...
|
|
DefVar $ExitCode$
|
|
|
|
[Aktionen]
|
|
ShowBitmap "%ScriptPath%\logo.png" "MDG Visual Studio Code"
|
|
WinBatch_Setup
|
|
Sub_HandleExitCode
|
|
|
|
[WinBatch_Setup]
|
|
"%ProgramFiles64Dir%\Microsoft VS Code\unins000.exe" /VERYSILENT /SUPPRESSMSGBOXES /LOG="%opsiLogDir%\vscode-uninstall.log"
|
|
|
|
; VERYSILENT unterdrückt das Installationsfenster
|
|
; SUPPRESSMSGBOXES unterdrückt Benachrichtigungsfenster
|
|
|
|
[Sub_HandleExitCode]
|
|
; check return code
|
|
Set $ExitCode$ = GetLastExitCode
|
|
comment "GetLastExitCode: " + $ExitCode$
|
|
if not($ExitCode$ = "0")
|
|
LogError "Fatal: setup returned exit code " + $ExitCode$
|
|
IsFatalError
|
|
endif
|