winutil/KnownIssues.md
Chris Titus a0a8b190dc
Test 10 2022 - The GUI Overhaul (#266)
* Create KnownIssues.md

* Formatting and New Appx Function

Fix formatting and added an appx function for grabbing and debloating Microsoft apps.
There is also a program uninstall feature added for removing HP programs built in to new HP PCs.

* Update README.md (#251)

* Added Documentation from #159

* Cleanup and Program Adds

* Trying Uniform Stretch

* Initial GUI Revamp

* Fall 2022 Program Additions

Too many to list.

* Added ToolTips to Tweaks

* Change in App Removal

* Update README.md

* Add Reset News and Interest to Undo all

* Add Wait-Process to Program Installs

* Autologin Addition

* Prep for main merge
2022-10-13 05:59:14 -05:00

2.4 KiB

Known Issues and Fixes

  • #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 Windows Search does not work: Enable Background Apps
  • #278 Xbox Game Bar Activation Broken: Set the Xbox Accessory Management Service to Automatic
Get-Service -Name "XboxGipSvc" | Set-Service -StartupType Automatic
  • #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 winget requires interaction on first run: Manually type 'y' and 'enter' into the PowerShell console to continue
  • #237 (Windows 11) Quick Settings no longer works: Launch the Script and click 'Enable Action Center'
  • #214 #165 #150 Explorer no longer launches: Go to Control Panel, File Explorer Options, Change the 'Open File Explorer to' option to 'This PC'.
  • #199 #216 #233 #242 #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
    
    1. Run:
    irm christitus.com/win | iex