Disabling Wireless Adapter

I want to run a Powershell Startup Script to disable the Wireless adapters on some systems. I thought I'd want to get some WMI stuff
Get-WmiObject -Class Win32_NetworkAdapter -Filter "Name = 'Intel(R) Centrino(R) Advanced-N 6205'
Then run netsh to disable it
netsh interface set interface "Wireless Network Connection" DISABLED
After looking at this I wondered why not just run the
netsh interface set interface "Wireless Network Connection" DISABLED
I don't really need the Get-WmiObject do I?
Orange County District Attorney

Here are a couple of scripts ( ps and vbscript )  that can be used on a dell bios.. You could adapt it to disable the wireless adapter in the bios if you want  ..
( pcombobox app is on www.justcode.ca  )
Powershell ( may require dell client management agent )
(gwmi DCIM_BIOSService -namespace root\dcim\sysman).SetBIOSAttributes($null,$null,"Wake On LAN","4")
Possible values are:
1 - Disable
2 - Add-in
3 - On board
4 - LAN
5 - PXE boot enable
6 - LAN or WLAN
7 - WLAN only
vbscript
'  Set Dell Bios items
'  Requires that the Dell Client Management software is installed 
'Dell DCIM values
' Wake on LAN values
'Enables or Disables Multiple CPU Core support on next boot.
'Possible values are:
'1 = Other
'2 = Unsupported
'3 = Enabled
'4 = Disabled
'The actual values are not the above, but the below - Paul Jorgensen - Nov 2011 ( Dell gx760 )
'1 = Disabled
'2 = Enabled
'AC Power Recovery Mode
'1 = ?
'2 = ?
'Processor Logical Processor(HyperThreading)
'1 = ?
'2 = ?
Option Explicit
'*** Declare variables
Dim strNameSpace
Dim strComputerName
Dim strClassName
Dim strKeyValue
Dim objWMIService
Dim ColSystem
Dim objInstance
Dim oInParams
Dim returnValue
Dim strAttributeName(2)
Dim strAttributeValue(2)
Dim strAuthorizationToken
Dim psDellBios
Dim WshShell, objWshScriptExec
Dim psAttribute
Dim psValue
Dim pbAttributeFound
Set WshShell = WScript.CreateObject("WScript.Shell")
'*** Check that the right executable was used to run the script
'*** and that all parameters were passed
If (LCase(Right(WScript.FullName, 11)) = "wscript.exe" ) Or _
    (WScript.Arguments.Count < 1) Then
    Call Usage()
    WScript.Quit
End If
'*** request combobox input as to which bios setting should be updated
psDellBios = GetComboInput("pcombobox.exe /p:WakeOnLAN,EnableDualCPU")
WScript.Echo("This is setting ->" & psDellBios)
'*** Initialize variables
strNameSpace = "root\dcim\sysman"
strComputerName = WScript.Arguments(0)
strClassName = "DCIM_BIOSEnumeration"
'*** Set Variables based on combobox selection
If psDellBios = "WakeOnLAN" Then 
psAttribute = "Wake On LAN"
psValue = "4"
End If
If psDellBios = "EnableDualCPU" Then
psAttribute = "Multiple CPU Cores"
psValue = "1"             ' see value notes at top of script
End If
'*** Retrieve the instance of DCIM_BIOSEnumeration class for the TPM
Set objInstance = GetObject("WinMgmts:{impersonationLevel=impersonate," &_
    "AuthenticationLevel=pktprivacy}\\" & strComputerName & "\" &_
strNameSpace)
'*** print out attribute if found
Set ColSystem = objInstance.execquery("Select * from " & strClassName)
For Each objInstance In ColSystem
'*** Check every instance
  'iTKVal = objInstance.Properties_.Item("CurrentValue").Value(0)
'*** Auto On Hour and Auto On Minutes don't have PossibleValues and PossibleValuesDescription properties
If (objInstance.AttributeName = psAttribute)  Then
WScript.Echo("Specified Attribute found " & objInstance.AttributeName & ", " & ( objInstance.CurrentValue(0) ) & VbCrLf )
pbAttributeFound = True
End If
Next
    strClassName = "DCIM_BIOSService"
    strAttributeName(0) = psAttribute    ' Wake on LAn or Multi Core CPU, see psAttribute in query section above
