LemonPyHub
LemonPyHub Manual & Guides
Complete guides, tutorials, and API references for mastering LemonPyHub development
This Windows System Maintenance Manual provides comprehensive guides for using LemonPyHub tools
These tools help optimize your Windows system performance.
-
Windows Maintenance 3.9.5 (Installer) Windows Maintenance 3.9.7 (Portable)v3.9.7 | Windows 10 & 11Freeware | September 2025Installer: 10.45MB | Portable: 11.16MBWindows Maintenance Tool 3.9.7
This Windows Maintenance Tool is designed to simplify essential system care tasks. Instead of typing complex commands in Command Prompt, you can now perform them with a single click.
Key features include:
- How to Clear all files in "temp" folder
Win + R →temp→ Ctrl + A → Delete - How to Clear all files in "prefetch" folder
Win + R →prefetch→ Ctrl + A → Delete - How to Clear all files in "%temp%" folder
Win + R →%temp%→ Ctrl + A → Delete - How to Run Disk Cleanup
Win + R →cleanmgr - How to Empty Recycle Bin
Win + R →shell:RecycleBinFolder→ Ctrl + A → Delete - How to Run SFC (System File Checker)
Win + R →cmd→ Ctrl + Shift + Enter →sfc /scannow - How to Run DISM (Deployment Imaging Service and Management Tool)
Win + R →cmd→ Ctrl + Shift + Enter →DISM /Online /Cleanup-Image /RestoreHealth - How to Release IP Address
Admin CMD →ipconfig /release - How to Renew IP Address
Admin CMD →ipconfig /renew - How to Flush DNS Cache
Admin CMD →ipconfig /flushdns
With this tool, maintaining your Windows system becomes faster, easier, and more user-friendly — no technical expertise required.
- How to Clear all files in "temp" folder
-
DNS Manager
DNS Manager makes it simple to switch your system DNS to Google or Cloudflare—no need to manually configure network settings. With one click, you can apply the most reliable DNS servers for faster browsing and improved privacy.
Change DNS Options:
- Google DNS (IPv4)
Preferred:8.8.8.8
Alternate:8.8.4.4 - Cloudflare DNS (IPv4)
Preferred:1.1.1.1
Alternate:1.0.0.1 - Switch DNS instantly with one click (via DNS Manager)
- Automatically applies settings system-wide
- Quick, safe, and hassle-free
Step-by-step (GUI)
- Press Win + R, type
ncpa.cpland press Enter → opens Network Connections. - Right-click your active adapter (e.g. Wi-Fi or Ethernet) → choose Properties.
- Select Internet Protocol Version 4 (TCP/IPv4) → click Properties.
- Choose Use the following DNS server addresses and enter the addresses for Google or Cloudflare (see list above).
- Click OK → Close. Optionally repeat for Internet Protocol Version 6 (TCP/IPv6) if you use IPv6.
- Flush DNS cache: press Win + R → type
cmd→ press Ctrl + Shift + Enter to open Admin CMD → runipconfig /flushdns.
Step-by-step (Command Prompt / netsh)
- Open Admin Command Prompt: Win + R → type
cmd→ press Ctrl + Shift + Enter. - For Wi-Fi (replace
Wi-FiwithEthernetif wired): -
netsh interface ip set dns name="Wi-Fi" static 8.8.8.8
netsh interface ip add dns name="Wi-Fi" 8.8.4.4 index=2 - Or for Cloudflare:
-
netsh interface ip set dns name="Wi-Fi" static 1.1.1.1
netsh interface ip add dns name="Wi-Fi" 1.0.0.1 index=2 - After running commands, run
ipconfig /flushdnsto clear DNS cache.
Step-by-step (PowerShell)
- Open PowerShell as Admin: Win + X → Windows PowerShell (Admin) or press Win + R, type
powershell, then Ctrl + Shift + Enter. - For Google DNS (replace
Wi-Fiif your adapter name differs): -
Set-DnsClientServerAddress -InterfaceAlias "Wi-Fi" -ServerAddresses 8.8.8.8,8.8.4.4 - For Cloudflare DNS:
-
Set-DnsClientServerAddress -InterfaceAlias "Wi-Fi" -ServerAddresses 1.1.1.1,1.0.0.1 - Flush DNS cache after changes:
ipconfig /flushdns.
Notes: If you're unsure of your adapter name, run
netsh interface show interface(CMD) orGet-NetAdapter(PowerShell). Replace"Wi-Fi"with the correct adapter name. If you want IPv6 addresses too, I can add those into the UI.With DNS Manager, you can also switch between these presets automatically—no manual typing required.
- Google DNS (IPv4)
-
Windows Optimizer (Portable)Win7, Win8, Win8.1, Win10, Win11Auto-Detect WindowsFreeware | September 2025Portable: 27.24MBWindows Optimizer
The Windows Optimizer application represents a sophisticated Windows system optimization tool designed to enhance performance through systematic configuration management. This Python-based utility leverages PowerShell commands to intelligently modify Windows Registry settings and service configurations, targeting specific system components that impact resource utilization. The application provides users with granular control over visual effects, background processes, search functionality, and UI elements, enabling tailored optimization based on individual performance requirements.
Important before you start: create a System Restore point and export registry backups. Many tweaks require Administrator rights and may need sign-out/restart or Explorer restart to take effect.
Tweaks — Step by step
1) Visual Effects (appearance vs performance)
GUI- Press
Win + R, typeSystemPropertiesPerformance.exeand press Enter. - In Performance Options → Visual Effects select Adjust for best performance, Adjust for best appearance, or Custom.
- Click Apply → OK. Sign out or restart Explorer if needed.
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" -Name "VisualFXSetting" -Value 2 -Type DWord # Restart Explorer to apply: Stop-Process -Name explorer -Force Start-Process explorer2) Background Apps (allow / block UWP apps)
GUI- Win + I → Apps (or Settings → Privacy → Background apps on Win10).
- For each app: click the three dots → Advanced options → Background apps permissions → choose Never.
# Run as Admin PowerShell New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" -Force | Out-Null New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" -Name "LetAppsRunInBackground" -PropertyType DWord -Value 2 -Force # Reboot for policy to take full effect3) Taskbar Small Icon (make taskbar icons smaller)
Windows 10 (GUI)- Win + I → Personalization → Taskbar → turn Use small taskbar buttons On.
# set Taskbar to small icons (Windows 11) Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" -Name "TaskbarSi" -Value 0 -Type DWord # Restart Explorer: Stop-Process -Name explorer -Force Start-Process explorer4) Transparency Effect (enable / disable acrylic)
GUI- Win + I → Personalization → Colors (or Accessibility → Visual effects) → toggle Transparency effects On/Off.
# 0 = Off, 1 = On Set-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "EnableTransparency" -Value 0 -Type DWord # Restart Explorer: Stop-Process -Name explorer -Force Start-Process explorer5) Search Indexing (Windows Search)
Adjust locations (GUI)- Start → type Indexing Options → Open → click Modify → add/remove indexed folders.
# Disable Windows Search service (Admin PowerShell) Set-Service -Name WSearch -StartupType Disabled Stop-Service -Name WSearch -Force # Re-enable when needed: Set-Service -Name WSearch -StartupType "Automatic" Start-Service -Name WSearchNote: disabling indexing reduces background disk/CPU usage but makes file searches slower.
6) Create Backup Settings (recommended before applying tweaks)
Create a System Restore point (GUI)- Win + R → type
SystemPropertiesProtection.exe→ Enter. - Select your system drive (usually C:) → Create → name e.g. "Before Windows Optimizer".
Export registry keys you will changeCheckpoint-Computer -Description "Before Windows Optimizer" -RestorePointType "MODIFY_SETTINGS"reg export "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects" "%USERPROFILE%\Desktop\visualfx_backup.reg" reg export "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" "%USERPROFILE%\Desktop\taskbar_backup.reg" reg export "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" "%USERPROFILE%\Desktop\personalize_backup.reg" reg export "HKLM\SOFTWARE\Policies\Microsoft\Windows\AppPrivacy" "%USERPROFILE%\Desktop\appprivacy_backup.reg"7) Rollback / Restore
Restore System Restore point (GUI)- Win + R → type
rstrui.exe→ Enter → follow the wizard to restore a saved restore point.
Re-enable servicesreg import "%USERPROFILE%\Desktop\visualfx_backup.reg" reg import "%USERPROFILE%\Desktop\taskbar_backup.reg"Set-Service -Name WSearch -StartupType "Automatic" Start-Service -Name WSearch8) Quick commands & tips
- Restart Explorer to apply many UI/registry changes:
Stop-Process -Name explorer -Force; Start-Process explorer - If unsure of adapter names / settings, test changes on a non-critical account first.
- Always create a restore point & export the registry keys you modify.
This Windows Optimizer workflow lets users safely toggle visual effects, background apps, taskbar sizing, transparency, and indexing — with easy rollback through restore points or registry imports. If you want, I can generate a ready-to-use
.ps1script (with confirmations and automatic backups) that performs these tweaks and also provides a one-click rollback option. - Press