This commit is contained in:
Colin 2024-06-26 10:16:43 -04:00
parent f15f690b19
commit 5f6d9ca546
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ AE-Send is a Windows application that integrates into the context menu, allowing
To install AE-Send, run the following command in PowerShell as Administrator:
```powershell
Invoke-WebRequest "https://git.nixc.us/colin/ae-send/raw/branch/master/install.ps1" -OutFile "$env:TEMP\install.ps1"; & "$env:TEMP\install.ps1"; Remove-Item "$env:TEMP\install.ps1"
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process -Force; Invoke-WebRequest -Uri "https://git.nixc.us/colin/ae-send/raw/branch/master/install.ps1" -OutFile "$env:TEMP\install.ps1"; & "$env:TEMP\install.ps1"; Remove-Item "$env:TEMP\install.ps1" -Force
```
This command downloads and executes the installation script which sets up AE-Send on your system.
@ -24,4 +24,4 @@ To uninstall AE-Send, use the following PowerShell command:
Start-Process "C:\Program Files\AE-Send\ae-send.exe" -ArgumentList "uninstall" -Wait
```
Enjoy using AE-Send for your file transfer needs!
Enjoy using AE-Send for your file transfer needs!