Installing Sysinternals Suite on Windows 11¶
Overview¶
This guide covers installing the Sysinternals Suite, a collection of advanced Windows utilities created by Mark Russinovich and maintained by Microsoft.
What you'll do
- Download and extract Sysinternals Suite
- Run tools directly (GUI + CLI)
- Add Sysinternals to PATH for easier access
Before you start
Take a VM snapshot before installing new tools.
Prerequisites¶
- Windows 11 VM running
- Internet access
- Administrator permissions
Helpful links
Steps¶
1. Download Sysinternals Suite¶
- Open a browser in your VM.
- Go to the official Microsoft page:
https://learn.microsoft.com/sysinternals/ - Click Download Sysinternals Suite (ZIP archive).
- Example:
SysinternalsSuite.zip
- Save to your Downloads or
Tools
folder.
2. Extract the Suite¶
- Right-click the ZIP → Extract All…
- Extract to:
C:\Tools\SysinternalsSuite\
3. (Optional) Add to PATH¶
Adding Sysinternals to PATH makes commands accessible from any shell.
- Open Start → Environment Variables.
- Edit the Path variable.
- Add:
C:\Tools\SysinternalsSuite\
- Save changes → restart shell/VM if needed.
Now you can run procexp
, autoruns
, etc. directly from PowerShell or CMD.
4. Run Key Tools¶
Run directly from PowerShell (if PATH added) or by double-clicking executables in Explorer.
Process Explorer
procexp
Autoruns
autoruns
PsExec (remote execution)
psexec \\target cmd
Verification¶
- Open Process Explorer (
procexp
) → shows running processes - Run:
whois.exe -?
Expected output:
Usage: whois [options] domain-name
- Confirm PATH works (tools run without needing full path).
It worked if…
- Process Explorer launches
- Autoruns opens successfully
- Commands like
whois.exe -?
return output
Troubleshooting¶
- Command not recognized → PATH not updated → add folder to PATH or run with full path
- Blocked EXEs → Right-click EXE → Properties → Unblock (sometimes SmartScreen flags them)
- Permission issues → Run shell as Administrator (many Sysinternals tools require elevation)
Common issues
- PATH not saved → verify environment variable update
- EXE blocked → manually unblock file properties
References¶
- Microsoft Sysinternals Home
- Sysinternals Live (web-based access)
- Internal:
[Installing 7-Zip on Windows 11](<./Installing 7Zip on Windows11.md>)