Created
April 3, 2026 15:22
-
-
Save baaamn/e9aad7057adb41421af97cbfdae3e4c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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