Knows somebody how to do a 'NET VIEW' with the .Net framework / ASP.NET?
Using WMI? Capturing DOS output? Or are there any useful classes?
thanks
Eric
Eric,
I don't think that you can use WMI here, as WMI is only going to give
you the domain that the current machine is a part of. There might be a WMI
query you could execute against the domain controller for this, but I am not
sure.
You can call the API function WNetEnumResource API function in order to
do this.
--
- Nicholas Paldino [.NET/C# MVP]
- m@spam.guard.caspershouse.com
"Eric" <E
@newsgroups.nospam> wrote in message
news:28297AD7-74D8-4F96-A0A9-A0E216D5D9A5@microsoft.com...
> Knows somebody how to do a 'NET VIEW' with the .Net framework / ASP.NET?
> Using WMI? Capturing DOS output? Or are there any useful classes?
> thanks
> Eric
Hi Eric,
The NET VIEW command can be simulated using API WNetOpenEnum and
WNetEnumerateResource; here's an example in C#:
#Enumerating Network Resources - The Code Project - C# Programming
http://www.codeproject.com/csharp/csenumnetworkresources.asp
Hope this helps.
Regards,
Walter Wang (waw@online.microsoft.com, remove 'online.')
Microsoft Online Community Support
==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.