From 5f6d9ca546a2247ffc3b5dbdf0cd16aae61fff37 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 26 Jun 2024 10:16:43 -0400 Subject: [PATCH] Fixup --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2c4ad33..649cfbb 100644 --- a/README.md +++ b/README.md @@ -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! \ No newline at end of file