forked from extern/BloatyNosy
4 lines
212 B
PowerShell
4 lines
212 B
PowerShell
|
$namespaceName = "root\cimv2\mdm\dmmap"
|
||
|
$className = "MDM_EnterpriseModernAppManagement_AppManagement01"
|
||
|
$wmiObj = Get-WmiObject -Namespace $namespaceName -Class $className
|
||
|
$result = $wmiObj.UpdateScanMethod()
|