4 lines
225 B
Batchfile
4 lines
225 B
Batchfile
|
@echo off
|
||
|
where scoop 2>nul >nul
|
||
|
if errorlevel 1 powershell -c "Set-ExecutionPolicy RemoteSigned -scope CurrentUser; Invoke-Expression (New-Object System.Net.WebClient).DownloadString('https://get.scoop.sh')"
|
||
|
call scoop %*
|