i want to call the netsh command from .net, i am using the Process class to initiate the process which calls the netsh command, and its working fine, now i want to get the output returned by the netsh command in .net, for example i am calling the below command in Process:

netsh wlan show hostednetwork

this is returning me the list of active hostednetwork, how can i read the list in .net can anyone assist me or take me to the right path, i don't want to use any third party tools.


UPDATES Below is my return output using netsh wlan show hostednetwork command

Hosted network settings

Mode                   : Allowed
SSID name              : "AqaMaula(TUS)"
Max number of clients  : 100
Authentication         : WPA2-Personal
Cipher                 : CCMP

Hosted network status

Status                 : Started
BSSID                  : 06:65:9d:26:f4:b7
Radio type             : 802.11n
Channel                : 11
Number of clients      : 1
    d0:c1:b1:44:8b:f0        Authenticated

can anyone tell me how can i get all individual data and put them in database like, Mode, SSID Name, etc(individually)

link|improve this question

68% accept rate
feedback

4 Answers

Use the StandardOutput property of the Process class.
The above linked MSDN page comes with a simple example of how to use StandardOutput.

link|improve this answer
feedback

You need to set StartInfo.UseShellExecute to false and RedirectStandardOutput to true before starting the process, and then read from Process.StandardOutput.

All documented on MSDN here: http://msdn.microsoft.com/en-us/library/system.diagnostics.process.standardoutput.aspx

link|improve this answer
feedback

Here is the code:

Process cmdUtility = new Process
    {
        StartInfo =
            {
                FileName = "netsh",
                Arguments = "wlan show hostednetwork",
                UseShellExecute = false,
                RedirectStandardOutput = true
            }
    };
cmdUtility.Start();

Console.WriteLine(cmdUtility.StandardOutput.ReadToEnd());

cmdUtility.WaitForExit();

Update

I think you should use Managed Wifi API framework instead of parsing results of command line utility. It is more reliable way. Take a look at the sources, they contain WifiExample.

link|improve this answer
thanks for your help, i have updated my question can you help me – Abbas Feb 14 at 19:40
@Abbas, I've updated the answer. – Serge Feb 15 at 6:26
1  
@Abbas, please also take a look at How do I get the available wifi APs and their signal strength in .net?. – Serge Feb 15 at 6:43
feedback

It should be something like this:

//@param output The output captured from the netsh command in String format
//@param key The key you are trying to find (in your example "Mode")
public String getValue(String output, String key) {
    MatchCollection matches;
    Regex rx = new Regex(@"(?<key>[A-Za-z0-0 ]+)\t\:\s(?<value>[.]+)");
    matches = rx.Matches(output);

    foreach (Match match in matches) {
        GroupCollection groups = match.Groups;

        if (groups["key"] == key) {
            return groups["value"];
        }
    }
}

Unfortunately, I can't test it atm to fix any small bugs.

Also, if you are going to reference them often, I'd place them into a Dictionary after parsing, to decrease lookup time.

link|improve this answer
thanks for your help, i have updated my question can you help me – Abbas Feb 14 at 19:41
can you give an example say for example i want to get the value of mode – Abbas Feb 14 at 20:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.