WScript.Echo("strAttributeName-> " & strAttributeName(0))
  strAttributeValue(0) = psValue
    WScript.Echo("strValue-> " & strAttributeValue(0))
    strAuthorizationToken = ""
    '*** Retrieve the instance of DCIM_BIOSService class 
Set objWMIService = GetObject("WinMgmts:{impersonationLevel=impersonate," &_
        "AuthenticationLevel=pktprivacy}\\" & strComputerName & "\" &_
strNameSpace )
    Set ColSystem=objWMIService.execquery ("Select * from " & strClassName)
    For Each objInstance In ColSystem    
        Set oInParams = objInstance.Methods_("SetBIOSAttributes").InParameters.SpawnInstance_
        oInParams.AttributeName = strAttributeName
        oInParams.AttributeValue = strAttributeValue
        oInParams.AuthorizationToken = strAuthorizationToken
        Set returnValue = objInstance.ExecMethod_("SetBIOSAttributes", oInParams)
        Exit For
    Next
'End If
'*** If any errors occurred, let the user know
If Err.Number <> 0 Then
    WScript.Echo "Enabling Wake On LAN failed."
End If
'*** Sub used to display the correct usage of the script
Sub Usage()
Dim strMessage
strMessage = "incorrect syntax. You should run: " & vbCRLF & _
    "cscript.exe /nologo SampleWakeOnLAN.vbs <systemname>"
WScript.Echo strMessage
End Sub
Function GetComboInput(cbparam)
Dim sTempPath, sTempResult, sTempExitCode
sTempPath = cbparam
WScript.Echo sTempPath
Err.Clear
'WshShell.run sTempPath, WINDOWNORMAL, True
Set objWshScriptExec = WshShell.Exec(sTempPath)
' ***** BELOW - **  USE RegRead to read reg return value **** !!!!
'wscript.Echo WshShell.RegRead(testregpath)
'WScript.Echo Err.Number
Do While objWshScriptExec.Status = 0
WScript.Sleep 100
'WScript.Echo "this is the status code" & objWshScriptExec.Status
Loop
'**** if item was not picked from combobox, take action based on errorlevel
sTempExitCode = objWshScriptExec.ExitCode
If (objWshScriptExec.ExitCode = 0 Or objWshScriptExec.ExitCode = 100 Or objWshScriptExec.ExitCode = 102 Or objWshScriptExec.ExitCode = 101) Then
'If(objWshScriptExec.ExitCode > 20 )Then 
Select Case sTempExitCode
Case 0
WScript.Echo "User clicked cancel"
WScript.Quit(0)
Exit Function
Case 100   
WScript.Echo "User clicked return abort"
WScript.Quit(100)
Exit Function
Case 101
WScript.Echo "User clicked ok with NULL item"
WScript.Quit(101)
Exit Function
Case 102
WScript.Echo "User clicked ok with data entry"
'WScript.Echo " result is " & 
GetComboInput = WshShell.RegRead("HKCU\Software\Green-Frog-Software\pComboBox\RData\PComboBox")
WScript.Echo " GetComboInput is " & GetComboInput
Exit Function
Case Else
End Select  
End If
'WScript.Echo objWshScriptExec.ExitCode
'**** return the error value
'*****ACTUALLY - parse "cbparam" using the exitcode to return the 
'***** the string required rather then run another function
'***** or run a generic function from here...
'***** this will make the function single line usage 
'***** which is way more script friendly
sTempResult = pfParseResult(cbparam, objWshScriptExec.ExitCode)
'WScript.Echo sTempResult
GetComboInput = sTempResult
End Function
' ** Application:  VB MapDrives
' ** Function:  pfParseResult
' ** Purpose:   match the errorlevel returned to the input string desired
' ** Update:    
' ** Date: Jan 6 2009
' ** Author:    Paul Jorgensen
Function pfParseResult(cbparam, pi_Result)
Dim sTempPath, sSplitFirst, piLen
Dim paParseArray
sTempPath = cbparam
'WScript.Echo sTempPath
Err.Clear
piLen = Len(cbparam)
If (piLen > 17) Then
sSplitFirst = Right(cbparam, piLen - 17)    ' 17 = 3 for /p: and 14 for pcombobox.exe with spaces
End If
'WScript.Echo "this is sSplitFirst" & sSplitFirst
paParseArray = Split(sSplitFirst, ",", -1, 0)     ' string, delimiter, count -1 = all, binary(0) or text (1)
'WScript.echo CrLf
'WScript.echo paParseArray(0)
'WScript.echo CrLf
'WScript.echo paParseArray(1)
' ie a valid selection was returned from GetComboInput, so use the return code ( pi_Result) which represents the item
' selected to select the item from the paParseArray which is the cbparam parameter minus the exe and the /p: with
' the /p: parameters split into the paParseArray ( ie D,L,R,S,V.... )
pfParseResult = paParseArray(pi_Result - 1)
'Do While objWshScriptExec.Status =0
'WScript.Sleep 100
'WScript.Echo "this is the status code" & objWshScriptExec.Status
'Loop
End Function
just code, no beer...although that would probably help..

