I have a network profile for a 802.x network which works just fine when run from a batch file or cmd: wlan add profile filename="config.xml" So I thought I might as well do this on my C# programme by running a Process: Process process = new Process() { StartInfo = [...] read more
I want to import a xml files with wifi settings. I run: netsh wlan add profile test.xml And get the error message: 0x80420011 The network connection profile is corrupted. But I get no line number where the xml file should be corrupted. Is there a tool which checks errors and [...] read more