Run directly
From a PowerShell console, without downloading anything. Every card has its own ready-to-paste line:
irm https://snipp.tech/scripts/<Name>.ps1 | iex
To pass parameters:
& ([scriptblock]::Create((irm https://snipp.tech/scripts/<Name>.ps1))) -Param value
Download, then run
To read the code before running it, which remains the right thing to do:
iwr https://snipp.tech/scripts/<Name>.ps1 -OutFile .\<Name>.ps1
Set-ExecutionPolicy Bypass -Scope Process -Force
.\<Name>.ps1
Conventions
Compatible with PowerShell 5.1 (Windows 10/11, Server 2016+). ASCII output so it stays readable in any console. Idempotent: running a script twice breaks nothing. The Admin badge marks the ones that require an elevated session.