Similar Messages

  • Wireless Adapter permanently disabled after sleep mode - Windows 7 64 bit

    Hello,
    Info:
    Laptop: 2014 Macbook Pro running Bootcamp (dual boot...not a VM) with Windows 7 Pro 64 bit
    OS: Windows 7 Pro 64 bit
    Network Adapter: Broadcom 802.11ac Network Adapter
    Driver version: 6.30.223.215
    Issue: My broadcom 802.11ac wireless adapter becomes permanently disabled when waking from sleep mode. It requires a restart in order to become enabled. If I try to manually re-enable it, I get a message saying "Enabling..." -> "Enabled!" but after this message the device still says Disabled and the wireless still won't connect to anything. This issue is very reproducible. Occurs both under battery power and when plugged in.
    What have I tried?: Tried disabling the "Allow windows to disable this device to save power" under power management, which didn't work. Tried updating driver but Windows Update says the driver is up to date. I was able to find a newer version (6.30.223.227) but I can only find it hosted on Russian websites which makes me a little suspicious.

    Many thanks to chemnerd1's hints - saved me going mad.
    My problem was that the wifi worked perfectly until connected to a Thunderbolt display - then the wifi was permanently disabled (nothing would enable it; changing driver, changing wifi channel, uninstalling and reinstalling wifi, nothing worked). As you can imagine I was very disapointed after spending a fortune on the Thunderbolt display (brilliant kit) and then finding that I maybe only have wired internet available!
    Definately, Zone Alarm was the problem (maybe other firewalls cause the same /similar problem).
    My solution was -
    uninstalled Zone Alarm (safe mode not required)
    reboot with Thunderbolt display connected (checked that wifi now working)
    reinstall Zone Alarm (important that Thunderbolt display is still connected)
    reboot - checked and wifi still working perfectly - wonderful
    I have to confess that I was initially blaming Apple for the problem. I did loads of searches to try and solve this and a lot of links ended with conclusions that Apple doesn't care. Well in this case it wasn't Apple's fault.

  • Wireless Adapter Error 10 when CSM Support Disabled

    After a motherboard replacement, my Thinkpad Yoga was returned with CSM Support enabled, causing a legacy bios and windows splash screen to appear.
    I went into the bios and disabled CSM support to bring back the default black Lenovo boot up screen, but now when windows loads the Wireless Card reports an Error Code 10. I have tried updating to every driver and even refreshed windows to no avail.

    I later disabled Broadcom Virtual Wireless Adapter and found that I could still use WiFi so I went on and upgraded to Windows 10 anyway. Broadcom Virtual Wireless Adapter does come off the list on Device Manger but I can still use WiFi regardless.

  • Plugging in my iPhone disables my wireless adapter.

    I am using a PC with a Belkin Wireless Adapter. My internet will be working perfectly, then I plug my iPhone in to run updates and suddenly my internet connection is gone. It is like it completely disables my adapter. I have to unplug the phone, remove the adapter, then plug the adapter back in to get my internet connection back.
    I just want to update my phone!
    Help??!

    I have the same problem exactly but with a linksys usb adapter! mine never did this until a few days ago.I think it actually was after I tried to create a home wireless network between PC and laptop. cant say for sure. just simply unplugging iphone from PC wont allow wireless adapter to work again. even if you click repair for the adapter. you have to unplug the wireless adapter and plug it back in before it will work again. come to think of it I even restarted PC and it did not reactivate adapter. would love some input for a fix.
    Message was edited by: I\'mtoofast4yoo

  • HT4528 why does plugging iphone 4 into PC thru USB disable computers wireless adapter?

    why does plugging in iphone 4 to PC it is authorized on cause the computers wireless adapter to shutdown? Don't recall changing anything on either one, but did do some updates on windows update.

    You probably would get better answers to this on a Microsoft Windows forum...the iPhone should notbe doing anything to affect the operation of Windows as it does not communicate with the operating system.
    Have you checked the Network Control Panel to see if anything has been changed due to the Windows updates you installed?  Something in the updates must have changed the network settings or network card settings.

  • Does the Xbox 360 wireless adapter even work with the WRT54G wireless router?!!? If so, how???

    I just bought a WRT54G wireless router (Ver 8.0; firmware updated to latest).  I have successfully connected my wireless laptop using WEP security, but I'm at wits end trying to get the Xbox 360 wireless adapter to work.  (It worked just fine with my Netgear router until that router recently died.)
    When I do the "Test Media Connection" routine (you XBox 360 users know what I'm referring to), the Xbox immediately recognizes the Network Adapter and indicates that it is connected to the Wireless Network, but it inevitably fails the next step in the process:  IP Address.  I have the set-up for the IP address to be assigned automatically by the router (which is set for  DHCP Server enabled).
    I have gone around the mountain innumerable times myself and then with well-meaning friends who say try this, try that, try this, try that.  I've had to re-establish my laptop set-up so many times I wanna scream!
    Are the Xbox 360 wireless adapter and the WRT54G even compatible?  If so, what am I missing here?  I'm not too technical and obviously in over my head, but this ought not be that hard.
    Please, please do NOT respond unless you KNOW the answer!  I don't mean to be curt, but I'm over / past "suggestions to try."
    Thank you VERY much for your time and consideration if you can help me.

    I don't think that the X-BOX adapter is not compatible to wireless rotuer .... there are few settings you can try on the router ... Access router setup page ... Please click on the tab "Application and gaming" and click on sub tab "Port range forwarding" 1) On the first line in Application box type in "Xbox", in start box type in 88, in end box type in 88, in protocol keep it both, in ip address type in 192.168.1.20 and give a check mark on enable box. 2) On the second line in Application box type in "Xbox", in start box type in 3074, in end box type in 3074, in protocol keep it both, in ip address type in 192.168.1.20 and give a check mark on enable box. 3) Now save the settings 4) Once you return to the setup page, click on the tab "Administration" and disable the UPNP and save the settings. 5) Now assign the given ip address on your xbox ip address :- 192.168.1.20 subnet mask :- 255.255.255.0 default gateway :- 192.168.1.1 Please assign the dns address on the xbox primary dns :- 4.2.2.2 secondary dns :- 192.168.1.1 6) Please try to test your xbox live. Hope it works ...

  • Issues with usb wireless adapter

    Hi
    Please excuse my ignorance.
    I have an imac (about 2 years old) with a built in airport card. I am trying to use a usb wireless adapter. It has a realtek rtl8187. we have a wifi network here that works with my pc using this adapter but i cant get it to work on the mac. You have to sling the adapter on the window sill but it picks it up fine.
    I have installed the supplied software (obviously the mac one!) and it installs the software and driver. After i have restarted, and plug the thing in, it tells me to turn on my wlan card on the supplied software?? It shows up in the listing on network settings as ethernet adapter ((null)). I cannot find any setting to turn on my wireless card, i thought that was airport?
    The airport picks up the network but the signal is too weak to connect, hence the adapter with a bit more guts....
    I have this beautiful mac, colecting dust and am having to use a pc!
    If i connect the usb adapter without installing the software, it constantly has a box popping up in network settings saying that an external device has changed settings! it doesnt stop doing it, until you delete the location...
    Can anyone help? I may be being thick and dont have a wlan card or something or airport will not allow me to use this thing. I only just started getting into macs when i moved to spain, where it has sat colecting dust for 3 months.
    I would appreciate any advice.
    Thanks
    Richard

    TNHusker, welcome to the forum.
    Cisco makes a router that is good for two-story homes.  I have used it for several years.  My router / hotspot is on the second floor and my Blu-ray player and laptop are on the first floor.  Both work extremely well with the router.  They also make a USB, AM10, that works very nicely with a desktop without a wireless card.
    I have had a few problems with both, but have always been helped successfully by Cisco Customer Service.  They are very good.
    Please click the "Thumbs Up+ button" if I have helped you and click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Wireless adapter turned off, wont enable

    Hi, I got this Lenovo x201 AC4 yesterday. I installed Ubuntu 11.04, used the wireless till today morning. But then suddenly the wireless icon with LED turned off and wont turn on again and I cannot access any network right now. 
    Tried restarting, but no help.
    It got disabled when the laptop was running on battery battery power.
    I saw another similar thread, but the questioneer was using Windows. As the wireless adapter is turned off, I cannot even find and re-enable it from inside ubuntu. 
    Any help?
    Update: The wifi led doesnt blink at the time of POST. The bluetooth one does.

    I am not sure if I can really help you (I do not have a x201), but since no one else answered yet. I try to give some advices.
    The most easiest way to activate the Wireless adapter on Ubuntu is on the right upper corner of your desktop in the wireless menu. but i assume that did not function.
    A second method to enable Wireless is to activate it with the key combination Fn+F5, by pressing multiple times you activate and deactivate wireless and bluetooth. Pressing once activates Wireless.
    there is also the possibility you deactivated wireless by switching the button on the left side just right from your yellow usb-port. Thats a hardware switch for your wireless, when turned of there is no possibility to activate wireless unless you switch it from red position to green position.
    sorry thats all, if there is a driver problem i can not help...

  • 802.11n: How can I force a wireless adapter to primarily associate to a 5Ghz radio and not to the 2.4Ghz one?

    Hi experts,
    I am playing with a Cisco 1142 AP. I have same SSID configured on both dot0 and dot1 interfaces. I have a test laptop and it has a Linksys dual-band wireless adapter. However the card always try to associate on the 2.4GHz. It will only associate with the 5GHz radio when I shut down the dot 0 interface. The laptop is running Windows XP SP3 and I'm using the windows wireless Zero configuration to configure the wireless. The following is the AP's configuration:
    dot11 ssid Guest-Wireless
       authentication open
       guest-mode
    interface Dot11Radio0
    no ip address
    no ip route-cache
    ssid Guest-Wireless
    antenna gain 0
    channel 2412
    station-role root
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 port-protected
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    bridge-group 1 spanning-disabled
    interface Dot11Radio1
    no ip address
    no ip route-cache
    ssid Guest-Wireless
    antenna gain 0
    dfs band 3 block
    channel dfs
    station-role root
    bridge-group 1
    bridge-group 1 subscriber-loop-control
    bridge-group 1 port-protected
    bridge-group 1 block-unknown-source
    no bridge-group 1 source-learning
    no bridge-group 1 unicast-flooding
    bridge-group 1 spanning-disabled
    Is it something I can control through the AP or it's the laptop/wireless adapter's own behavior so I either need a new card or update it with a new firmware?
    Thanks!

    Leolaohoo,
    Thanks for quick reply! My laptop is just next to the AP. There is nothing but air between the laptop and the AP.
    I actually did speed tests on both 2.4 and 5 (with 2.4 disabled of course) and I got pretty much the same result: 46Mbps MAX. I don't know if it's the linksys n card is limiting the capacity of the AP. But for now I just want it to jump on 5GHz instead of 2.4GHz...
    Thanks,

  • H520s Wireless adapter issues

    Okay, So I'm having some issues with my H520s. The wireless adapter has been quite dodgy for the past month or so, but after using lenovo rescue to get it back to 'original condition' it's completely stopped working. I've looked through device manager and there's no mention of a wireless adapter, and any attempt to install drivers has done nothing.
    Before this, I'd have to use the Network Tasks> Repair network (or simmilar) after every startup in order to get wireless working.
    I have no files on the computer I need to keep, so formatting it to fix it is fine. I just want my wireless back ;_;
    If you need any more information, please ask, and I'll get back to you as soon as I see it. Hope you can help ^^
    EDIT: Oh, also,
    Said computer is running Windows 8, preinstalled. (Listed as 'Win 8 MM' on the side, incase that means anything special)

    Hi llharry,
    Welcome to Lenovo Community Forums!
       If your device manager is not showing your Wifi under device manager / Network adapters.
    It may be having issue with the driver and may show as Network Controller or unknown device with
     a yellow sign on it.
       If not then It may had been disabled inside BIOS.
    Try Booting into BIOS by shutting down the computer and turning it back On and tapping F1 .
      Once Inside BIOS look under Configuration TAB and or under Network setup
        Look for an option saying Wireless lan or Wireless adapter.
    Make sure it is enabled then save and exit.
    Regards
    Solid Cruver
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • W510 Wireless Adapter: getting kicked out of most wireless networks

    Hi Everyone,
    I'm running a W510 with Windows 8 on it. I have an extremely annoying issue with my wi-fi network network card and I have no clue where it's coming from.
    The wi-fi networks at my home and office work perfect and I haven't had a single issue with them. I recently started travelling a lot and tried using wi-fi on various locations such as open wi-fi on airports, secured networks in hotels, cafes, guest homes etc. Most of them are not workable. Here's what's happening:
    I can usually connect the first time I try, but after a few minutes, and hour top I get kicked out of the network or end up with "Limited" access. When I try to reconnect the it goes into and endless "connecting" state. Trying to disconnect hangs the pane and no actions are possible until I:
    1. Restart the explorer.exe process, which it "Not responding"
    2. Disable and Enable the wireless adapter though the Device Manager
    After that in case of some networks I can connect again for a few minutes, but then I all repeats all over OR I cannot connect back at all.
    I have tried using A LOT of networks in various places, and I'd say with about 80-85% I experience the described issue.
    I case of some of the networks I had a chance to connect by wire and they were working perfectly. Often I have other people around with me and of course I'm the only one facing the issue, it's not that I have really back luck for wi-fi networks. Plus my phone connects to majority of them without issue.
    In many cases when I switch networks I need to manually run ipconfig /renew and ipconfig /flushdns, before being able to connect to anything.
    The wifi adapter is a Intel Centrino Ultimate-N 6300 AGN on a Lenovo W510. The driver version is 14.2.1.3. I've seen 15.x version available for download from both Intel and Lenovo sites, but when trying to install it I got info, that I already have a newer version of the driver.
    Uninstalling the driver and letting windows reinstall it does not solve the issue.
    I ran out of options on what to check and how to debug this further. What are your thoughts on this?
    Thanks,
    MikeZyc

    Hi, MikeZyc
    I've seen this issue on many machines running Windows 8 with Intel wireless adapters. One fix that has worked more often than not is to navigate to Control Panel ► Programs and Features and uninstall the Intel Management Engine Driver. This driver seems to cause the wireless connectivity to get lost or not connect at all in Windows 8. Try uninstalling that, then restarting the computer and see if any improvement is made.
    Best of luck,
    Adam
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution!" This will help the rest of the community with similar issues identify the verified solution and benefit from it.

  • [T400] Cisco VPN client not working over wireless adapter (but works on cabled connection)

    I have a very strange problem. 
    I need to connect to my work via the cisco vpn client (version 5.0.00.0340). 
    My previous laptop (T43 , windows XP) worked well through both wired / wireless connections.  My desktop machine (vista) works via wired connection (it has no wireless connection). 
    On my new T400, the VPN client works via a wired connection but not via the wireless adapter.  
    On the wireless apapter, the vpn seems to connect OK, but when I try to access resources via the VPN there is little response.
    I get this in the vpn log...
    405   08:56:57.073  04/16/09  Sev=Warning/2 IPSEC/0xE3700003
    Function CniInjectSend() failed with an error code of 0xa4510009 (IPSecDrvCB:846)
     I've tried disabling the firewall (in both the T400 and the router), removed access connections, and disabling tcp v6. I've rebooted everything too. 
    But, nothing seems to work.   I suspect the problem is on the t400 somewhere, because the old laptop used to work OK via wireless.
    I've seen some google links on cisco vpn not working via  wireless but nothing seems to apply to my exact situation yet. 
    Anyone else had this problem or know of a fix? Thanks in advance. 
    Solved!
    Go to Solution.

    all good now, got it working. 
    The Deterministic network thing was not installed on the wireless adapter for some reason.
    So, I installed the latest wireless driver, reinstalled the vpn and all is good now.  

  • Unable to Install Wireless Adapter (NIC or a USB) to Pavillion p6340a Win 7 Home Prem

    I removed a working TP-Link network card from a Pavillion a1300a XP Home  PC to put in my Pavillion p6340a Win 7 (64bit) Home Prem PC.
    Downloaded and installed current drivers from TP-Link.
    All installed well and the adaptor can be seen in under "Change Adapter Settings" in Network & Sharing Centre and shows as working properly under Device Manager  but it is not recognised as a Network within Network & Sharing Centre. 
    Under "Manage Wireless Networks"" nothing is shown, if I then click Ädd" then Manually Create Network Profile"" I then get a very informative error message ""an unexpected error occurred".
    Suspecting a problem with the NIC I deinstalled it and its drivers and tried to install a USB wireless adapter with the exact same outcome and error message. It appears there must be some OS problem or something stopping the wireless network from functioning. Both the NIC and USB adapter work fine when installed on the old Pavillion a1300a XP Home PC. Both NIC and the USB adapter have current Win7 drivers.
    Any ideas as it is driving me mad. A simple 5 minute task on any other PC has turned into many.many hours with no solution.
    This question was solved.
    View Solution.

    After many hours uninstalling re installing & trying everything under the sun in many forums, I finally found a solution. Despite trying with firewall disabled at different times the final fix was
    uninstall the NIC and USB drivers and devices.
    Next uninstall the AntiVirus (in this case AVG Internet Security)
    reinstall the NIC and drivers
    Reinstall AntiVirus
    Tried the USB adapter as well whilst the antivirus was uninstalled and it installed no with problems as well.
    All working fine.

  • WRT54G to WGA54G bridge OR XBOX Wireless Adapter

    1. Just hooked up a new WRT54G bringing wireless to my home network. Wired PCs (4) and wireless laptop connect and work fine (laptop drops connection from time to time).
    2. Wanted wireless gaming via WGA54G, compeleted install per instructions, hooked up to XBOX Live, set up account, started to check out XBOXLive stuffs, lost connection. Never able to get WGA54G to hold connection, despite many reloads and reconfigs.
    3. 2 Days later; bought a $100 XBOX Wireless Adapter. Installed per instructions, surfed XBOXLive, all seemed great.....lost connection.  Researched all the blogs and both Linksys and XBOX 360 sites for anything that might help. The only thing I found was a statement that Linksys and MS knew about a problem with the WRT54G losing connectivity and where working on it, telling me to go into WRT54G device and disable UPnP.  Did so, still no luck.....so;
    DOES ANYONE HAVE AN XBOX 360 ON THEIR WIRELESS NETWORK THAT WORKS? iF  

    You can't give up on those good devices until you have upgraded their firmwares. Take a look on the sticker under the router to get it's exact version no. After that, upgrade the firmwares and reconfigure the settings on both the router and the WGA54G. Hope this helps.
    Linksys Download Page

  • Not able installing internal Wireless Adapter on Tecra 8200

    Dear all,
    i've got a Tecra 8200
    After installing WinXP Pro, the Wireless Adapter will only be found as PCMCIA MTD-0002.
    I,m unable to install Drivers for the Adapter.
    XP is with SP2
    Bios is 1.60
    Could anybody help me what to do, thanks in advance.
    Brgds,
    Thomas

    Hi,
    if you have the Agere MiniPCI WLAN card installed, the system needs to install the following registry key with the driver for the WLAN card:
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Servic es\Pcmcia\Parameters]
    "IrqRouteToPciController"=dword:00000006
    I've found an installation instruction:
    1. Clean install Windows XP Service Pack 2 package
    or Clean install the Windows XP Gold package and install Service Pack 2 update image on it.
    2. Copy the TICardBusIrqRouting.reg to the system, then click the file on the system.
    3. The following window will appear,
    "Are you sure you want to add the information in xxxxx\DISABL~1.REG to the registry"
    Then select "Yes".
    xxxxx is the location of TICardBusIrqRouting.reg
    4. The following window will appear,
    "Information in xxxxx\DISABL~1.REG has been successfully entered into the registry."
    Then click "OK".
    xxxxx is the location of TICardBusIrqRouting.reg
    5. Reboot the system
    Good luck!
    Bye

Maybe you are looking for