![]() |
|
|
|||||||
![]() |
Wireless Networking - WPS - Read Zero Config Wireless Profiles |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
I am trying to read the list of SSIDs stored in the Zero Config's preferred
network list. I believe this is possible through WPS - IProvisioningDomain::Querry. But I am not able to find any example for this. It would be helpful if you could direct me to a sample. Thanks, Priya =?Utf-8?B?UHJpa2tv?= |
|
|
|
|
#2 |
|
Posts: n/a
|
Did you downloaded WSPDDK with example of Query in it ?
http://www.microsoft.com/whdc/device...eless/wps.mspx Arkady "Prikko" <> wrote in message news:C1AF1CCA-50B3-441C-BEE4-... >I am trying to read the list of SSIDs stored in the Zero Config's preferred > network list. I believe this is possible through WPS - > IProvisioningDomain::Querry. But I am not able to find any example for > this. > It would be helpful if you could direct me to a sample. > > Thanks, > Priya Arkady Frenkel |
|
|
|
#3 |
|
Posts: n/a
|
Thanks. I will check it out.
"Arkady Frenkel" wrote: > Did you downloaded WSPDDK with example of Query in it ? > http://www.microsoft.com/whdc/device...eless/wps.mspx > Arkady > > "Prikko" <> wrote in message > news:C1AF1CCA-50B3-441C-BEE4-... > >I am trying to read the list of SSIDs stored in the Zero Config's preferred > > network list. I believe this is possible through WPS - > > IProvisioningDomain::Querry. But I am not able to find any example for > > this. > > It would be helpful if you could direct me to a sample. > > > > Thanks, > > Priya > > > =?Utf-8?B?UHJpa2tv?= |
|
|
|
#4 |
|
Posts: n/a
|
WPS is an component which is built into the WZCSVC service to support
"hotspot" technologies. The WPSDDK documentation does not describe how to extract SSIDs but how to add or query your own hotspot XML files on a client. WPS is a something which you'd probably not need to examine unless you're a hotspot provider yourself. There is one exception to this statement: there is an API "CreateProfile" included in the WPS documentation which you can use to create a wireless profile in the preferred list. Note, this will not satisfy your initial problem but I may have a workaround solution. Personally, I don't know of a publicly documented API to extract the properties of a wireless profile in XPSP2. So my suggestion to find the list of preferred SSIDs is through the logs created by the wireless service. If you enable wireless tracing: C:\>netsh ras set tracing WZCTrace enable you'll create a %SystemDrive%\Windows\Tracing\WZCTrace.log file which is spew generated from the WZCSVC service. You can parse this log file for the SSIDs scanned based on the preferred list. This list will provide you with the basic properties (read, SSID) of the preferred network list. -- Oliver This posting is provided "AS IS", with NO warranties and confers NO rights ----------------------------------------------------------------------------- "Arkady Frenkel" <> wrote in message news:%... > Did you downloaded WSPDDK with example of Query in it ? > http://www.microsoft.com/whdc/device...eless/wps.mspx > Arkady > > "Prikko" <> wrote in message > news:C1AF1CCA-50B3-441C-BEE4-... >>I am trying to read the list of SSIDs stored in the Zero Config's >>preferred >> network list. I believe this is possible through WPS - >> IProvisioningDomain::Querry. But I am not able to find any example for >> this. >> It would be helpful if you could direct me to a sample. >> >> Thanks, >> Priya > > Oliver Saal [MS] |
|
|
|
#5 |
|
Posts: n/a
|
Oliver,
Thanks for your detailed response. All I want is the names of the wireless profiles in the preferred list. Does WZCSVC store the XML file in any specific path/location. In that case, I can probably try parsing the XML file using an XML parser to extract the preferred list. Please let me know. Thanks, Priya "Oliver Saal [MS]" wrote: > WPS is an component which is built into the WZCSVC service to support > "hotspot" technologies. The WPSDDK documentation does not describe how to > extract SSIDs but how to add or query your own hotspot XML files on a > client. WPS is a something which you'd probably not need to examine unless > you're a hotspot provider yourself. There is one exception to this > statement: there is an API "CreateProfile" included in the WPS documentation > which you can use to create a wireless profile in the preferred list. Note, > this will not satisfy your initial problem but I may have a workaround > solution. > > Personally, I don't know of a publicly documented API to extract the > properties of a wireless profile in XPSP2. So my suggestion to find the list > of preferred SSIDs is through the logs created by the wireless service. If > you enable wireless tracing: > > C:\>netsh ras set tracing WZCTrace enable > > you'll create a %SystemDrive%\Windows\Tracing\WZCTrace.log file which is > spew generated from the WZCSVC service. You can parse this log file for the > SSIDs scanned based on the preferred list. This list will provide you with > the basic properties (read, SSID) of the preferred network list. > > -- > Oliver > This posting is provided "AS IS", with NO warranties and confers NO rights > ----------------------------------------------------------------------------- > > "Arkady Frenkel" <> wrote in message > news:%... > > Did you downloaded WSPDDK with example of Query in it ? > > http://www.microsoft.com/whdc/device...eless/wps.mspx > > Arkady > > > > "Prikko" <> wrote in message > > news:C1AF1CCA-50B3-441C-BEE4-... > >>I am trying to read the list of SSIDs stored in the Zero Config's > >>preferred > >> network list. I believe this is possible through WPS - > >> IProvisioningDomain::Querry. But I am not able to find any example for > >> this. > >> It would be helpful if you could direct me to a sample. > >> > >> Thanks, > >> Priya > > > > > > > =?Utf-8?B?UHJpa2tv?= |
|
|
|
#6 |
|
Posts: n/a
|
I see that the preferred network list is present under-
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WZCSVC\Param eters\Interfaces\{interface GUID}] There is a registry value "Static#....". This is REG_BINARY and has the preferred network name. Is the structure of this registry value available? If so, I can extract the preferred nw ssid from this. Please help. Thanks, Priya "Oliver Saal [MS]" wrote: > WPS is an component which is built into the WZCSVC service to support > "hotspot" technologies. The WPSDDK documentation does not describe how to > extract SSIDs but how to add or query your own hotspot XML files on a > client. WPS is a something which you'd probably not need to examine unless > you're a hotspot provider yourself. There is one exception to this > statement: there is an API "CreateProfile" included in the WPS documentation > which you can use to create a wireless profile in the preferred list. Note, > this will not satisfy your initial problem but I may have a workaround > solution. > > Personally, I don't know of a publicly documented API to extract the > properties of a wireless profile in XPSP2. So my suggestion to find the list > of preferred SSIDs is through the logs created by the wireless service. If > you enable wireless tracing: > > C:\>netsh ras set tracing WZCTrace enable > > you'll create a %SystemDrive%\Windows\Tracing\WZCTrace.log file which is > spew generated from the WZCSVC service. You can parse this log file for the > SSIDs scanned based on the preferred list. This list will provide you with > the basic properties (read, SSID) of the preferred network list. > > -- > Oliver > This posting is provided "AS IS", with NO warranties and confers NO rights > ----------------------------------------------------------------------------- > > "Arkady Frenkel" <> wrote in message > news:%... > > Did you downloaded WSPDDK with example of Query in it ? > > http://www.microsoft.com/whdc/device...eless/wps.mspx > > Arkady > > > > "Prikko" <> wrote in message > > news:C1AF1CCA-50B3-441C-BEE4-... > >>I am trying to read the list of SSIDs stored in the Zero Config's > >>preferred > >> network list. I believe this is possible through WPS - > >> IProvisioningDomain::Querry. But I am not able to find any example for > >> this. > >> It would be helpful if you could direct me to a sample. > >> > >> Thanks, > >> Priya > > > > > > > =?Utf-8?B?UHJpeWtv?= |
|
|
|
#7 |
|
Posts: n/a
|
This registry key is not public because it structure and contents change
quite frequently. This would not be a suggestable method to obtain preferred list entries. With some simple parsing logic you find your preferred networks list in the WZCTRACE.LOG. You are looking for a set of strings like this: [2752] 10:26:16:189: [WZCCopySelectedConfigs(02E9EEE8->4/4, 0) [2752] 10:26:16:189: WZCCopySelectedConfigs[2]: SSID=<9:MyNetwork> From List [2752] 10:26:16:189: WZCCopySelectedConfigs[0]: SSID=<11:AnotherSSID> From List [2752] 10:26:16:189: WZCCopySelectedConfigs[1]: SSID=<9:ThirdSSID> From List [2752] 10:26:16:189: WZCCopySelectedConfigs[3]: SSID=<8:HomeSSID> From List [2752] 10:26:16:189: WZCCopySelectedConfigs]=0, NumCopied=<4>, Index=<4/4> Does this help narrow down your search? -- Jerry Peterson Windows Network Services - Wireless This posting is provided "AS IS" with no warranties, and confers no rights. "Priyko" <> wrote in message news:022CF49F-B122-4F54-B38C-... >I see that the preferred network list is present under- > > [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WZCSVC\Param eters\Interfaces\{interface > GUID}] > > There is a registry value "Static#....". This is REG_BINARY and has the > preferred network name. Is the structure of this registry value available? > If > so, I can extract the preferred nw ssid from this. Please help. > > Thanks, > Priya > > "Oliver Saal [MS]" wrote: > >> WPS is an component which is built into the WZCSVC service to support >> "hotspot" technologies. The WPSDDK documentation does not describe how to >> extract SSIDs but how to add or query your own hotspot XML files on a >> client. WPS is a something which you'd probably not need to examine >> unless >> you're a hotspot provider yourself. There is one exception to this >> statement: there is an API "CreateProfile" included in the WPS >> documentation >> which you can use to create a wireless profile in the preferred list. >> Note, >> this will not satisfy your initial problem but I may have a workaround >> solution. >> >> Personally, I don't know of a publicly documented API to extract the >> properties of a wireless profile in XPSP2. So my suggestion to find the >> list >> of preferred SSIDs is through the logs created by the wireless service. >> If >> you enable wireless tracing: >> >> C:\>netsh ras set tracing WZCTrace enable >> >> you'll create a %SystemDrive%\Windows\Tracing\WZCTrace.log file which is >> spew generated from the WZCSVC service. You can parse this log file for >> the >> SSIDs scanned based on the preferred list. This list will provide you >> with >> the basic properties (read, SSID) of the preferred network list. >> >> -- >> Oliver >> This posting is provided "AS IS", with NO warranties and confers NO >> rights >> ----------------------------------------------------------------------------- >> >> "Arkady Frenkel" <> wrote in message >> news:%... >> > Did you downloaded WSPDDK with example of Query in it ? >> > http://www.microsoft.com/whdc/device...eless/wps.mspx >> > Arkady >> > >> > "Prikko" <> wrote in message >> > news:C1AF1CCA-50B3-441C-BEE4-... >> >>I am trying to read the list of SSIDs stored in the Zero Config's >> >>preferred >> >> network list. I believe this is possible through WPS - >> >> IProvisioningDomain::Querry. But I am not able to find any example for >> >> this. >> >> It would be helpful if you could direct me to a sample. >> >> >> >> Thanks, >> >> Priya >> > >> > >> >> >> Jerry Peterson[MSFT] |
|
|
|
#8 |
|
Posts: n/a
|
Jerry,
Thanks for the reply. My concerns in doing this are- 1. My application would have to enable tracing and the user could turn off tracing anytime. In that case I might not be guaranteed to get the preferred list whenever I query. 2. If tracing is not enabled and I just enable tracing, I am not sure the trace file will contain preferred list..meaning- I would have to wait for WZCSVC to update the trace file before I can get the preferred list. 3. The trace file could be large and parsing might not be very efficient method to get the preferred list. Especially since the log file becomes huge with time and my app would need this info more than once. Instead is it possible to directly parse the XML file where WZC stores the profiles? Thanks again, Priya "Jerry Peterson[MSFT]" wrote: > This registry key is not public because it structure and contents change > quite frequently. This would not be a suggestable method to obtain > preferred list entries. > > With some simple parsing logic you find your preferred networks list in the > WZCTRACE.LOG. You are looking for a set of strings like this: > > [2752] 10:26:16:189: [WZCCopySelectedConfigs(02E9EEE8->4/4, 0) > [2752] 10:26:16:189: WZCCopySelectedConfigs[2]: SSID=<9:MyNetwork> From > List > [2752] 10:26:16:189: WZCCopySelectedConfigs[0]: SSID=<11:AnotherSSID> From > List > [2752] 10:26:16:189: WZCCopySelectedConfigs[1]: SSID=<9:ThirdSSID> From > List > [2752] 10:26:16:189: WZCCopySelectedConfigs[3]: SSID=<8:HomeSSID> From > List > [2752] 10:26:16:189: WZCCopySelectedConfigs]=0, NumCopied=<4>, Index=<4/4> > > Does this help narrow down your search? > > -- > Jerry Peterson > Windows Network Services - Wireless > > This posting is provided "AS IS" with no warranties, and confers no rights. > "Priyko" <> wrote in message > news:022CF49F-B122-4F54-B38C-... > >I see that the preferred network list is present under- > > > > [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WZCSVC\Param eters\Interfaces\{interface > > GUID}] > > > > There is a registry value "Static#....". This is REG_BINARY and has the > > preferred network name. Is the structure of this registry value available? > > If > > so, I can extract the preferred nw ssid from this. Please help. > > > > Thanks, > > Priya > > > > "Oliver Saal [MS]" wrote: > > > >> WPS is an component which is built into the WZCSVC service to support > >> "hotspot" technologies. The WPSDDK documentation does not describe how to > >> extract SSIDs but how to add or query your own hotspot XML files on a > >> client. WPS is a something which you'd probably not need to examine > >> unless > >> you're a hotspot provider yourself. There is one exception to this > >> statement: there is an API "CreateProfile" included in the WPS > >> documentation > >> which you can use to create a wireless profile in the preferred list. > >> Note, > >> this will not satisfy your initial problem but I may have a workaround > >> solution. > >> > >> Personally, I don't know of a publicly documented API to extract the > >> properties of a wireless profile in XPSP2. So my suggestion to find the > >> list > >> of preferred SSIDs is through the logs created by the wireless service. > >> If > >> you enable wireless tracing: > >> > >> C:\>netsh ras set tracing WZCTrace enable > >> > >> you'll create a %SystemDrive%\Windows\Tracing\WZCTrace.log file which is > >> spew generated from the WZCSVC service. You can parse this log file for > >> the > >> SSIDs scanned based on the preferred list. This list will provide you > >> with > >> the basic properties (read, SSID) of the preferred network list. > >> > >> -- > >> Oliver > >> This posting is provided "AS IS", with NO warranties and confers NO > >> rights > >> ----------------------------------------------------------------------------- > >> > >> "Arkady Frenkel" <> wrote in message > >> news:%... > >> > Did you downloaded WSPDDK with example of Query in it ? > >> > http://www.microsoft.com/whdc/device...eless/wps.mspx > >> > Arkady > >> > > >> > "Prikko" <> wrote in message > >> > news:C1AF1CCA-50B3-441C-BEE4-... > >> >>I am trying to read the list of SSIDs stored in the Zero Config's > >> >>preferred > >> >> network list. I believe this is possible through WPS - > >> >> IProvisioningDomain::Querry. But I am not able to find any example for > >> >> this. > >> >> It would be helpful if you could direct me to a sample. > >> >> > >> >> Thanks, > >> >> Priya > >> > > >> > > >> > >> > >> > > > =?Utf-8?B?UHJpeWtv?= |
|
|
|
#9 |
|
Posts: n/a
|
Jerry,
Is it possible to parse the XML file where zero config stores the profiles directly? Parsing the trace to get preferred networks might not work for me (for reasons mentioned below). Thanks, Priya "Priyko" wrote: > Jerry, > > Thanks for the reply. My concerns in doing this are- > > 1. My application would have to enable tracing and the user could turn off > tracing anytime. In that case I might not be guaranteed to get the preferred > list whenever I query. > > 2. If tracing is not enabled and I just enable tracing, I am not sure the > trace file will contain preferred list..meaning- I would have to wait for > WZCSVC to update the trace file before I can get the preferred list. > > 3. The trace file could be large and parsing might not be very efficient > method to get the preferred list. Especially since the log file becomes huge > with time and my app would need this info more than once. > > Instead is it possible to directly parse the XML file where WZC stores the > profiles? > > Thanks again, > Priya > > "Jerry Peterson[MSFT]" wrote: > > > This registry key is not public because it structure and contents change > > quite frequently. This would not be a suggestable method to obtain > > preferred list entries. > > > > With some simple parsing logic you find your preferred networks list in the > > WZCTRACE.LOG. You are looking for a set of strings like this: > > > > [2752] 10:26:16:189: [WZCCopySelectedConfigs(02E9EEE8->4/4, 0) > > [2752] 10:26:16:189: WZCCopySelectedConfigs[2]: SSID=<9:MyNetwork> From > > List > > [2752] 10:26:16:189: WZCCopySelectedConfigs[0]: SSID=<11:AnotherSSID> From > > List > > [2752] 10:26:16:189: WZCCopySelectedConfigs[1]: SSID=<9:ThirdSSID> From > > List > > [2752] 10:26:16:189: WZCCopySelectedConfigs[3]: SSID=<8:HomeSSID> From > > List > > [2752] 10:26:16:189: WZCCopySelectedConfigs]=0, NumCopied=<4>, Index=<4/4> > > > > Does this help narrow down your search? > > > > -- > > Jerry Peterson > > Windows Network Services - Wireless > > > > This posting is provided "AS IS" with no warranties, and confers no rights. > > "Priyko" <> wrote in message > > news:022CF49F-B122-4F54-B38C-... > > >I see that the preferred network list is present under- > > > > > > [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WZCSVC\Param eters\Interfaces\{interface > > > GUID}] > > > > > > There is a registry value "Static#....". This is REG_BINARY and has the > > > preferred network name. Is the structure of this registry value available? > > > If > > > so, I can extract the preferred nw ssid from this. Please help. > > > > > > Thanks, > > > Priya > > > > > > "Oliver Saal [MS]" wrote: > > > > > >> WPS is an component which is built into the WZCSVC service to support > > >> "hotspot" technologies. The WPSDDK documentation does not describe how to > > >> extract SSIDs but how to add or query your own hotspot XML files on a > > >> client. WPS is a something which you'd probably not need to examine > > >> unless > > >> you're a hotspot provider yourself. There is one exception to this > > >> statement: there is an API "CreateProfile" included in the WPS > > >> documentation > > >> which you can use to create a wireless profile in the preferred list. > > >> Note, > > >> this will not satisfy your initial problem but I may have a workaround > > >> solution. > > >> > > >> Personally, I don't know of a publicly documented API to extract the > > >> properties of a wireless profile in XPSP2. So my suggestion to find the > > >> list > > >> of preferred SSIDs is through the logs created by the wireless service. > > >> If > > >> you enable wireless tracing: > > >> > > >> C:\>netsh ras set tracing WZCTrace enable > > >> > > >> you'll create a %SystemDrive%\Windows\Tracing\WZCTrace.log file which is > > >> spew generated from the WZCSVC service. You can parse this log file for > > >> the > > >> SSIDs scanned based on the preferred list. This list will provide you > > >> with > > >> the basic properties (read, SSID) of the preferred network list. > > >> > > >> -- > > >> Oliver > > >> This posting is provided "AS IS", with NO warranties and confers NO > > >> rights > > >> ----------------------------------------------------------------------------- > > >> > > >> "Arkady Frenkel" <> wrote in message > > >> news:%... > > >> > Did you downloaded WSPDDK with example of Query in it ? > > >> > http://www.microsoft.com/whdc/device...eless/wps.mspx > > >> > Arkady > > >> > > > >> > "Prikko" <> wrote in message > > >> > news:C1AF1CCA-50B3-441C-BEE4-... > > >> >>I am trying to read the list of SSIDs stored in the Zero Config's > > >> >>preferred > > >> >> network list. I believe this is possible through WPS - > > >> >> IProvisioningDomain::Querry. But I am not able to find any example for > > >> >> this. > > >> >> It would be helpful if you could direct me to a sample. > > >> >> > > >> >> Thanks, > > >> >> Priya > > >> > > > >> > > > >> > > >> > > >> > > > > > > =?Utf-8?B?UHJpeWtv?= |
|
|
|
#10 |
|
Posts: n/a
|
No it is not possible because the Profiles are not stored in XML format.
XML format can be used for operations with the Provisioning API, but the wireless service uses a unique structure in the profile store. Direct modification of the profile store is not a method I can advocate or recommend. -- Jerry Peterson Windows Network Services - Wireless This posting is provided "AS IS" with no warranties, and confers no rights. "Priyko" <> wrote in message news:07352B21-BEE7-4F68-A842-... > Jerry, > > Is it possible to parse the XML file where zero config stores the profiles > directly? Parsing the trace to get preferred networks might not work for > me > (for reasons mentioned below). > > Thanks, > Priya > > > "Priyko" wrote: > >> Jerry, >> >> Thanks for the reply. My concerns in doing this are- >> >> 1. My application would have to enable tracing and the user could turn >> off >> tracing anytime. In that case I might not be guaranteed to get the >> preferred >> list whenever I query. >> >> 2. If tracing is not enabled and I just enable tracing, I am not sure the >> trace file will contain preferred list..meaning- I would have to wait for >> WZCSVC to update the trace file before I can get the preferred list. >> >> 3. The trace file could be large and parsing might not be very efficient >> method to get the preferred list. Especially since the log file becomes >> huge >> with time and my app would need this info more than once. >> >> Instead is it possible to directly parse the XML file where WZC stores >> the >> profiles? >> >> Thanks again, >> Priya >> >> "Jerry Peterson[MSFT]" wrote: >> >> > This registry key is not public because it structure and contents >> > change >> > quite frequently. This would not be a suggestable method to obtain >> > preferred list entries. >> > >> > With some simple parsing logic you find your preferred networks list in >> > the >> > WZCTRACE.LOG. You are looking for a set of strings like this: >> > >> > [2752] 10:26:16:189: [WZCCopySelectedConfigs(02E9EEE8->4/4, 0) >> > [2752] 10:26:16:189: WZCCopySelectedConfigs[2]: SSID=<9:MyNetwork> >> > From >> > List >> > [2752] 10:26:16:189: WZCCopySelectedConfigs[0]: SSID=<11:AnotherSSID> >> > From >> > List >> > [2752] 10:26:16:189: WZCCopySelectedConfigs[1]: SSID=<9:ThirdSSID> >> > From >> > List >> > [2752] 10:26:16:189: WZCCopySelectedConfigs[3]: SSID=<8:HomeSSID> >> > From >> > List >> > [2752] 10:26:16:189: WZCCopySelectedConfigs]=0, NumCopied=<4>, >> > Index=<4/4> >> > >> > Does this help narrow down your search? >> > >> > -- >> > Jerry Peterson >> > Windows Network Services - Wireless >> > >> > This posting is provided "AS IS" with no warranties, and confers no >> > rights. >> > "Priyko" <> wrote in message >> > news:022CF49F-B122-4F54-B38C-... >> > >I see that the preferred network list is present under- >> > > >> > > [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WZCSVC\Param eters\Interfaces\{interface >> > > GUID}] >> > > >> > > There is a registry value "Static#....". This is REG_BINARY and has >> > > the >> > > preferred network name. Is the structure of this registry value >> > > available? >> > > If >> > > so, I can extract the preferred nw ssid from this. Please help. >> > > >> > > Thanks, >> > > Priya >> > > >> > > "Oliver Saal [MS]" wrote: >> > > >> > >> WPS is an component which is built into the WZCSVC service to >> > >> support >> > >> "hotspot" technologies. The WPSDDK documentation does not describe >> > >> how to >> > >> extract SSIDs but how to add or query your own hotspot XML files on >> > >> a >> > >> client. WPS is a something which you'd probably not need to examine >> > >> unless >> > >> you're a hotspot provider yourself. There is one exception to this >> > >> statement: there is an API "CreateProfile" included in the WPS >> > >> documentation >> > >> which you can use to create a wireless profile in the preferred >> > >> list. >> > >> Note, >> > >> this will not satisfy your initial problem but I may have a >> > >> workaround >> > >> solution. >> > >> >> > >> Personally, I don't know of a publicly documented API to extract the >> > >> properties of a wireless profile in XPSP2. So my suggestion to find >> > >> the >> > >> list >> > >> of preferred SSIDs is through the logs created by the wireless >> > >> service. >> > >> If >> > >> you enable wireless tracing: >> > >> >> > >> C:\>netsh ras set tracing WZCTrace enable >> > >> >> > >> you'll create a %SystemDrive%\Windows\Tracing\WZCTrace.log file >> > >> which is >> > >> spew generated from the WZCSVC service. You can parse this log file >> > >> for >> > >> the >> > >> SSIDs scanned based on the preferred list. This list will provide >> > >> you >> > >> with >> > >> the basic properties (read, SSID) of the preferred network list. >> > >> >> > >> -- >> > >> Oliver >> > >> This posting is provided "AS IS", with NO warranties and confers NO >> > >> rights >> > >> ----------------------------------------------------------------------------- >> > >> >> > >> "Arkady Frenkel" <> wrote in message >> > >> news:%... >> > >> > Did you downloaded WSPDDK with example of Query in it ? >> > >> > http://www.microsoft.com/whdc/device...eless/wps.mspx >> > >> > Arkady >> > >> > >> > >> > "Prikko" <> wrote in message >> > >> > news:C1AF1CCA-50B3-441C-BEE4-... >> > >> >>I am trying to read the list of SSIDs stored in the Zero Config's >> > >> >>preferred >> > >> >> network list. I believe this is possible through WPS - >> > >> >> IProvisioningDomain::Querry. But I am not able to find any >> > >> >> example for >> > >> >> this. >> > >> >> It would be helpful if you could direct me to a sample. >> > >> >> >> > >> >> Thanks, >> > >> >> Priya >> > >> > >> > >> > >> > >> >> > >> >> > >> >> > >> > >> > Jerry Peterson[MSFT] |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Help with 877W wireless.....nearly there :o) | djhopps | Hardware | 0 | 10-06-2008 10:45 AM |
| Setting up a Network -- Wired or Wireless? | shopzero.net | DVD Video | 1 | 07-24-2006 07:18 PM |
| Re: adding wireless to a wired network | AG | A+ Certification | 3 | 01-14-2005 08:52 AM |
| Re: adding wireless to a wired network | Remo | A+ Certification | 0 | 01-07-2005 06:31 PM |
| You MUST Watch This Before You Vote - Esteemed Shrink Profiles Bush | Barney Lyon | DVD Video | 13 | 11-02-2004 06:21 PM |