Get-AppxLog
Get-AppxLog is accessible with the help of Appx module. To configure Appx, go through this link.
Synopsis
Gets an app package installation log.
Description
The Get-AppxLog cmdlet gets the app package installation log created during the deployment of an app package. An app package has an .appx file name extension. The log contains errors, warnings, and additional information about the processes initiated by cmdlets in the Appx Windows PowerShell module.
When Add-AppxPackage or Remove-AppxPackage report a failure, they return the ActivityID to use with Get-AppxLog .
Parameters
-ActivityId
Specifies an activity ID. This cmdlet uses the ID to get the log for a particular app package installation.
Type: | String |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-All
Indicates that the cmdlet gets all logs on the computer. You can get additional information when you run this cmdlets from Windows PowerShell as an administrator.
Type: | SwitchParameter |
Position: | Named |
Default value: | None |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Syntax
Get-AppxLog [-All] [<CommonParameters>]
Get-AppxLog [-ActivityId <String>] [<CommonParameters>]
—————Example 1—————
Get logs for the most recent deployment
PS C:> Get-AppxLog
This command gets the logs associated with the most recent deployment operation.
—————Example 2—————
Get logs for all logs
PS C:> Get-AppxLog -All
This command gets all the app package installation logs on the computer.
You can check the Version, CommandType and Source of this cmdlet by giving below command.
Get-Command Get-AppxLog
You can also read about
- Get-AppxPackage
- Get-AppxPackageManifest
- Get-AppxLastError