Skip to main content

Chris Titus Toolkit

· One min read
Deon Slabbert

This post explains how to run the Chris Titus Toolkit on Microsoft Windows

note

Run the code below in PowerShell Admin Mode

iwr christitus.com/win |iex

iwr is not a DOS or Command Prompt (CMD) command; it is an alias for Invoke-WebRequest, which only works in PowerShell.

iex is not a traditional DOS command, but rather an alias for the cmdlet Invoke-Expression, which evaluates or runs a string as a command. It is frequently paired with irm (Invoke-RestMethod) in piped commands like irm SomeURL | iex to download and instantly execute remote scripts.