Chris Titus
Chris Titus
Thanks for double checking, I added a new commit cd586b3 that updates the o&o cfg to leave app background enabled
This shouldn't happen as script will now self elevate.
I like the changes, but at this point we probably should remove O&O from the utility as most of the changes it makes are already in the tweaks itself. Downloading...
> > I like the changes, but at this point we probably should remove O&O from the utility as most of the changes it makes are already in the tweaks...
Thanks for humoring me, I love all those suggestions. On the next update I'm going to pick these out and get it implemented. I will leave this PR open for...
Reviewing this will take some time. That is one chunky PR. What was the main purpose of moving the order? I had it organized into sections and now all the...
I can't accept the PR because the functions have been moved around. I have no way of verifying if values are changed. Example... Original code WSL Function Tweak Function NFS...
You might also reference this reg edit via Set-ItemProperty to disable copilot so windows won't refer to something that isn't there: ``` Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot] "TurnOffWindowsCopilot"=- [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot]...
> Does the following code do anything? > > ``` > if((Test-Path -LiteralPath "HKCU:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot") -ne $true) { New-Item "HKCU:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot" -force -ea SilentlyContinue }; > New-ItemProperty -LiteralPath 'HKCU:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot' -Name 'TurnOffWindowsCopilot' -Value...
@ModernTTY lets push this to the next PR. I'm merging to main and this draft will be wiped out. I'm also curious to see how this performs on 24H2 as...