diff options
author | RustDesk <[email protected]> | 2023-06-13 10:04:47 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-06-13 10:04:47 +0800 |
commit | c8719784751af9393b2e8d0c3fb9e8dc52f450d2 (patch) | |
tree | 93b49b30fff80ad1f0cdb41f6de47a0983f5f89b /ui | |
parent | 411502cd0bed81101111226b18d154aba10170e9 (diff) | |
download | rustdesk-server-c8719784751af9393b2e8d0c3fb9e8dc52f450d2.tar.gz rustdesk-server-c8719784751af9393b2e8d0c3fb9e8dc52f450d2.zip |
Update setup.nsi
Diffstat (limited to 'ui')
-rw-r--r-- | ui/setup.nsi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/setup.nsi b/ui/setup.nsi index b11d3a7..88b1709 100644 --- a/ui/setup.nsi +++ b/ui/setup.nsi @@ -143,10 +143,10 @@ Section "Install" CreateShortCut "$SMPROGRAMS\${APP_NAME}\Uninstall.lnk" "$INSTDIR\uninstall.exe" CreateShortCut "$DESKTOP\${APP_NAME}.lnk" "$INSTDIR\${PRODUCT_NAME}.exe" - nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=in action=allow program="$INSTDIR\hbbs.exe" enable=yes' - nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=out action=allow program="$INSTDIR\hbbs.exe" enable=yes' - nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=in action=allow program="$INSTDIR\hbbr.exe" enable=yes' - nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=out action=allow program="$INSTDIR\hbbr.exe" enable=yes' + nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=in action=allow program="$INSTDIR\bin\hbbs.exe" enable=yes' + nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=out action=allow program="$INSTDIR\bin\hbbs.exe" enable=yes' + nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=in action=allow program="$INSTDIR\bin\hbbr.exe" enable=yes' + nsExec::Exec 'netsh advfirewall firewall add rule name="${APP_NAME}" dir=out action=allow program="$INSTDIR\bin\hbbr.exe" enable=yes' ExecWait 'powershell.exe -NoProfile -windowstyle hidden try { [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12 } catch {}; Invoke-WebRequest -Uri "https://go.microsoft.com/fwlink/p/?LinkId=2124703" -OutFile "$$env:TEMP\MicrosoftEdgeWebview2Setup.exe" ; Start-Process -FilePath "$$env:TEMP\MicrosoftEdgeWebview2Setup.exe" -ArgumentList ($\'/silent$\', $\'/install$\') -Wait' SectionEnd |