Go to file
Colin f01ab51fac Fixup 2024-06-26 10:20:30 -04:00
build_logs baseline 2024-06-26 09:56:31 -04:00
dist baseline 2024-06-26 09:56:31 -04:00
.gitignore Fixup 2024-06-26 09:57:54 -04:00
README.md Fixup 2024-06-26 10:16:43 -04:00
build.sh baseline 2024-06-26 09:56:31 -04:00
go.mod baseline 2024-06-26 09:56:31 -04:00
go.sum baseline 2024-06-26 09:56:31 -04:00
install.ps1 Fixup 2024-06-26 10:20:30 -04:00
main.go Documentation 2024-06-26 10:12:24 -04:00

README.md

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:

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.

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:

Start-Process "C:\Program Files\AE-Send\ae-send.exe" -ArgumentList "uninstall" -Wait

Enjoy using AE-Send for your file transfer needs!