God Mode - Master Control Panel
Windows Ka Secret Super Folder
๐ค Ye Kya Hai?
God Mode ek special folder hai jisme Windows ke 200+ settings ek jagah mil jate hain. Control Panel se bhi powerful!
โ God Mode Enable Karna:
1. Desktop pe Right Click โ New โ Folder
2. Folder ka naam ye rakho:
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
3. Enter press karo - Folder icon change ho jayega!
โจ God Mode Contains:
Environment Variables Shortcuts
Quick Access Paths
%USERPROFILE%
User folder (C:\Users\Name)
%APPDATA%
Application Data folder
%LOCALAPPDATA%
Local App Data
%PROGRAMFILES%
Program Files folder
%WINDIR%
Windows folder
%SYSTEMROOT%
System root (C:\Windows)
%HOMEDRIVE%
Main drive (C:)
%COMPUTERNAME%
Computer ka naam
%USERNAME%
Current user ka naam
Safe Registry Tweaks
Performance Boost (100% Safe)
โ ๏ธ Registry edit karne se pehle backup zaroor lo! Ye tweaks safe hain par backup rakhna best practice hai.
๐ Disable Startup Delay
Apps jaldi start honge boot ke baad
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /t REG_DWORD /d 0 /f
โก Faster Menu Show
Right-click menu instantly open hoga
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v MenuShowDelay /t REG_SZ /d 0 /f
๐ฑ๏ธ Disable Mouse Acceleration
Gaming ke liye better aim
reg add "HKEY_CURRENT_USER\Control Panel\Mouse" /v MouseSpeed /t REG_SZ /d 0 /f
๐ Disable Lock Screen
Seedha password screen pe jao
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v NoLockScreen /t REG_DWORD /d 1 /f
๐ฆ Registry Backup Command (Pehle ye run karo):
reg export HKEY_CURRENT_USER C:\backup_registry.reg
Ready-to-Use Batch Scripts
Download aur Run Karo
Complete Cleanup Script
Temp, Prefetch, DNS, Recent - sab ek click mein clean!
System Repair Script
DISM + SFC automatically run karega
Network Reset Script
Complete network stack reset
Gaming Optimizer Script
Gaming ke liye system optimize karega
PowerShell One-Liners
Copy-Paste aur Run!
๐ Installed Programs List Export:
Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion | Export-Csv -Path "$env:USERPROFILE\Desktop\installed_apps.csv"
๐ Battery Health Report:
powercfg /batteryreport /output "$env:USERPROFILE\Desktop\battery_report.html"; Start-Process "$env:USERPROFILE\Desktop\battery_report.html"
๐พ Large Files Find (100MB+):
Get-ChildItem C:\ -Recurse -ErrorAction SilentlyContinue | Where-Object {$_.Length -gt 100MB} | Sort-Object Length -Descending | Select-Object FullName, @{N='Size(MB)';E={[math]::Round($_.Length/1MB,2)}} -First 20
๐๏ธ Empty Recycle Bin:
Clear-RecycleBin -Force -ErrorAction SilentlyContinue
๐ก WiFi Passwords (All Saved):
(netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{PROFILE_NAME=$name;PASSWORD=$pass}}
System Diagnostic Commands
Problem Identify Karo
Memory Diagnostic
mdsched.exe
RAM test karega (restart hoga)
DirectX Diagnostic
dxdiag
Graphics & sound info
System Config
msconfig
Boot options & services
Disk Management
diskmgmt.msc
Partition management
Reliability Monitor
perfmon /rel
Crash history & stability
Problem Steps Recorder
psr
Screen record with steps
Useful Websites & Tools
Online Resources