LeDragoX / Win-Debloat-Tools

Re-imagining Windows like a minimal OS install, already debloated with minimal impact for most functionality.
MIT License
5.2k stars 264 forks source link

Xbox Game Bar or NVIDIA game overlay `can't capture video or picture` #98

Closed Emiryum closed 1 year ago

Emiryum commented 1 year ago

Describe the Bug

ı used this script to make computer use less ram, but after doing so, Game bar Capture and take screenshot options greyed out and nvidia game overlay just wont open tried restoring the debloat didnt fix it

How can this issue be reproduced?

by simply running the script and trying to record screen

Expected behavior?

to get a script to enable what feature was disabled

Operating System

Windows 11

Operating System Version

22H2 22621.1413

Screenshots

Screenshot (18) Screenshot (19) Screenshot (21)

Logs

No response

Additional Info

No response

Emiryum commented 1 year ago

fixed it myself by doing SFC /scannow DDU and reinstalling drivers New problem is .exe files takes few minutes to load for setup start Any suggestions on that ?

LeDragoX commented 1 year ago

Okay, sorry for the delay, most of the things you said indeed happen, cause the script was made in that way.

Game bar Capture and take screenshot options greyed out

To solve this you can use an option from GUI to re-activate every thing related to Xbox Game Bar

nvidia game overlay just wont open

The service from NVIDIA is set to Manual, it is written over here how to solve that https://github.com/LeDragoX/Win-Debloat-Tools#-troubleshooting-known-issues (Btw, i'm thinking about not setting it to Manual as each driver update reset the Service status)

New problem is .exe files takes few minutes to load for setup start

I don't know if this issue is really related to the script or Windows 11 itself, as i recently saw a lot of people reporting which the last update was causing performance issues with SSDs. I've found one article, but if you search you can find a lot more about this situation. https://www.pcworld.com/article/1663285/windows-11-may-be-slowing-down-your-ssds-again.html

LeDragoX commented 1 year ago

About the Xbox Game bar option, i did forget to show where to find the option. image

LeDragoX commented 1 year ago

Writting this down, as i'm removing this from README.

and Open PowerShell as admin to copy + paste it's content:

Fix NVIDIA Control Panel

Only this time (Recommended - Consumes less RAM after boot)

Get-Service "NVDisplay.ContainerLocalSystem" | Set-Service -StartupType Manual -PassThru | Start-Service
Get-Service "NvContainerLocalSystem" | Set-Service -StartupType Manual -PassThru | Start-Service

Permanently (Keeps the service running along with the system)

Get-Service "NVDisplay.ContainerLocalSystem" | Set-Service -StartupType Automatic -PassThru | Start-Service
Get-Service "NvContainerLocalSystem" | Set-Service -StartupType Automatic -PassThru | Start-Service