๐ Networking
Network Connection Issues in Windows
Common Windows 11 network problems โ troubleshooter, reset, driver update, and VPN fixes
โพ
Common network connectivity problems in Windows 11 and how to diagnose and fix them step by step.
1. Settings โ Troubleshoot โ Network Adapter โ Run
2. Network & Internet โ Advanced โ Network reset โ Reset now
3. Device Manager โ Network adapters โ Update driver
4. Windows Update โ Check for updates โ Install all
5. Disable VPN / Proxy temporarily and test
ipconfig /flushdns
netsh int ip reset
netsh winsock reset
ipconfig /release && ipconfig /renew
๐ข Active Directory
Windows Bluescreen Issues
BSOD error codes, driver updates, SFC scan, RAM diagnostics, and domain rejoin steps
โพ
Diagnose and fix Active Directory trust relationship issues โ including BSOD analysis, driver updates, system file checking, RAM diagnostics, and re-joining the domain.
1. Identify the BSOD Error Code
Note the stop code on the blue screen and search for specific solutions.
2. Update Drivers
Device Manager โ yellow exclamation marks โ Right-click โ Update driver โ Search automatically
3. Run SFC & DISM
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth
4. Test RAM Win+R โ mdsched.exe โ Restart now and check for problems
5. Repair Trust Channel (PowerShell)
Test-ComputerSecureChannel -Repair -Credential (Get-Credential)
6. If still broken: Remove from domain โ reboot โ re-join domain
๐ง System Repair
Windows OS Repair Commands
SFC, DISM, CHKDSK, and Windows Update service repair via Command Prompt
โพ
Repairing Windows OS using built-in tools via elevated Command Prompt โ SFC, DISM, CHKDSK, and Windows Update reset.
Method 1 โ SFC: Scans and repairs corrupted system files
sfc /scannow
Method 2 โ DISM: Repairs the Windows image (use if SFC fails)
DISM /Online /Cleanup-Image /RestoreHealth
Method 3 โ CHKDSK: Checks disk for bad sectors and filesystem errors
chkdsk C: /f /r
Method 4 โ Reset Windows Update
net stop wuauserv && net stop bits
del %windir%\SoftwareDistribution\*.* /s /q
net start wuauserv && net start bits