FIX You'll Need a New App to Open This MS-Gamingoverlay Link In Windows 10 [2024 Tutorial]

TechFixIT
TechFixIT
23.6 هزار بار بازدید - 4 سال پیش - This troubleshooting guide will teach
This troubleshooting guide will teach you how to fix You'll Need a New App to Open This MS-Gamingoverlay Link FIX In Windows 10.

The Xbox Game DVR app allows you to record your videogame gameplay, share your clips and take screenshots using the box gamebar.

When you see the pop up error: "You’ll need a new app to open this ms-gaming overlay" look for an app in the Microsoft store. then it means that you are having issues with your Windows 10 game bar which allows you to record your screen and take snapshots. This problem appears after pressing your Windows Key + G.

This tutorial will show you how to enable or disable the Windows Game Recording and Broadcasting features of Game DVR, Game bar, and broadcasting for all users in Windows 10.

This tutorial will apply for computers, laptops, desktops,and tablets running the Windows 10 operating system (Home, Professional, Enterprise, Education) from all supported hardware manufactures, like Dell, HP, Acer, Asus, Toshiba,Lenovo, and Samsung).

Link: https://www.microsoft.com/en-us/softw...

Command:

Get all the provisioned packages
$Packages = (get-item 'HKLM:\Software\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\Applications') | Get-ChildItem

Filter the list if provided a filter
$PackageFilter = $args[0]
if ([string]::IsNullOrEmpty($PackageFilter))
{
echo "No filter specified, attempting to re-register all provisioned apps."
}
else
{
$Packages = $Packages | where {$_.Name -like $PackageFilter}

if ($Packages -eq $null)
{
 echo "No provisioned apps match the specified filter."
 exit
}
else
{
 echo "Registering the provisioned apps that match $PackageFilter"
}
}

ForEach($Package in $Packages)
{
get package name & path
$PackageName = $Package | Get-ItemProperty | Select-Object -ExpandProperty PSChildName
$PackagePath = [System.Environment]::ExpandEnvironmentVariables(($Package | Get-ItemProperty | Select-Object -ExpandProperty Path))

register the package
echo "Attempting to register package: $PackageName"

Add-AppxPackage -register $PackagePath -DisableDevelopmentMode
}
4 سال پیش در تاریخ 1399/01/30 منتشر شده است.
23,624 بـار بازدید شده
... بیشتر