15 lines
381 B
PowerShell
15 lines
381 B
PowerShell
#Function to force an upgrade of Store Apps
|
|
Function Get-StoreApps {
|
|
|
|
try {
|
|
$namespaceName = "root\cimv2\mdm\dmmap"
|
|
$className = "MDM_EnterpriseModernAppManagement_AppManagement01"
|
|
$wmiObj = Get-WmiObject -Namespace $namespaceName -Class $className
|
|
$wmiObj.UpdateScanMethod()
|
|
return $true
|
|
}
|
|
catch {
|
|
return $false
|
|
}
|
|
}
|