🛠️ Toolbox

← Back to Home
Quick Tools

🚀 WinUtil

irm "https://christitus.com/win" | iex
PowerShell utility for Windows troubleshooting and system info
Resources
📦
Installer & Driver Collection
Password-protected Tresorit folder (read-only)
Command Notes

🪟 Windows Commands

  • ipconfig /flushdns
  • sfc /scannow
  • netsh winsock reset
  • Get-EventLog -LogName System -Newest 50
  • psexec.exe \\hostname cmd
  • net user /add username
  • net localgroup administrators username /add
  • Get-NetTCPConnection | Where-Object {$_.State -eq "Listen"}
Edit this section in toolbox.html to add your own commands

💻 Terminal Commands

  • sudo systemctl status nginx
  • docker ps -a
  • netstat -tulpn | grep :80
  • find / -name "filename" 2>/dev/null
  • grep -r "searchterm" /path/to/search
  • chmod +x script.sh && ./script.sh
  • ssh user@hostname -i ~/.ssh/keyfile
  • tar -czf archive.tar.gz directory/
Edit this section in toolbox.html to add your own commands
Copied to clipboard!