.\Scripts\
├── Documentation\ # All guides, explanations, and documentation
├── Scripts\ # PowerShell scripts for automation
├── Tools\ # Symlinks to installed tools
└── README.md # This file
Location: Tools\NSudo\ → C:\Tools\NSudo\...\x64\
Usage:
Tools\NSudo\NSudoLC.exe -U:T -P:E cmd
Tools\NSudo\NSudoLG.exe (GUI)Location: Tools\PsExec64.exe → C:\Temp\PsExec64.exe
Usage:
Tools\PsExec64.exe -accepteula -s -i cmdLocation: Tools\DevManView\ → C:\Temp\DevManView\
Usage:
Tools\DevManView\DevManView.exe /remove_all_disconnectedAll in Scripts\ folder:
RUN_ALL_FIXES.ps1- Master sleep/wake repair scriptCREATE_SHORTCUTS.ps1- Create desktop shortcuts for privilege escalationCLEAR_EVENT_LOGS.ps1- Clear all Windows event logs
FIX_SLEEP.ps1- Configure power settings for stable sleep/wakeUSB_CLEANUP.ps1- Remove ghost USB devicesDISABLE_BROKEN_HARDWARE.ps1- Disable failed hardwareCHECK_WIFI_ADAPTERS.ps1- Verify WiFi dongles status
REMOVE_AS_SYSTEM.ps1- Device removal with SYSTEM privileges
All in Documentation\ folder:
README.md- Original sleep/wake project overviewPHASE1_COMPLETE.md- Current status and next stepsQUICK_CHECKLIST.md- Step-by-step checklist
ULTIMATE_ACCESS.md- Complete guide to Windows privilege escalation (7 levels)LEVEL3_MANUAL_SETUP.md- NSudo + PSExec setup guideNSUDO_BRUTE_FORCE_INSTALL.md- NSudo installation with Defender workaroundNSUDO_FALSE_POSITIVE.md- Why Defender flags NSudo
HARDWARE_ISSUES.md- Root cause analysis (Win11→Win10 downgrade)FINDINGS.md- Original diagnostic dataREPAIR_PLAN.md- Detailed repair strategyREPAIR_COMPLETED.md- What was fixedDUAL_WIFI_SETUP.md- Dual WiFi adapter configuration
GHOST_DEVICES_EXPLAINED.md- What they are and why they existBRUTE_FORCE_PLAN.md- All attempted removal methodsREMOVAL_RESULTS.md- DevManView attempt results
QUICKSTART.md- Original quick startQUICKSTART_UPDATED.md- Updated for dual WiFi
- 🔴 TrustedInstaller CMD - Highest privilege
- 🔴 TrustedInstaller PS - Highest privilege PowerShell
- 🟡 SYSTEM CMD - NT AUTHORITY\SYSTEM
- 🟡 SYSTEM PS - NT AUTHORITY\SYSTEM PowerShell
- 🔵 NSudo GUI - Graphical launcher
Launch TrustedInstaller shell:
Tools\NSudo\NSudoLC.exe -U:T -P:E cmdLaunch SYSTEM shell:
Tools\PsExec64.exe -accepteula -s -i cmdRemove ghost devices:
Tools\NSudo\NSudoLC.exe -U:T -P:E "Tools\DevManView\DevManView.exe /remove_all_disconnected"Fix sleep/wake:
.\Scripts\FIX_SLEEP.ps1Clear event logs:
.\Scripts\CLEAR_EVENT_LOGS.ps1- ✅ NSudo installed and working
- ✅ PSExec downloaded
- ✅ DevManView ready
- ✅ Desktop shortcuts created
- ✅ Sleep/wake power settings fixed
- ✅ Event logs cleared
- ✅ WiFi adapters analyzed
- ✅ All documentation organized
-
Disable UAC:
- Windows key → Type "UAC"
- Drag slider to bottom
- Click OK
- Restart computer
-
After restart - Remove ghosts:
# Double-click "TrustedInstaller CMD" desktop shortcut cd .\Scripts Tools\DevManView\DevManView.exe /remove_all_disconnected
-
Verify:
Get-PnpDevice | Where-Object {$_.Status -eq 'Unknown'} | Measure-Object # Should show 0 or very low count
-
Test sleep/wake:
- Close lid → wait 10 sec → open
- Should wake cleanly and quickly
- Both WiFi adapters should remain connected
- All tools are symlinked, not copied (saves space)
- Original locations maintained for compatibility
- HQ is version control ready (GitHub folder)
- Scripts use relative paths from HQ root
- Documentation is Markdown for easy viewing
Established: 2026-02-07