-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathWindows_10_Optimize.bat
35 lines (30 loc) · 1.18 KB
/
Windows_10_Optimize.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@echo off
REM ************Optimizations For Windows 10**************************************************
REM
REM
REM This will run Win_Optimize.ps1.
REM This will do the following when ran:
REM -Replace Utiliman with CMD
REM -Disable Lock Screen Windows Feature
REM -Disable Windows Update sharing
REM -Disable Windows Error Reporting
REM -Disable Automatic Updates (For now- You can never fully disable.)
REM -Disable Hibernation
REM -Disabling Windows Tracking Services
REM -Disabling Windows Defender (For now- You can never fully disable.)
REM -Removing Error And Customer Reporting Scheduled Tasks
REM -Disable One-Drive
REM
REM Optimize AMD Cards / Reset Drivers.
REM This will update AMD registry for efficient GPU mining.
REM This will not affect cards bios directly.
REM HOWEVER THIS WILL HARM USING THIS MACHINE FOR GAMING!
REM Don't run this script if you wish to game with this machine as well!
REM
REM
REM IMPORTANT: THIS WILL HARM GAMING SETTINGS FOR WINDOWS WITH AMD CARDS.
REM THIS NEEDS TO RUN AS ADMIN.
cd %~dp0
REM DON'T RUN WITH SWARM RUNNING!
pwsh -executionpolicy Bypass -command ".\build\powershell\scripts\win_optimize.ps1"
REM REBOOT advised afterwards.