mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Merge pull request #3472 from Rummskartoffel/windows-nativeinstall-executionpolicy
Native, Windows: bypass execution policy in install command
This commit is contained in:
commit
cf11ac3cd3
1 changed files with 1 additions and 1 deletions
|
@ -1152,7 +1152,7 @@ const platform_defaults = {
|
||||||
"<C-6>": "buffer #",
|
"<C-6>": "buffer #",
|
||||||
} as unknown,
|
} as unknown,
|
||||||
|
|
||||||
nativeinstallcmd: `powershell -NoProfile -Command "\
|
nativeinstallcmd: `powershell -ExecutionPolicy Bypass -NoProfile -Command "\
|
||||||
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12;\
|
[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12;\
|
||||||
(New-Object System.Net.WebClient).DownloadFile('https://raw.githubusercontent.com/tridactyl/native_messenger/master/installers/windows.ps1', '%TEMP%/tridactyl_installnative.ps1');\
|
(New-Object System.Net.WebClient).DownloadFile('https://raw.githubusercontent.com/tridactyl/native_messenger/master/installers/windows.ps1', '%TEMP%/tridactyl_installnative.ps1');\
|
||||||
& '%TEMP%/tridactyl_installnative.ps1' -Tag %TAG;\
|
& '%TEMP%/tridactyl_installnative.ps1' -Tag %TAG;\
|
||||||
|
|
Loading…
Add table
Reference in a new issue