From 343c3c09b57acda20c930c8e0ecac94afbb58979 Mon Sep 17 00:00:00 2001 From: Colin Date: Wed, 26 Jun 2024 10:00:47 -0400 Subject: [PATCH] Documentation --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index e69de29..cd80420 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,25 @@ +# AE-Send + +AE-Send is a Windows application that integrates into the context menu, allowing users to quickly send files via https://send.aenow.com. + +## Installation + +To install AE-Send, run the following command in PowerShell as Administrator: + +```powershell +Invoke-WebRequest -Uri "https://git.nixc.us/colin/ae-send/raw/branch/master/dist/ae-send_windows_amd64.exe" -OutFile "$env:TEMP\ae-send.exe"; Start-Process "$env:TEMP\ae-send.exe" -ArgumentList "install" -Wait; Remove-Item "$env:TEMP\ae-send.exe" -Force +``` + +## Usage + +Right-click any file in Windows Explorer to see the "Send with AE Send" option. + +## Uninstallation + +To uninstall AE-Send, use the following PowerShell command: + +```powershell +Start-Process "C:\Program Files\AE-Send\ae-send.exe" -ArgumentList "uninstall" -Wait +``` + +Enjoy using AE-Send for your file transfer needs!