warezstasis
tools kb about
esc
// curated tools

The good stuff, cut through the noise.

Utilities I actually use. Organized by category, linked directly, with a note on why they're worth your time.

// Windows & Active Directory
Process Monitor
sysinternals
Real-time file system, registry, and process/thread activity monitoring. Indispensable for diagnosing application misbehavior on Windows.
free
Process Explorer
sysinternals
Task Manager on steroids. Shows full process trees, DLL handles, parent/child relationships, and per-process CPU/memory in real time.
free
AD Explorer
sysinternals
Browser and editor for Active Directory. View object attributes, compare snapshots, and navigate the directory tree without ADUC limitations.
free
gpresult / RSOP
built-in Windows
Shows the resultant set of Group Policy for a user or computer. Run gpresult /H report.html for a full HTML breakdown of applied policies.
built-in
// Microsoft 365
M365 Admin Center
admin.microsoft.com
The main hub for user management, licensing, and service health. Bookmark the service health page — it's the fastest way to rule out Microsoft outages before digging in.
requires license
Microsoft Graph PowerShell
Microsoft Graph SDK
The modern replacement for all the individual O365 PowerShell modules. One SDK to rule M365. Takes time to learn the permission scopes but worth it for automation.
free
Microsoft Remote Connectivity Analyzer
testconnectivity.microsoft.com
Test mail flow, Autodiscover, ActiveSync, and more from Microsoft's own infrastructure. Useful for DNS and mail routing troubleshooting without needing external tools.
free
MXToolbox
mxtoolbox.com
DNS lookups, MX record checks, SPF/DKIM/DMARC validation, blacklist checks. The go-to for mail flow and DNS debugging. The SuperTool is especially handy.
free tier
// IIS & Web Server
Failed Request Tracing (FREB)
IIS built-in
Built into IIS. Captures detailed per-request execution traces for slow or failing requests. Essential for diagnosing app pool CPU issues and latency by endpoint.
built-in
ProcDump
sysinternals
Captures memory dumps of w3wp.exe on CPU threshold triggers. Use with WinDbg or Visual Studio to analyze hang and high-CPU conditions in IIS worker processes.
free
IIS Advanced Logging
iis.net
Extends IIS logging with custom fields, real-time log viewing, and response time tracking. Useful when the default W3C log fields aren't enough for diagnosis.
free
// ERP & SQL
SQL Server Management Studio
SSMS
The standard SQL Server GUI. Use the Activity Monitor and DMV queries for live performance analysis. Keep it updated — each release adds useful diagnostics.
free
sp_WhoIsActive
whoisactive.com
Adam Machanic's stored procedure for real-time SQL Server session monitoring. Far more useful than sp_who2 for identifying blocking, waits, and expensive queries in production.
free
Acumatica OData Endpoint
Acumatica Help
Acumatica's built-in OData feed for reporting and integration. See the KB article on filter syntax before you spend an hour debugging why your query returns nothing.
requires Acumatica
// Scripting & Automation
VS Code + PowerShell Extension
code.visualstudio.com
The best PowerShell authoring environment. IntelliSense, integrated terminal, Git, and the PowerShell extension make script development far less painful than the ISE.
free
PowerShell 7+
Microsoft
Run PowerShell 7 alongside Windows PowerShell 5.1 — don't replace it. PS7 has better error handling, parallel ForEach-Object, and cross-platform compatibility.
free
Task Scheduler (GUI reference)
built-in Windows
Windows Task Scheduler is underrated for IT automation. Use schtasks /query /fo LIST /v to audit all tasks on a machine — useful when something is running at unexpected times.
built-in
// Security
Nmap
nmap.org
Network discovery and security scanning. Use it to audit what's actually exposed on your network — often surfaces forgotten services and open ports that shouldn't be there.
free / open source
DMARC / SPF / DKIM Checker
mxtoolbox.com
Validates your email authentication records. Run this any time you change MX or SPF records to catch misconfigurations before they cause mail delivery issues.
free
all systems nominal
warezstasis.com // built in the field