close the getting started and force reboot after driver uninstall
This commit is contained in:
parent
777895ed3a
commit
58079b2cb3
@ -25,12 +25,20 @@ if (($INST_SystemType$ = "x86 System") and ($INST_architecture$ = "system specif
|
|||||||
comment "Uninstall program found, starting uninstall"
|
comment "Uninstall program found, starting uninstall"
|
||||||
Winbatch_uninstall_old_32
|
Winbatch_uninstall_old_32
|
||||||
sub_check_exitcode
|
sub_check_exitcode
|
||||||
|
comment "Close the UnInstall Browser Window"
|
||||||
|
DosInAnIcon_taskkill
|
||||||
|
comment "Force Reboot after driver uninstall"
|
||||||
|
ExitWindows /ImmediateReboot
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
if FileExists($UninstallProgram32$)
|
if FileExists($UninstallProgram32$)
|
||||||
comment "Uninstall program found, starting uninstall"
|
comment "Uninstall program found, starting uninstall"
|
||||||
Winbatch_uninstall_32
|
Winbatch_uninstall_32
|
||||||
sub_check_exitcode
|
sub_check_exitcode
|
||||||
|
comment "Close the UnInstall Browser Window"
|
||||||
|
DosInAnIcon_taskkill
|
||||||
|
comment "Force Reboot after driver uninstall"
|
||||||
|
ExitWindows /ImmediateReboot
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comment "Delete files"
|
comment "Delete files"
|
||||||
@ -54,12 +62,20 @@ if ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system spe
|
|||||||
comment "Uninstall program found, starting uninstall"
|
comment "Uninstall program found, starting uninstall"
|
||||||
Winbatch_uninstall_old_64
|
Winbatch_uninstall_old_64
|
||||||
sub_check_exitcode
|
sub_check_exitcode
|
||||||
|
comment "Close the UnInstall Browser Window"
|
||||||
|
DosInAnIcon_taskkill
|
||||||
|
comment "Force Reboot after driver uninstall"
|
||||||
|
ExitWindows /ImmediateReboot
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
if FileExists($UninstallProgram64$)
|
if FileExists($UninstallProgram64$)
|
||||||
comment "Uninstall program found, starting uninstall"
|
comment "Uninstall program found, starting uninstall"
|
||||||
Winbatch_uninstall_64
|
Winbatch_uninstall_64
|
||||||
sub_check_exitcode
|
sub_check_exitcode
|
||||||
|
comment "Close the UnInstall Browser Window"
|
||||||
|
DosInAnIcon_taskkill
|
||||||
|
comment "Force Reboot after driver uninstall"
|
||||||
|
ExitWindows /ImmediateReboot
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comment "Delete files"
|
comment "Delete files"
|
||||||
@ -68,9 +84,6 @@ if ($INST_SystemType$ = "64 Bit System") and (($INST_architecture$ = "system spe
|
|||||||
Registry_uninstall /64Bit
|
Registry_uninstall /64Bit
|
||||||
endif
|
endif
|
||||||
|
|
||||||
comment "Close the UnInstall Browser Window"
|
|
||||||
DosInAnIcon_taskkill
|
|
||||||
|
|
||||||
comment "Delete program shortcuts"
|
comment "Delete program shortcuts"
|
||||||
LinkFolder_uninstall
|
LinkFolder_uninstall
|
||||||
|
|
||||||
|
@ -99,6 +99,12 @@ else
|
|||||||
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
comment "Close the Getting Started Window"
|
||||||
|
DosInAnIcon_taskkill
|
||||||
|
|
||||||
|
[DosInAnIcon_taskkill]
|
||||||
|
taskkill /F /IM GettingStarted.exe
|
||||||
|
|
||||||
[Winbatch_install_32]
|
[Winbatch_install_32]
|
||||||
"$InstallExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES
|
"$InstallExe$" /sp- /silent /norestart /nocancel /SUPPRESSMSGBOXES
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user