scripts

Run before wiping PreWipe.ps1

GUI backup assistant. Grabs everything worth keeping off C: before you nuke it — configs, keys, profiles, MO2 load order. Has a manual checklist tab for the stuff no script can automate.

  • WinGet package list → packages.json
  • Git config, SSH keys, PowerShell profile
  • VS Code settings + extension list
  • WireGuard configs (best effort)
  • MO2 profiles + config (auto-detected)
  • Maven settings.xml (+ optional repo cache)
  • Browser profile (Zen / Firefox, no cache)
  • Optional: Documents, Desktop, Pictures
PowerShell — run as Administrator
PS> Set-ExecutionPolicy Bypass -Scope Process -Force; irm https://setup.seristic.com/PreWipe.ps1 | iex
Run after installing Setup.ps1

Debloats Windows 11, kills telemetry, configures performance settings, installs the NVIDIA driver, and installs all apps via WinGet. One script, fresh machine.

  • Removes ~30 bloat AppX packages + OneDrive
  • Disables telemetry, DiagTrack, activity history
  • Privacy tweaks — ad ID, location, mic, cam
  • Enables HAGS, High Performance plan, Game Mode
  • Taskbar cleanup — no Widgets, Chat, Task View
  • Installs NVIDIA Game Ready Driver
  • Installs 22 apps via WinGet
  • Configures Git globals, disables WU driver updates
PowerShell — run as Administrator
PS> Set-ExecutionPolicy Bypass -Scope Process -Force; irm https://setup.seristic.com/Setup.ps1 | iex