<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Enable/Disable Wireless LAN Radio via command-line in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869320#M8399</link>
    <description>&lt;P&gt;Thanks, Bill. I'll download the cli version of Device Manager and start testing. &lt;/P&gt;
&lt;P&gt;- Christopher&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 05 May 2007 22:50:45 GMT</pubDate>
    <dc:creator>cluther962</dc:creator>
    <dc:date>2007-05-05T22:50:45Z</dc:date>
    <item>
      <title>Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869312#M8391</link>
      <description>&lt;P&gt;I have been researching this topic for some time now. I need to be able to enable wireless for my users while they are on the road - many hotels and other locations only provide wireless connectivity. Because an active radio is a security risk, I want to disable them all of the time except when a user specifically enables them.&lt;/P&gt;
&lt;P&gt;I've determined that I can do this with logon/logoff and startup/shutdown scripts on XP if I can disable the 2200BG or 3945ABG radio via the command-line. Not all of my laptops support a key-style disabling of the radio (nor do I trust my users to remember to turn their radios off when they are finished).&lt;/P&gt;
&lt;P&gt;My point - I have been looking for an applet or hook into a DLL that would allow me to shut the Intel radio off. I've downloaded the Mobile SDK and tried to write a C# applet that would do this, but it did not work. I know there must be something as when you bring up the hardware properties for the Intel Wireless Device, you can shut the radio on and off from inside that applet. There must be a hook somewhere...&lt;/P&gt;
&lt;P&gt;If you don't mind, please either provide me with an applet that can enable or disable the radio by passing a command-line parameter, or share with me the secret to this.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Scott Foster&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2007 20:36:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869312#M8391</guid>
      <dc:creator>scott_foster</dc:creator>
      <dc:date>2007-04-13T20:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869313#M8392</link>
      <description>&lt;P&gt;Hey, Scott. I'm in the same boat as you. I've created a WMI script that works under Windows Server 2003, Vista, and supposedly Longhorn but the Enable and Disable methods are not available under the Windows XP WMI implementation. &lt;/P&gt;
&lt;P&gt;I'll be watching this thread but would be interested in the C# code you wrote, if you're inclined to share that is. &lt;/P&gt;
&lt;P&gt;Regards, &lt;/P&gt;
&lt;P&gt;- Christopher&lt;/P&gt;</description>
      <pubDate>Tue, 17 Apr 2007 18:33:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869313#M8392</guid>
      <dc:creator>cluther962</dc:creator>
      <dc:date>2007-04-17T18:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869314#M8393</link>
      <description>&lt;P&gt;Christopher,&lt;BR /&gt;I would really like to see the script you wrote, would you mind sharing? I am experiencing something similar.....&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;BR /&gt;Mark&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2007 16:21:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869314#M8393</guid>
      <dc:creator>markndawn</dc:creator>
      <dc:date>2007-04-27T16:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869315#M8394</link>
      <description>&lt;P&gt;Mark, &lt;/P&gt;
&lt;P&gt;As I am unable to attach files to these forum posts, here is the WMI VBscript source to disable a specific Wi-Fi adapter:&lt;/P&gt;
&lt;P&gt;' Script: "Disable Wi-Fi Adapter.vbs"&lt;BR /&gt;' Date: 16-Apr-2007&lt;BR /&gt;'&lt;BR /&gt;' This WMI script enables a specific (e.g., named) Wi-Fi adapter.&lt;BR /&gt;'&lt;/P&gt;
&lt;P&gt;strComputer = "."&lt;BR /&gt;Set objWMIService = GetObject("winmgmts:" &amp;amp; strComputer &amp;amp; "
ootcimv2")&lt;/P&gt;
&lt;P&gt;set colAdapters = objWMIService.Execquery("Select * from Win32_NetworkAdapter")&lt;BR /&gt;For Each Adapter in colAdapters&lt;BR /&gt; WScript.Echo Adapter.DeviceId &amp;amp; " " &amp;amp; Adapter.Name &amp;amp; " " &amp;amp; "Status: " &amp;amp; Adapter.Status&lt;BR /&gt; &lt;BR /&gt; ' Identify the specific adapter to disable&lt;BR /&gt; If Adapter.name = "Dell TrueMobile 1300 WLAN Mini-PCI Card" Then&lt;BR /&gt; &lt;BR /&gt; ' Note: the Disable() method does not exist under Windows XP.&lt;BR /&gt;errReturn = Adapter.Disable()&lt;BR /&gt;If errReturn &amp;lt;&amp;gt; 0 Then&lt;BR /&gt; WScript.Echo "Disable Network adapter failed for adapter: " &amp;amp; Adapter.DeviceId&lt;BR /&gt;Else &lt;BR /&gt; WScript.Echo "Disable Network adapter succeeded for adapter: " &amp;amp; Adapter.DeviceId &lt;BR /&gt;End If &lt;BR /&gt;&lt;BR /&gt;WScript.Echo "NetEnabled: " &amp;amp; Adapter.NetEnabled&lt;BR /&gt; End If&lt;BR /&gt;Next&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;And here is the WMI VBscript source to enable a specific Wi-Fi adapter: &lt;/P&gt;
&lt;P&gt;' Script: "Enable Wi-Fi Adapter.vbs"&lt;BR /&gt;' Date: 16-Apr-2007&lt;BR /&gt;'&lt;BR /&gt;' This WMI script disables a specific (e.g., named) Wi-Fi adapter.&lt;BR /&gt;'&lt;/P&gt;
&lt;P&gt;strComputer = "."&lt;BR /&gt;Set objWMIService = GetObject("winmgmts:" &amp;amp; strComputer &amp;amp; "
ootcimv2")&lt;/P&gt;
&lt;P&gt;set colAdapters = objWMIService.Execquery("Select * from Win32_NetworkAdapter")&lt;BR /&gt;For Each Adapter in colAdapters&lt;BR /&gt; WScript.Echo Adapter.DeviceId &amp;amp; " " &amp;amp; Adapter.Name &amp;amp; " " &amp;amp; "Status: " &amp;amp; Adapter.Status&lt;BR /&gt; &lt;BR /&gt; ' Identify the specific adapter to enable&lt;BR /&gt; If Adapter.name = "Dell TrueMobile 1300 WLAN Mini-PCI Card" Then&lt;BR /&gt; &lt;BR /&gt; ' Note: the Enable() method does not exist under Windows XP.&lt;BR /&gt;errReturn = Adapter.Enable()&lt;BR /&gt;If errReturn &amp;lt;&amp;gt; 0 Then&lt;BR /&gt; WScript.Echo "Enable Network adapter failed for adapter: " &amp;amp; Adapter.DeviceId&lt;BR /&gt;Else &lt;BR /&gt; WScript.Echo "Enable Network adapter succeeded for adapter: " &amp;amp; Adapter.DeviceId &lt;BR /&gt;End If &lt;BR /&gt;&lt;BR /&gt;WScript.Echo "NetEnabled: " &amp;amp; Adapter.NetEnabled&lt;BR /&gt; End If&lt;BR /&gt;Next&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;You could easily modify the script to accept command line parameters so that the functionality is more generic. &lt;/P&gt;
&lt;P&gt;Enjoy!&lt;/P&gt;
&lt;P&gt;- Christopher&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Apr 2007 16:38:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869315#M8394</guid>
      <dc:creator>cluther962</dc:creator>
      <dc:date>2007-04-27T16:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869316#M8395</link>
      <description>&lt;P&gt;Christopher,&lt;/P&gt;
&lt;P&gt;Thank you for the quick response and the code, I really appreciate it....&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2007 11:58:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869316#M8395</guid>
      <dc:creator>markndawn</dc:creator>
      <dc:date>2007-04-30T11:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869317#M8396</link>
      <description>&lt;P&gt;&lt;FONT face="Arial"&gt;Christopher,&lt;BR /&gt;Thanks again for sharing, this was perfect. Where I am there are also Windows 2000 machines (yes, we still have some). As with XP, 2K doesn't support the Win32_NetworkAdapter WMI class.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Arial"&gt;Are you aware of any other methods?&lt;BR /&gt;Thanks again, Mark&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2007 02:18:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869317#M8396</guid>
      <dc:creator>markndawn</dc:creator>
      <dc:date>2007-05-01T02:18:22Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869318#M8397</link>
      <description>&lt;P&gt;Hi, Mark. &lt;/P&gt;
&lt;P&gt;Unfortunately, the WMI implementations under XP and W2K are rather crippled. The only other option I've seen is to attempt to work with the various Wi-Fi card vendors who produce a SDK and attempt to write something specific to an adapter. &lt;/P&gt;
&lt;P&gt;Sorry... &lt;/P&gt;
&lt;P&gt;- Christopher&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 May 2007 16:35:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869318#M8397</guid>
      <dc:creator>cluther962</dc:creator>
      <dc:date>2007-05-01T16:35:23Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869319#M8398</link>
      <description>&lt;P&gt;To do this under Win2k/XP you need to download and use Devcon.exe, a command line&lt;BR /&gt;version of Device Manager: &lt;A href="http://support.microsoft.com/kb/311272"&gt;http://support.microsoft.com/kb/311272&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Place devcon.exe in your PATH, such as WindowsSystem32&lt;/P&gt;
&lt;P&gt;Then you have full access to true Disable/Enable commands for any&lt;BR /&gt;device in your batch file, without user mistakes being a possible&lt;BR /&gt;issue.&lt;/P&gt;
&lt;P&gt;For both .bat or .cmd files, you need to pass the "hwid", which is&lt;BR /&gt;more than a little obscure.&lt;/P&gt;
&lt;P&gt;From a Start, Run, CMD session as Administrator (for XP Home, do this&lt;BR /&gt;with a logon as Administrator in Safe Mode):&lt;/P&gt;
&lt;P&gt;; ask devcon.exe to expose the hwid for all network adapters:&lt;BR /&gt;devcon hwids =net&lt;BR /&gt;;&lt;BR /&gt;; for my notebook it returned four for the wireless card:&lt;BR /&gt; PCIVEN_14E4&amp;amp;DEV_4320&amp;amp;SUBSYS_43201737&amp;amp;REV_03&lt;BR /&gt; PCIVEN_14E4&amp;amp;DEV_4320&amp;amp;SUBSYS_43201737&lt;BR /&gt; PCIVEN_14E4&amp;amp;DEV_4320&amp;amp;CC_028000&lt;BR /&gt; PCIVEN_14E4&amp;amp;DEV_4320&amp;amp;CC_0280&lt;/P&gt;
&lt;P&gt;It does not matter. Any of them will do. I will use the last entry in&lt;BR /&gt;this example as it is shorter.&lt;/P&gt;
&lt;P&gt;For the desktop shortcut link to Wireless_Off the .CMD file contains&lt;BR /&gt;the following:&lt;BR /&gt;;&lt;BR /&gt;; Wireless_Off.cmd&lt;BR /&gt;;&lt;BR /&gt;; A shortcut for the desktop will be created to disable wireless from this file&lt;BR /&gt;;&lt;BR /&gt;@echo off&lt;BR /&gt;echo Disabling the wireless adapter...................&lt;BR /&gt;devcon disable PCIVEN_14E4&amp;amp;DEV_4320&amp;amp;CC_0280&lt;BR /&gt;echo Done................&lt;BR /&gt;;&lt;BR /&gt;; EOF&lt;/P&gt;
&lt;P&gt;Similarly, to create a desktop shortcut to re-enable the device, a&lt;BR /&gt;second .BAT or .CMD file needs to be created.&lt;/P&gt;
&lt;P&gt;;&lt;BR /&gt;; Wireless_On.cmd&lt;BR /&gt;;&lt;BR /&gt;; A shortcut for the desktop will be created to ENABLE wireless from this file&lt;BR /&gt;;&lt;BR /&gt;@echo off&lt;BR /&gt;echo Enabling the wireless adapter ...............&lt;BR /&gt;devcon enable PCIVEN_14E4&amp;amp;DEV_4320&amp;amp;CC_0280&lt;BR /&gt;echo Done................&lt;BR /&gt;;&lt;BR /&gt;; EOF&lt;/P&gt;
&lt;P&gt;----------------&lt;/P&gt;
&lt;P&gt;Once you use the earlier instruction to discover the hwid of the&lt;BR /&gt;wireless adapter, the rest is simple.&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 May 2007 23:08:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869319#M8398</guid>
      <dc:creator>bill_castner</dc:creator>
      <dc:date>2007-05-02T23:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869320#M8399</link>
      <description>&lt;P&gt;Thanks, Bill. I'll download the cli version of Device Manager and start testing. &lt;/P&gt;
&lt;P&gt;- Christopher&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 05 May 2007 22:50:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869320#M8399</guid>
      <dc:creator>cluther962</dc:creator>
      <dc:date>2007-05-05T22:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869321#M8400</link>
      <description>&lt;P&gt;Bill -- Thanks for this tip. This worked for me in regards to enabling/disabling my wifi device...&lt;/P&gt;
&lt;P&gt;However would you have an idea of how to modify it to disable/enable the radio for that device rather than disabling/enabling the actual device? I tried various arguments with no luck.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;
&lt;P&gt;EDIT: To further clarify, in the regular Win XP Device Manager I can go to Properties and then Advanced. Once there, say for my Wifi card, I can go to the 'Property' Radio Enable/Disable and then select the 'Value' as Enabled or Disabled. I have gone through the DevCon documentation and I don't seem to see that it has the ability to do this. Am I correct on this or can you correct me?&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2007 16:00:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869321#M8400</guid>
      <dc:creator>geoff_s</dc:creator>
      <dc:date>2007-05-07T16:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/Disable Wireless LAN Radio via command-line</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869322#M8401</link>
      <description>&lt;P align="left"&gt;&lt;FONT size="1"&gt;Bill, Chris,&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;I read your postings about how to make a batch file to disable and enable your wireless devices using batch files or VB scripts and I wondered to myself, is there a way to do both with one batch file? Well there has to be, so I spent some time tonight and improved on your idea... Which made it easier to run a shortcut to a hotkey on my Keybaord...&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;This is what I came up with... &lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;NOTE: some of this was just playing around with various commands to see the result, but I decided to keep it in there cause there are always the ID10T's that just copy/past but don't read...&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;Hope this helps! Ben&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;ECHO OFF&lt;BR /&gt;CLS&lt;BR /&gt;ECHO Checking Wireless Adapter.....&lt;BR /&gt;devcon status PCIVEN_168C&amp;gt;c:wireless.txt 2&amp;gt;&amp;amp;1&lt;BR /&gt;; In this section I ran a status check onmy wireless adapter then PRINTED it to a txt file&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;IF ERRORLEVEL ==1 GOTO Q&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;; Here it checks for any errors when attempting to run devcon, if it finds one it sends youdown to "Q" where it informs you of the problem and asks to send you to the MS website...&lt;BR /&gt;find /c "disabled." c:wireless.txt&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;; here it searches for the string "Disabled." in the txt file, and it what the file above will say if it is there. If it finds "Disabled." &lt;BR /&gt;&lt;/FONT&gt;&lt;FONT size="1"&gt;CLS&lt;BR /&gt;ECHO Checking Wireless Adapter.....&lt;BR /&gt;IF ERRORLEVEL ==1 GOTO D&lt;BR /&gt;GOTO E&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;then is sendsto "E" where itenablesthe device. If not found it send to "D" where itdisablesthe device.&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;:D&lt;BR /&gt;ECHO Disabing Wireless card.....&lt;BR /&gt;devcon disable PCIVEN_168C&lt;BR /&gt;GOTO Z&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;:Q&lt;BR /&gt;CLS&lt;BR /&gt;ECHO Error:&lt;BR /&gt;ECHO You must first download DevCon command-line utility from Microsoft's website&lt;BR /&gt;ECHO then place it in your windowssystem32 folder.&lt;BR /&gt;set choice=&lt;BR /&gt;set /p choice=TO go there now, press the "1" Key, or press any other key to exit...&lt;BR /&gt;if not '%choice%'=='' set choice=%choice:~0,1%&lt;BR /&gt;if '%choice%'=='1' GOTO IE&lt;BR /&gt;GOTO Z&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;:IE&lt;BR /&gt;START /MAX c:progra~1intern~1iexplore.exe &lt;/FONT&gt;&lt;A href="http://support.microsoft.com/kb/311272"&gt;&lt;FONT size="1"&gt;&lt;/FONT&gt;&lt;/A&gt;&lt;A href="http://support.microsoft.com/kb/311272" target="_blank"&gt;http://support.microsoft.com/kb/311272&lt;/A&gt;&lt;BR /&gt;&lt;FONT size="1"&gt;GOTO Z&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;:E&lt;BR /&gt;ECHO Enabing Wireless card.....&lt;BR /&gt;devcon enable PCIVEN_168C&lt;/FONT&gt;&lt;/P&gt;
&lt;P align="left"&gt;&lt;FONT size="1"&gt;:Z&lt;BR /&gt;del /Q wireless.txt&lt;BR /&gt;ECHO Done.&lt;BR /&gt;@ECHO ON&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2007 04:48:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869322#M8401</guid>
      <dc:creator>Anonymous4</dc:creator>
      <dc:date>2007-10-08T04:48:55Z</dc:date>
    </item>
    <item>
      <title>follow this step</title>
      <link>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869323#M8402</link>
      <description>&lt;P&gt;follow this step&lt;/P&gt;&lt;P&gt;Open Start.&lt;/P&gt;&lt;P&gt;Search for&amp;nbsp;Command Prompt, right-click the top result, and select Run as administrator.&lt;/P&gt;&lt;P&gt;Type the following&amp;nbsp;command&amp;nbsp;to identify the name of the adapter you want to&amp;nbsp;disable&amp;nbsp;and press Enter: ...&lt;/P&gt;&lt;P&gt;Type the following&amp;nbsp;command&amp;nbsp;to&amp;nbsp;disable&amp;nbsp;the&amp;nbsp;Wi-Fi&amp;nbsp;or&amp;nbsp;Ethernet&amp;nbsp;adapter and press Enter:&lt;/P&gt;&lt;P&gt;anyone searching for a job visit here &lt;A href="https://careerjobs360.in/central-bank-of-india-recruitment-2019-for-01-post-application-form-exam-dates-syllabus-eligibility-pattern-apply-offline/"&gt;careerjobs360&lt;/A&gt; for more details.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2019 06:08:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Enable-Disable-Wireless-LAN-Radio-via-command-line/m-p/869323#M8402</guid>
      <dc:creator>jobs__carreer</dc:creator>
      <dc:date>2019-04-08T06:08:12Z</dc:date>
    </item>
  </channel>
</rss>

