* Fixed GameDVR Code
Registry values were not changing after applying GameDVR tweaks.
Because all the registry tweaks were under if condition in the code.
Modified that and now working properly.
* Diable Gamebar Presence Writer
Gamebar Presence Writer causes stutter in games, while running in
background.
Deactivated the trigger of Gamebar Presence Writer to resolve this.
* redid the whole thing
* man
* Tweaks to change
I like most of these but adding the UAC back in, Disabling Long Paths, and removing TPM properties aren't approved in the default essential tweaks.
This should have been put into the Undo all portion
Co-authored-by: Chris Titus <dfm.titus@gmail.com>
Registry values were not changing after applying GameDVR tweaks.
Because all the registry tweaks were under if condition in the code.
Modified that and now working properly.
Added Nahimic Service to list of services to set to manual. Nahimic seems to provide little improvement to audio for some resources consumed and tents to cause issues with specific games. Comes preinstalled on lots of prebuilts and laptops.
* Update README.md
* QOL Terminal - Win Update Revamp
* Fix Flickering
* Fixed registry error
* Fixed some errors
Added missing xml code of DisableUAC into MainWindow.xaml
Unchecked DisableUAC for Minimal Tweaks option
Co-authored-by: Chris Titus <dfm.titus@gmail.com>
* Update README.md
* QOL Terminal - Win Update Revamp
* Fix Flickering
* minor comment typos and formatting
Fixed some typos and formatting in comments between lines 343 and 408
Co-authored-by: Chris Titus <dfm.titus@gmail.com>
* Update README.md
* QOL Terminal - Win Update Revamp
* Fix Flickering
* added software development related packages
Co-authored-by: Chris Titus <dfm.titus@gmail.com>
* Update README.md
* QOL Terminal - Win Update Revamp
* Fix Flickering
* Fix invalid flag value after applying misc tweaks
Adjusting visual effects for performance...
Adjusted visual effects for performance
false:
Line |
964 | $WPFMiscTweaksDisplay.IsChecked = false
| ~~~~~
| The term 'false' is not recognized as a name of a cmdlet, function, script file, or executable program.
Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
Co-authored-by: Chris Titus <dfm.titus@gmail.com>
This is a very simple if statement, I don't think there's much to explain
```PowerShell
if ($IsLinux){ # PowerShell on Linux has that read-only bool variable set to $true
Write-Host "This utility is exclusively designed for Windows"
return
}
```