2

I am setting up a restricted WMI group that should be able to read WMI information from my remote hosts.

I have the group set up as member of the remote DCOM and performance monitor groups. I also have the Execute, Enable and Remote Enable set in the WMI control interface.

The values I get if I run this from a full admin look like the following.

PS Get-WmiObject Win32_LogicalDisk -computername myhost


DeviceID     : M:
DriveType    : 3
ProviderName :
FreeSpace    : 2279043964928
Size         : 3790830256128
VolumeName   : Static Data

Run from the same server using the restricted account I'm getting the following:

DeviceID     : M:
DriveType    : 3
ProviderName : 
FreeSpace    : 
Size         : 
VolumeName   : 

My best guess is that there is an additional level of security I need to set but I don't have any idea where.

Suggestions?

EDIT: Looks like this issue only crops up on 2003 hosts and then only on specific disks.

Tim Brigham
  • 15,545
  • 10
  • 75
  • 115

1 Answers1

2

Check the ACL on the root of the drive, it's often overlooked and can cause issues like this. I have seen this a few times with our monitoring software - though we're not using WMI to query the drive stats.

Lucky Luke
  • 1,634
  • 1
  • 11
  • 12