Get-AppxPackage[-AllUsers] [-PackageTypeFilter <PackageTypes>] [[-Name] <String>] [[-Publisher] <String>] [-User <String>] [-Volume <AppxVolume>] [<CommonParameters>] Description TheGet-AppxPackagecmdlet gets a list of the app packages that are installed in a user profile. An app pa...
我们先尝试删除单个应用。 利用Remove-AppxPackage PackageFullName 命令卸载 首先,用 Get-AppxPackage | Select Name, PackageFullName 命令获得的应用包全称。 比如想删除 Xbox 应用,那么,就找到「Xbox」对应的应用包全称。 再在PowerShell 输入下面的命令即可:Remove-AppxPackage Microsoft.XboxApp_41.41.18005.0_x64...
Parameter Set: Default Get-AppxPackage [[-Name] <String> ] [[-Publisher] <String> ] [-AllUsers] [-User <String> ] [ <CommonParameters>] Detailed DescriptionThe Get-AppxPackage cmdlet gets a list of the app packages that are installed in a user profile. An app package has an .appx ...
-User<String> Specifies a user name. If you use this parameter, the cmdlets will return only a list of app packages (.appx) that are installed for the specified user. To get the list of packages for a user profile other than the profile for the current user, you must run this command...
Get all app packages for every user account: PS C:\> Get-AppxPackage -AllUsers This command lists the app packages that are installed for every user account on the computer. Get an app package for a specific a user: PS C:\> Get-AppxPackage -Name"Package17"-User"Contoso\EvanNarvaez" ...
Specifies an AppxPackage object or the full name of a package. To get the manifest of a package on the computer that's not installed for the current user, you must run this command with administrator permissions. Wildcards are permitted. Rozbalit tabulku Type: String Position: 1 Default ...
Get-AppxPackage | select name,packagefullname 删除指定的已安装应用 (以“人脉”为例,需要指定完整包名) remove-AppxPackage -package Microsoft.People_2020.324.807.0_neutral_~_8wekyb3d8bbwe 删除指定的已安装应用 (以“人脉”为例,不需要指定完整包名,可以模糊匹配) ...
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有...
PS C:\> (Get-AppxPackage -Name "*WinJS*" | Get-AppxPack ageManifest).package.applications.application.id Get-AppxPackage Add-AppxPackage Remove-AppxPackage Get-AppxLog Get-AppxLastError Package Manager API How to Add and Remove Apps
PS C:\> (Get-AppxPackage-Name"*WinJS*"|Get-AppxPackageManifest).package.applications.application.id Example 3: Get app capabilities This command gets the capabilities for an app package that has the string ZuneMusic in the name. PowerShell ...