Powershell Detection Script to Detect New Teams

if ($null -eq (Get-AppxPackage -Name MSTeams)) {

	Write-Host "New Teams client not found"

	exit 1

} Else {

	Write-Host "New Teams client found"

	Exit 0

}
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...