Skip to content

Instantly share code, notes, and snippets.

@baaamn
Created April 3, 2026 15:22
Show Gist options
  • Select an option

  • Save baaamn/e9aad7057adb41421af97cbfdae3e4c8 to your computer and use it in GitHub Desktop.

Select an option

Save baaamn/e9aad7057adb41421af97cbfdae3e4c8 to your computer and use it in GitHub Desktop.
# Promptext Install Commands
## PowerShell (Windows) — install latest
```powershell
irm https://raw.githubusercontent.com/1broseidon/promptext/main/scripts/install.ps1 | iex
```
## PowerShell (Windows) — uninstall
```powershell
irm https://raw.githubusercontent.com/1broseidon/promptext/main/scripts/install.ps1 | iex -Uninstall
```
## More robust (recommended) variant: download then run (easier to audit)
This avoids piping to `iex` and is friendlier for security-conscious users:
```powershell
$u = "https://raw.githubusercontent.com/1broseidon/promptext/main/scripts/install.ps1"
$f = Join-Path $env:TEMP "promptext-install.ps1"
Invoke-WebRequest $u -OutFile $f
powershell -ExecutionPolicy Bypass -File $f
```
## Uninstall
```powershell
powershell -ExecutionPolicy Bypass -File $f -Uninstall
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment