- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
How to Turn on and Turn off radio(Wifi )
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
December 13 2010 10:33 AM
Hi Guys,
I need help one more time.
I developed a aplication for configure Wifi using Communication Resource Kit, I posted any doubts here.
In this moment my problem is how to turn on and Turn of Radio(WIFI) is possible to do this using Communications Resource Kit?
Thanks
Danilo Silva
Re: How to Turn on and Turn off radio(Wifi )
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
December 14 2010 03:49 AM
There are several posts on the Dev Forum that describe how to enable/disable Wi-Fi. Do a search of "WLAN off" and then take a look at some of the posts that come back.
Re: How to Turn on and Turn off radio(Wifi )
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
December 15 2010 12:18 PM
Hi GeorgeBrown,
Before of post this topic, I searched for "WLAN ON/OFF", "WIFI ON/OFF", "how to disable wifi with Communications Resourse Kit" and I read manual, but I did not find that.
I need of a way to do that using Communications Resourse Kit.
Re: How to Turn on and Turn off radio(Wifi )
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
December 15 2010 08:19 PM
Hello
the communications resource kit provides two network tools functions for this:
LoadNetworkDevice
Loads the specified network device. Can also load the specified device whether or not another device is present.
UnloadNetworkDevice
Unloads the specified device. Can also unload the specified device only if it is present.
See the document Communications_Resource_Kit.chm for all functions provided by the CRK
You may also use the Device Management Resource Kit and disable/enable the 802.11 adapter.
<?xml version="1.0" encoding="UTF-8"?>
<DevInfo Action="Set" Persist="true">
<Subsystem Name="Communications">
<Group Name="802.11 Radio">
<Field Name="Radio Enabled">1</Field>
</Group>
</Group>
</Subsystem>
</DevInfo>
Use this as xml file for ITCSSAPI.ConfigFromFile or without the <xml and DevInfo lines for ITCSSAPI.Set
-------------==========================--------------
See all my tips and tools at hxxp://www.hjgode.de/dev
and the NEW http://www.hjgode.de/wp
code at google com:
http://code.google.com/p/itc-keyboard/
http://code.google.com/p/rdesktop-ce/
http://code.google.com/p/win-mobile-code/source/browse/#svn%2Ftrunk

