Get-WheaMemoryPolicy

Applies To: Windows 8, Windows Server 2012

Get-WheaMemoryPolicy

Retrieves the Windows Hardware Error Architecture (WHEA) memory policies in effect on a local or remote computer.

Syntax

Parameter Set: Default
Get-WheaMemoryPolicy [-ComputerName <String> ] [ <CommonParameters>]

Parameters

-ComputerName<String>

Name of the remote computer from which to retrieve policy information. If no computer name is specified, the command returns the policy of the local computer. You can use cn as an alias for ComputerName.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters.

Examples

Example: Get the WHEA memory policy settings from the local computer

Return WHEA memory policy values from the local computer, as a WheaMemoryPolicy object.

PS C:\> Get-WHEAMemoryPolicy
DisableOffline : False 
DisablePFA : False 
PersistMemoryOffline : True 
PFAPageCount : 64 
PFAErrorThreshold : 16 
PFATimeOut : 86400
PS C:\>