然后,在 PowerShell 窗口中,键入以下命令并按 Enter。获取-appxpackage Microsoft.GamingServices | 删除-AppxPackage -allusers如果您想知道,以下是此命令中的参数的作用: get-appxpackage Microsoft.GamingServices:这部分告诉 PowerShell 获取“游戏服务”包(这是您要卸载的包)。 remove-AppxPackage:这告诉 PowerSh...
Windows 11 需要新应用打开此ms-gamingoverlay1 打开 powershell 管理员模式a 按下Windows键 (一般在键盘最下面一行 按键上有4个小窗口)b 键盘输入 powershell (自动执行搜索)c 鼠标移动至 windows powershell 上 右键 管理员2 执行 命令a 删除 xbox 游戏栏 ...
How to remove the Xbox app in Windows 11 using PowerShell The traditional method of uninstalling apps works just fine for the Xbox app, but that's not always the case. Sometimes, Windows will automatically download and reinstall the app in the background without asking you. If you want to...
这项操作可能会清除卸载应用的登录信息,因此,应用的账号密码一定要牢记哦~ 在搜索框搜索并找到【Windows Powershell】,点击【以管理员身份运行】。 仍以“Windows时钟”为例,在弹出对话框内输入【Get-AppxPackage *Microsoft.windowsAlarms* | Remove-AppxPackage】回车即可(可以直接复制粘贴哦~若自行输入请注意空格~)...
在搜索框搜索并找到【Windows Powershell】,点击【以管理员身份运行】。 仍以“Windows时钟”为例,在弹出对话框内输入【Get-AppxPackage *Microsoft.windowsAlarms* | Remove-AppxPackage】回车即可(可以直接复制粘贴哦~若自行输入请注意空格~)。 更多应用卸载替换红色方框内的文字,即可卸载更多应用:人脉:Get-AppxPackag...
1 第一步,点击开始菜单,所有应用,找到Windows PowerShell,然后Windows PowerShell上面点击以管理员身份运行,如图所示。2 现在的窗口中,我们在提示符这里输入Get-appxPackage-allUsers,回车,获取系统自带的所有应用。3 然后这里我们查找到要卸载的Microsoft.XboxApp,如图,然后下面这里,查看PackageFullName : ...
2 卸载Windows 10内置应用程序的方法使用系统自带的PowerShell(命令行外壳程序)卸载Windows 10内置应用程序步骤:第一步:调出WindowsPowerShell(管理员)窗口右键点击任务栏空白处 - 任务栏设置,我们可以看到任务栏设置窗口中的:当我右键单击【开始】按纽或按下Windows 键+X时,在菜单中将命令提示符替换 Windows Power...
windows10删除开始菜单中的xbox、人脉、邮件等应用 1、右键单击PowerShell,选择“以管理员身份运行” 2、输入下面的命令回车,会列出系统中所有已安装应用列表。 Get-AppxPackage -AllUsers 从列表中找到你要卸载的应用,并找到其全名称,即PackageFullName Remove-AppxPackage PackageFullName...
1powershell.exe -ExecutionPolicy RemoteSigned-fileRemoveAppx.ps1 或者将powershell脚本加入Windows Runonce注册表, 在用户首次开机时运行. 此处使用VBS调用脚本, 使用户无感后台运行: 创建HiddenCMD.vbs 1ConstCONST_HIDE_WINDOW =02DimoShell, objArgs3DimstrCmd4DimI56strCmd =""7SetobjArgs =WScript.Arguments8...
Be sure to run PowerShell as Admin. Key in exactly like this, of course using the name of the app you want to remove inside the asterisks. Here is the example to remove Windows Maps. I have listed below the other ones I know about. Get-AppxPackage *windowsmaps* | Remove-AppxPackage...