We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggestion to add detection for x86 in detection script to support upgrading:
$PlatformRegistryKey = Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration"
Then add check in the if statement:
if ($M365AppsCheck -and ($PlatformRegistryKey.Platform -eq "x64")) { Write-LogEntry -Value "Microsoft 365 Apps detected OK" -Severity 1 Write-Output "Microsoft 365 Apps Detected" Exit 0 }else{ Write-LogEntry -Value "Microsoft 365 Apps not detected" -Severity 2 Exit 1 }
The text was updated successfully, but these errors were encountered:
I just added this check to the detection script. I think too it is very useful.
Sorry, something went wrong.
No branches or pull requests
Suggestion to add detection for x86 in detection script to support upgrading:
$PlatformRegistryKey = Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Office\ClickToRun\Configuration"
Then add check in the if statement:
if ($M365AppsCheck -and ($PlatformRegistryKey.Platform -eq "x64")) {
Write-LogEntry -Value "Microsoft 365 Apps detected OK" -Severity 1
Write-Output "Microsoft 365 Apps Detected"
Exit 0
}else{
Write-LogEntry -Value "Microsoft 365 Apps not detected" -Severity 2
Exit 1
}
The text was updated successfully, but these errors were encountered: