New
#1210
I made a small script to find out all MDM_Dev classes (highlighted in screenshot) and tested them one by one. All of them work, except the one I would need to work.
Script:
Code:$x = 0 $WMIClasses = Get-WmiObject -Namespace root/cimv2/mdm/dmmap -List | Where-Object {$_.name -Match 'MDM_Dev'} Foreach ($Class in $WMIClasses) {$Class.name; $x++} Write-Host $x | Select Name
An example, showing MDM_DevDetail which works as it should giving information it should give, and MDM_DevDetail_Ext01 which fails:
![]()