diff --git a/src/powershell/private/core/Add-ZtTestResultDetail.ps1 b/src/powershell/private/core/Add-ZtTestResultDetail.ps1 index 13f81ddaa..be3d7191f 100644 --- a/src/powershell/private/core/Add-ZtTestResultDetail.ps1 +++ b/src/powershell/private/core/Add-ZtTestResultDetail.ps1 @@ -67,7 +67,7 @@ function Add-ZtTestResultDetail { [ValidateSet('NotConnectedAzure', 'NotConnectedExchange', 'NotDotGovDomain', 'NotLicensedEntraIDP1', 'NotConnectedSecurityCompliance', 'NotLicensedEntraIDP2', 'NotLicensedEntraIDGovernance', 'NotLicensedEntraWorkloadID', 'NotSupported', 'UnderConstruction', - 'NotLicensedIntune', 'NoAzureAccess' + 'NotLicensedIntune', 'NoAzureAccess', 'NotApplicable' )] [string] $SkippedBecause, diff --git a/src/powershell/private/core/Get-ZtSkippedReason.ps1 b/src/powershell/private/core/Get-ZtSkippedReason.ps1 index a8b0571ce..3a896a46d 100644 --- a/src/powershell/private/core/Get-ZtSkippedReason.ps1 +++ b/src/powershell/private/core/Get-ZtSkippedReason.ps1 @@ -21,6 +21,7 @@ function Get-ZtSkippedReason { "NotLicensedIntune" { "This test is for tenants that are licensed for Microsoft Intune. See [Microsoft Intune licensing](https://learn.microsoft.com/intune/intune-service/fundamentals/licenses)"; break} "NotSupported" { "This test relies on capabilities not currently available (e.g., cmdlets that are not available on all platforms, Resolve-DnsName)"; break} "NoAzureAccess" { "The signed in user does not have access to the Azure subscription to perform this test."; break} + "NotApplicable" { "This test is not applicable to the current environment."; break} default { $SkippedBecause; break} } }