Reputation: 37850
I need to be able to find, for all users on a given remote machine, those users' disk quotas and actual disk usage. I need to be able to do this reporting in a C# application. (Well, technically a DLL plugin for an app I've already built; but that's irrelevant here.)
System.Management.*
objects.)Upvotes: 2
Views: 2348
Reputation: 60190
The WMI class is Win32_DiskQuota. Edit: I found a VB.NET sample which may help you.
Or you can try to do this using P/Invoke (link goes to the P/Invoke wiki, where you may find some of the signatures). A pointer to start with quotas is the following CodeProject article: http://www.codeproject.com/KB/system/DiskQuota.aspx
Upvotes: 3