hack in a wait for uninstall
This commit is contained in:
parent
19b1ce78d7
commit
5ed8b7de17
BIN
CLIENT_DATA/please-wait.exe
Normal file
BIN
CLIENT_DATA/please-wait.exe
Normal file
Binary file not shown.
@ -173,6 +173,8 @@ else
|
||||
Files_install_32 /32Bit
|
||||
Winbatch_install_32
|
||||
Sub_check_exitcode
|
||||
Winbatch_please_wait_32
|
||||
Sub_check_exitcode
|
||||
comment "Patch Registry"
|
||||
Registry_install /32Bit
|
||||
comment "Create shortcuts"
|
||||
@ -263,6 +265,8 @@ else
|
||||
Files_install_64 /64Bit
|
||||
Winbatch_install_64
|
||||
Sub_check_exitcode
|
||||
Winbatch_please_wait_64
|
||||
Sub_check_exitcode
|
||||
comment "Patch Registry"
|
||||
Registry_install /64Bit
|
||||
comment "Create shortcuts"
|
||||
@ -513,6 +517,12 @@ xml ed -O -u "/config/ui/notification/cloud" -v $ui_notification_cloud$ $Install
|
||||
|
||||
|
||||
|
||||
[Winbatch_please_wait_32]
|
||||
"%ScriptPath%\please-wait.exe"
|
||||
|
||||
[Winbatch_please_wait_64]
|
||||
"%ScriptPath%\please-wait.exe"
|
||||
|
||||
[Winbatch_install_32]
|
||||
; Choose one of the following examples as basis for your installation
|
||||
; You can use $LicenseKey$ var to pass a license key to the installer
|
||||
|
20
please-wait.au3
Normal file
20
please-wait.au3
Normal file
@ -0,0 +1,20 @@
|
||||
#cs ----------------------------------------------------------------------------
|
||||
|
||||
AutoIt Version: 3.3.8.1
|
||||
Author: myName
|
||||
|
||||
Script Function:
|
||||
Template AutoIt script.
|
||||
|
||||
#ce ----------------------------------------------------------------------------
|
||||
|
||||
; Script Start - Add your code below here
|
||||
|
||||
ProgressOn("Immunet Uninstall", "Progress", "0 %")
|
||||
For $i = 1 to 100 step 1
|
||||
sleep(1200)
|
||||
ProgressSet($i, $i & " %")
|
||||
Next
|
||||
ProgressSet(100, "", "Done")
|
||||
Sleep(500)
|
||||
ProgressOff()
|
Loading…
Reference in New Issue
Block a user