Do you use one drive? Remove it if not with O&O app buster provided below.
There are two programs to manage your startups and scheduled task:
Disable anything you do not use every single time you start the computer, there is no need to have multiple items starting with the machine, that will waste resources. Leave Microsoft Scheduled task alone, if you are unsure of the importance of the task, the startups can go, only thing you really need starting is windows defender.
What's in startup. ============ > Click Here
TaskSchedulerView.============> Click Here
Let's change some power settings:
Create and run batch file.
Open a notepad and copy the entire content of the code box below.
Do not copy the word code!
Paste the txt into the notepad. Save the file to your desktop as
screen.bat
Now you will right click the on
screen.bat and
run as administrator.
Code:
@echo off
:: Set Active Power Scheme to Balanced
powercfg -setactive 381b4222-f694-41f0-9685-ff5bb260df2e
:: Disable Hibernation
powercfg -hibernate off
:: Turn Off Monitor after 60 min on AC Power
powercfg -change monitor-timeout-ac 60
:: Turn Off Monitor after 30 min on Battery Power
powercfg -change monitor-timeout-dc 30
:: Turn Off Hard Disk after 60 min on AC Power
powercfg -change disk-timeout-ac 60
:: Turn Off Hard Disk after 30 min on Battery Power
powercfg -change disk-timeout-dc 30
:: Suspend after 60 min on AC Power
powercfg -change standby-timeout-ac 35
:: Suspend after 30 min on Battery Power
powercfg -change standby-timeout-dc 30
:: Enable Screen Saver (Registry Modification)
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v ScreenSaveActive /t REG_SZ /d 1 /f
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v SCRNSAVE.EXE /t REG_SZ /d C:\Windows\System32\Mystify.scr /f
reg add "HKEY_CURRENT_USER\Control Panel\Desktop" /v ScreenSaveTimeOut /t REG_SZ /d 900 /f
pause
exit
Download
O&O APP buster, remove all the preinstalled crap.
Download
O&O ShutUp10, move it to your documents folder.
Right click run as admin.
Go to actions, apply all settings.
Create the restore point when prompted.
Follow thru the prompts, and reboot if needed to apply the settings.
What this batch file does:
- Disables the Windows SmartScreen filter, which is a security feature designed to protect users from malicious software and websites.
- Sets the telemetry data collection level to 0, effectively disabling it. Telemetry data includes diagnostic and usage information sent to Microsoft.
- Disables the advertising ID, which is used by apps to provide personalized ads.
- Disables IPv6 on all network interfaces by setting the DisabledComponents registry value to 255.
- Configures all network interfaces with enabled IP addresses to use Cloudflare’s DNS servers (1.1.1.1 and 1.0.0.1).
- Disable BitLocker encryption on drives C: and D:.
- Clears the DNS resolver cache.
- Refreshes all DHCP leases and re-registers DNS names.
- Disable various scheduled tasks related to network tracing and the Customer Experience Improvement Program (CEIP).
- Stop various Windows services:
- Configure the specified services to be disabled at startup.
- WSearch: Windows Search service.
- lfsvc: Geolocation service.
- DiagTrack: Diagnostic Tracking service.
- dmwappushservice: WAP Push message routing service.
- RetailDemo: Retail Demo service.
- SysMain: Superfetch service.
Create and run batch file.
Open a notepad and copy the entire content of the code box below.
Paste the txt into the notepad. Save the file to your desktop as
123.bat
Now you will right click the on
123.bat and run as administrator.
Code:
@echo off
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v SmartScreenEnabled /t REG_SZ /d Off /f
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\DataCollection /f /v AllowTelemetry /t REG_DWORD /d 0
reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\AdvertisingInfo /f /v DisabledByGroupPolicy /t REG_DWORD /d 1
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 255 /f
wmic nicconfig where (IPEnabled=TRUE) call SetDNSServerSearchOrder ("1.1.1.1", "1.0.0.1")
manage-bde -off C:
manage-bde -off D:
ipconfig /flushdns
ipconfig /registerdns
sc stop WSearch
sc stop lfsvc
sc stop DiagTrack
sc stop dmwappushservice
sc stop RetailDemo
sc stop SysMain
sc config DiagTrack start= disabled
sc config dmwappushservice start= disabled
sc config lfsvc start= disabled
sc config WSearch start= disabled
sc config RetailDemo start= disabled
schtasks /Change /TN "\Microsoft\Windows\NetTrace\GatherNetworkInfo" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\BthSQM" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Consolidator" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\KernelCeipTask" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\Uploader" /disable
schtasks /Change /TN "Microsoft\Windows\Customer Experience Improvement Program\UsbCeip" /disable
pause
exit
Now after completing the steps, reboot your computer and test the game.