Skip to content

Commit

Permalink
Updated README with new features + better docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Teramanbr committed May 12, 2022
1 parent 4d70537 commit 3e0e2b9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
Empty file removed GameUserSettings.ini
Empty file.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@ Terabyte Tweaker
<h3 align="center">Terabyte Tweaker is an program that optimizes your Windows PC, allowing it to run faster and smoother.</h3>

## ✨ Features
- Regedits
- RAM Optimization
- Cache + Log Cleaning
- Power Plan Tweak
- Internet Tweaks (Low your latency down on games)
- Windows Debloat (to remove unwanted programs)
- Regedits
- DNS Tweaks (Low your latency down on games)
- MTU Tweaks (Allow faster internet connections + Lower Ping)
- Windows Debloat (Remove unwanted programs)
- Timer Resolution Services (To make your PC run faster)
- Game Specific Tweaks (only Minecraft in the moment, give me tips on how to make other games faster)
- Game Specific Tweaks (only Minecraft, Brawlhalla and VALORANT to the moment)

![](https://github.com/Teramanbr/TerabyteTweaker/blob/main/images/ingles.png?raw=true)

Expand All @@ -39,7 +40,7 @@ Even though all my regedit tweaks are harmless, i do not want any chance of dama
## ⚠️ Microsoft SmartScreen

Running downloaded Batch files triggers a [Microsoft SmartScreen](https://docs.microsoft.com/pt-br/windows/security/threat-protection/microsoft-defender-smartscreen/microsoft-defender-smartscreen-overview) prompt, even if the Batch file is not a security threat.
To proof even more that my program is not a virus, [here](https://www.virustotal.com/gui/file/94a84cf4cea2ed8d8a39a6d568379f63729a00a2a1119427c848cd68cdcbe601?nocache=1) is the VirusTotal report:
To proof even more that my program is not a virus, [here](https://www.virustotal.com/gui/file/7f4f7c7795bb42ec597b923903d1f309fdbce3add8fc31a03257224e507e9bcb?nocache=1) is the VirusTotal report:
![](https://github.com/Teramanbr/TerabyteTweaker/blob/main/images/VirusTotal.png?raw=true)

## 🔨 Installation
Expand Down
Binary file modified images/VirusTotal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/Regedit.reg
Binary file not shown.
11 changes: 6 additions & 5 deletions src/Terabyte Tweaker.bat
Original file line number Diff line number Diff line change
Expand Up @@ -826,24 +826,25 @@ IF [%%G] EQU [1046] (
echo Applying Regedits...
)
)
::activate game mode
::Activate Game Mode
reg add "Computer\HKEY_CURRENT_USERS\SOFTWARE\Microsoft\GameBar" /v "AllowAutoGameMode" /t REG_DWORD /d "1" /f >nul 2>&1
reg add "Computer\HKEY_CURRENT_USERS\SOFTWARE\Microsoft\GameBar" /v "AutoGameModeEnabled" /t REG_DWORD /d "1" /f >nul 2>&1
::activate hardware acceleration
::Activate hardware acceleration
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\GraphicsDrivers" /v "HwSchMode" /t REG_DWORD /d "2" /f >nul 2>&1
::disable transparency
::Disable transparency
reg add "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize" /v "EnableTransparency" /t REG_DWORD /d "00000000" /f >nul 2>&1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "UseActionCenterExperience" /t REG_DWORD /d "00000000" /f >nul 2>&1
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\BackgroundAccessApplications" /v "GlobalUserDisabled" /t REG_DWORD /d 1 /f >nul 2>&1
reg add "HKLM\SOFTWARE\Policies\Microsoft\WindowsStore" /v "AutoDownload" /t REG_DWORD /d 2 /f >nul 2>&1
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile" /v "NetworkThrottlingIndex" /t REG_SZ /d "ffffffff" /f >nul 2>&1
::Faster startup
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "StartupDelayInMSec" /t REG_DWORD /d 0 /f >nul 2>&1
::better cache management
::Better cache management
reg add "HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters" /v "CacheHashTableBucketSize" /t REG_DWORD /d "1" /f >nul 2>&1
reg add "HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters" /v "CacheHashTableSize" /t REG_DWORD /d "180" /f >nul 2>&1
reg add "HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters" /v "MaxCacheEntryTtlLimit" /t REG_DWORD /d "fa00" /f >nul 2>&1
reg add "HKLM\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters" /v "MaxSOACacheEntryTtlLimit" /t REG_DWORD /d "12d" /f >nul 2>&1
::Haxshw Regedit
::Regedit
powershell "ForEach($adapter In Get-NetAdapter){Disable-NetAdapterLso -Name $adapter.Name -ErrorAction SilentlyContinue}" >nul 2>&1
PowerShell Invoke-WebRequest "https://raw.githubusercontent.com/Teramanbr/TerabyteTweaker/main/src/Regedit.reg" -OutFile "%temp%\Regedit.reg" >nul 2>&1
reg import C:\Users\%USERNAME%\AppData\Local\Temp\Regedit.reg >nul 2>&1
Expand Down

0 comments on commit 3e0e2b9

Please sign in to comment.