Skip to content

Latest commit

 

History

History
86 lines (61 loc) · 3.51 KB

README.md

File metadata and controls

86 lines (61 loc) · 3.51 KB

QuickBoost: Automated Windows 10/11 Tweaking Utility

GitHub

GitHub all releases

GIF

⚠ MAKE A SYSTEM RESTORE POINT IN CASE ANYTHING GOES WRONG, TUTORIAL HERE

Leave a ⭐ if it helped <3

Code Written & Compiled by @SanGraphic

Quickboost is a community project, anyone can help grow and improve the program through pull requests!

what does it do? (Simplified Summary)

  • Disable Telemetry & Data Collection
  • Disable Scheduled Tasks & Bloatwares
  • Disable Unnecessary Services
  • Disable (most) System Loggings
  • Performance & Memory Usage Tweaks
  • Remove Temporary Files
  • Auto-update to use latest script

What does it Actually do? (Nerd Summary)

  • Disable CPU energy-saving technique that reduces CPU power consumption and synchronizing of process wake-ups.
  • Adding more ram for applications in system memory caching to improve microstuttering (Enable LargeSystemCache)
  • Disable Ram saving techniques Windows use (Paging Combining) to improve microstuttering
  • Disable Start-up Telemetry and Programs to Improve Startup and Memory Usage
  • Disable Delivery Optimization P2P Update downlods outside of local network
  • Disable unnecessary System Services for less System Usage (116 Services Disabled)
  • Speed up start time by Disabling DelayedDesktopSwitchTimeout
  • Applying Optimal Win32Priority for balanced FPS and Latency
  • Disable Settings App unnecessary and telemetry Options
  • Change Windows Updates to "Notify to schedule restart"
  • Install Timer Resolution Service to lower Input Delay.
  • Turn off microsoft peer-to-peer networking services
  • Enable Full-screen Exclusive for lower input delay
  • Disable Telemetry & Data Collection bloatwares
  • Remove unwanted unnecessary temporary files
  • Disable Consumer experiences from Microsoft
  • Enable Hardware Accelerated GPU Scheduling
  • Enabling Normal Priority for Fortnite
  • Disable Windows Automatic maintenance
  • Run Windows Cleaner (cleanmgr.exe)
  • Turn off data execution prevention
  • Add Take Ownership to Context menu
  • Disable WPP SOFTWARE tracing logs
  • Disable prefetcher and superfetch
  • BCD Tweaks for lower Input Delay
  • Import Custom Nvidia Profile
  • Disable System Auto-Loggers
  • Disable Paging Executive
  • Disable DistributeTimers
  • Disable GPU Preemption
  • Disable fast startup
  • Disable Hibernation
  • Disable Sleep study
  • Disable Aero shake
  • more that I don't have the time to write.

How to Build from Source? (Simple)

  1. Hold shift + Right click and click Open Powershell window.
  2. type "cd .\QuickBoost" without the quotes obvously
  3. run the following command to build a non-compressed .exe file:

dotnet publish -c Release -o publish -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true -p:IncludeNativeLibrariesForSelfExtract=true

or this one for a smaller compressed .exe:

dotnet publish -c Release -o publish -p:PublishReadyToRun=true -p:PublishSingleFile=true --self-contained true -p:IncludeNativeLibrariesForSelfExtract=true -p:EnableCompressionInSingleFile=true

now its in the QuickBoost\publish Folder.