Snipp.tech

PowerShell library

Windows administration scripts, ready to run.

Inventory, maintenance, Microsoft 365, fleet security. Every script is tested on PowerShell 5.1, safe to run again, and works without administrator rights whenever possible.

Windows PowerShell
PS C:\> irm https://snipp.tech/scripts/Get-PCInventory.ps1 | iex
[10:22:04] System
[10:22:05] Hardware
[10:22:06] Storage
[10:22:07] Network
[10:22:08] Security
[10:22:09] Installed software
[10:22:11] Generating report
[OK] Report : C:\Users\admin\Desktop\Inventory-PC01-20260913-1022.html (9 s)
PS C:\> _

Scripts

0 scripts published

Usage

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.