From b3cc36c2941bb4af2151455bfe4c483be529c697 Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Mon, 25 Apr 2022 12:16:09 -0500 Subject: [PATCH 1/3] Create KnownIssues.md - Created KnownIssues.md - Contains a compilation of issues and their fixes - Hopefully will reduce the number of duplicate issues posted into the issues tab --- KnownIssues.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 KnownIssues.md diff --git a/KnownIssues.md b/KnownIssues.md new file mode 100644 index 00000000..d364606e --- /dev/null +++ b/KnownIssues.md @@ -0,0 +1,24 @@ +## Known Issues and Fixes +- [#253](https://github.com/ChrisTitusTech/win10script/issues/253) Windows Search does not work: Enable Background Apps +- [#278](https://github.com/ChrisTitusTech/win10script/issues/278) Xbox Game Bar Activation Broken: Set the Xbox Accessory Management Service to Automatic +``` +Get-Service -Name "XboxGipSvc" | Set-Service -StartupType Automatic +``` +- [#250](https://github.com/ChrisTitusTech/win10script/issues/250) Windows Insider Builds not installing: Telemetry needs to be enabled +``` +Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0 +Set-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DataCollection" -Name "AllowTelemetry" -Type DWord -Value 0 + ``` +- [#245](https://github.com/ChrisTitusTech/win10script/issues/245) winget requires interaction on first run: Manually type 'y' and 'enter' into the powershell console to continue +- [#237](https://github.com/ChrisTitusTech/win10script/issues/237) (Windows 11) Quick Settings no longer works: Launch the Script and click 'Enable Action Center' +- [#214](https://github.com/ChrisTitusTech/win10script/issues/214) [#165](https://github.com/ChrisTitusTech/win10script/issues/165) [#150](https://github.com/ChrisTitusTech/win10script/issues/150) Explorer no longer launches: Go to Control Panel, File Explorer Options, Change the 'Open File Explorer to' option to 'This PC'. +- [#199](https://github.com/ChrisTitusTech/win10script/issues/199) [#216](https://github.com/ChrisTitusTech/win10script/issues/216) [#233](https://github.com/ChrisTitusTech/win10script/issues/233) [#242](https://github.com/ChrisTitusTech/win10script/issues/242) [#208](https://github.com/ChrisTitusTech/win10script/issues/208) Script doesn't run/Powershell crashes: + 1. Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11) + 2. Run: + ``` + Set-ExecutionPolicy Unrestricted -Scope Process -Force + ``` + 3. Run: + ``` + iwr -useb https://git.io/JJ8R4 | iex + ``` \ No newline at end of file From 5cc55cdb50304a1c761e2efd6f63c6b7187bc043 Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Tue, 3 May 2022 10:06:18 -0500 Subject: [PATCH 2/3] Add issue in #333 - Added issue and solution given in #333 --- KnownIssues.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/KnownIssues.md b/KnownIssues.md index d364606e..1461f5ba 100644 --- a/KnownIssues.md +++ b/KnownIssues.md @@ -1,4 +1,13 @@ ## Known Issues and Fixes +- [#333](https://github.com/ChrisTitusTech/win10script/issues/333) Windows taking longer to shut down: + - Turn on fast startup: Press Windows key + R, then type: + ``` + control /name Microsoft.PowerOptions /page pageGlobalSettings + ``` + - If that doesn't work, Disable Hibernation: Press Windows Key+X and select 'PowerShell (Admin)' (Windows 10) or 'Windows Terminal (Admin)' (Windows 11) and enter: + ``` + powercfg /H off + ``` - [#253](https://github.com/ChrisTitusTech/win10script/issues/253) Windows Search does not work: Enable Background Apps - [#278](https://github.com/ChrisTitusTech/win10script/issues/278) Xbox Game Bar Activation Broken: Set the Xbox Accessory Management Service to Automatic ``` From fe371efa1221e37f40ce21ac0680fc8a3ddfb7fe Mon Sep 17 00:00:00 2001 From: Carterpersall Date: Wed, 4 May 2022 09:56:50 -0500 Subject: [PATCH 3/3] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d0af9754..7ceb424c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ defltbase.sdb bin/x64/ctt-toolbox.exe bin/x64/ctt-toolbox.zip win10debloat.ps1.psbuild +.vs \ No newline at end of file