Share via


HealthCheckName Struct

Definition

Represents the name of the health check operation performed.

[System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckNameTypeConverter))]
public struct HealthCheckName : IEquatable<Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckName>, System.Management.Automation.IArgumentCompleter
[<System.ComponentModel.TypeConverter(typeof(Microsoft.Azure.PowerShell.Cmdlets.DesktopVirtualization.Support.HealthCheckNameTypeConverter))>]
type HealthCheckName = struct
    interface IArgumentCompleter
Public Structure HealthCheckName
Implements IArgumentCompleter, IEquatable(Of HealthCheckName)
Inheritance
HealthCheckName
Attributes
Implements

Fields

AppAttachHealthCheck

Verifies that the AppAttachService is healthy (there were no issues during package staging). The AppAttachService is used to enable the staging/registration (and eventual deregistration/destaging) of MSIX apps that have been set up by the tenant admin. This checks whether the component had any failures during package staging. Failures in staging will prevent some MSIX apps from working properly for the end user. If this check fails, it is non fatal and the machine still can service connections, main issue may be certain apps will not work for end-users.

DomainJoinedCheck

Verifies the SessionHost is joined to a domain. If this check fails is classified as fatal as no connection can succeed if the SessionHost is not joined to the domain.

DomainReachable

Verifies the domain the SessionHost is joined to is still reachable. If this check fails is classified as fatal as no connection can succeed if the domain the SessionHost is joined is not reachable at the time of connection.

DomainTrustCheck

Verifies the SessionHost is not experiencing domain trust issues that will prevent authentication on SessionHost at connection time when session is created. If this check fails is classified as fatal as no connection can succeed if we cannot reach the domain for authentication on the SessionHost.

FsLogixHealthCheck

Verifies the FSLogix service is up and running to make sure users' profiles are loaded in the session. If this check fails is classified as fatal as even if the connection can succeed, user experience is bad as the user profile cannot be loaded and user will get a temporary profile in the session.

MetaDataServiceCheck

Verifies the metadata service is accessible and return compute properties.

MonitoringAgentCheck

Verifies that the required Geneva agent is running. If this check fails, it is non fatal and the machine still can service connections, main issue may be that monitoring agent is missing or running (possibly) older version.

SupportedEncryptionCheck

Verifies the value of SecurityLayer registration key. If the value is 0 (SecurityLayer.RDP) this check fails with Error code = NativeMethodErrorCode.E_FAIL and is fatal. If the value is 1 (SecurityLayer.Negotiate) this check fails with Error code = NativeMethodErrorCode.ERROR_SUCCESS and is non fatal.

SxSStackListenerCheck

Verifies that the SxS stack is up and running so connections can succeed. If this check fails is classified as fatal as no connection can succeed if the SxS stack is not ready.

UrlsAccessibleCheck

Verifies that the required WVD service and Geneva URLs are reachable from the SessionHost. These URLs are: RdTokenUri, RdBrokerURI, RdDiagnosticsUri and storage blob URLs for agent monitoring (geneva). If this check fails, it is non fatal and the machine still can service connections, main issue may be that monitoring agent is unable to store warm path data (logs, operations ...).

WebRtcRedirectorCheck

Verifies whether the WebRTCRedirector component is healthy. The WebRTCRedirector component is used to optimize video and audio performance in Microsoft Teams. This checks whether the component is still running, and whether there is a higher version available. If this check fails, it is non fatal and the machine still can service connections, main issue may be the WebRTCRedirector component has to be restarted or updated.

Methods

CompleteArgument(String, String, String, CommandAst, IDictionary)

Implementations of this function are called by PowerShell to complete arguments.

Equals(HealthCheckName)

Compares values of enum type HealthCheckName

Equals(Object)

Compares values of enum type HealthCheckName (override for Object)

GetHashCode()

Returns hashCode for enum HealthCheckName

ToString()

Returns string representation for HealthCheckName

Operators

Equality(HealthCheckName, HealthCheckName)

Overriding == operator for enum HealthCheckName

Implicit(HealthCheckName to String)

Implicit operator to convert HealthCheckName to string

Implicit(String to HealthCheckName)

Implicit operator to convert string to HealthCheckName

Inequality(HealthCheckName, HealthCheckName)

Overriding != operator for enum HealthCheckName

Applies to