Click here to Skip to main content
15,886,816 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionusing managementobject Pin
akshayswaroop4-Oct-05 19:33
akshayswaroop4-Oct-05 19:33 
Hi!
I am having a typical problem ,I am using management classes to get the path for shared folders and files of the system.The code is working fine for console and winforms,but it is not working for web applications.I have tried giving admin rights to aspnet account,but the problem remains there.Please help

ManagementObjectSearcher searcher1=null;
searcher1=new ManagementObjectSearcher("SELECT * FROM Win32_Share");
try
{
foreach(ManagementObject share in searcher1.Get())
{
s=share["Path"].ToString();//for asp.net pages giving null obj ref exception

}
AnswerRe: using managementobject Pin
minhpc_bk4-Oct-05 22:35
minhpc_bk4-Oct-05 22:35 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.