Unsolved
This post is more than 5 years old
20 Posts
0
125106
December 9th, 2010 08:00
e6410 docking question
I have a e6410 system and I was wondering is there a way to have the wireless turn off when the system is docked in a Dell Docking station? I have the same question concerning the e4310, e4300 and the e6400 laptops
No Events found!


DELL-Warren B
1.1K Posts
0
December 9th, 2010 12:00
All of the docking stations are pass-through ports now, so there isn't a hardware profile associated with them to modify or configure.
I haven't dug into this yet,but I've had several customers and internal Dell folks ask about it, so if I'm not correct in the above statements, I'll get more clarification for you.
jamesavery1
20 Posts
0
December 9th, 2010 15:00
DELL-Warren B
1.1K Posts
0
December 9th, 2010 16:00
Here's the link to the E6400 Connection Manager
http://support.dell.com/support/downloads/download.aspx?c=us&cs=555&l=en&s=biz&releaseid=R254220&SystemID=LAT_E6400&servicetag=&os=W764&osl=en&deviceid=21135&devlib=0&typecnt=0&vercnt=2&catid=-1&impid=-1&formatcnt=0&libid=60&typeid=-1&dateid=-1&formatid=-1&source=-1&fileid=372589
jamesavery1
20 Posts
0
December 9th, 2010 17:00
I'll do whatever you need for me to test on my side.
DELL-Warren B
1.1K Posts
0
December 9th, 2010 18:00
Thanks for the info and I agree completely. Switching off Wireless when docked or on LAN has been an open question for awhile. I'll see if I can get some clarity on what is available for the Exx10 class of laptops to ease the pain.
Thanks,
Warren
jamesavery1
20 Posts
0
December 10th, 2010 06:00
KKiesler
6 Posts
0
July 31st, 2013 08:00
Hey guy's, I have a mix of laptops in my enterprise, we have e6400, 6410, 6510, and 6520's
I am looking to be able to to disable the wireless when docked or when connected to a by ethernet.
I have looked in the BIOS (someone else said there was a setting) and I do not see anything in there to disable the wireless.
Any options would be helpful
Dustin Hedges
1 Rookie
•
96 Posts
0
July 31st, 2013 08:00
It's actually different depending on both the series of Latitude and the NIC that you have in it. FOr the E6400/E6410 series systems you'll need to use a software-based solution that comes with either the Dell or Intel Wireless NIC software.
For the E6520/30 series systems, you can use a setting in BIOS (You may need to update BIOS on your system for it to work). The setting is under Power Management in the BIOS Setup screen on the E6520/30 series systems.
You can find the setting under Power Management>Wireless Radio Control.
There are 2 settings.
1. Control WLAN Radio
2. Control WWAN Radio
These can be configured via script with Dell OMCI or using the latest version of the Client Configuration Toolkit.
DELL-Warren B
1.1K Posts
0
July 31st, 2013 08:00
Yes, you can either set it in the BIOS or with CCTK or OMCI. For CCTK it is the "controlWLANRadio" option. I believe in the BIOS it is under Power Management. NOTE: This is a new feature and may not be on all the systems you mentioned. Ensure that you have the latest BIOS installed as it may have been implemented by a specific BIOS release on certain systems.
KKiesler
6 Posts
0
July 31st, 2013 12:00
Thanks for the info, that helps.
Dustin, I was able to test the BIOS setting for the 6420, and I was able to install and test the ControlPoint on a 6400.
Is there a way I can control the ControlPoint setting from the network? Such as a W2k8 GPO, or Dell Open manage console?
As for the BIOS setting, do you have a link to the instructions to use the OMCI to push the change?
Thanks
DELL-Vibha G
38 Posts
0
August 1st, 2013 00:00
OMCI Reference Guide can be checked for more info.
You can check the below page for OMCI manuals -
http://dell.to/11XFddD
Thanks,
Vibha
DELL-Vibha G
38 Posts
0
August 1st, 2013 00:00
In OMCI, these settings are available under DCIM_BIOSEnumeration class as -
1. WLAN Connection Auto Sense
2. WWAN Connection Auto Sense
Enable/Disable is possible by the method SetBIOSAttributes available in class DCIM_BIOSService.
Since OMCI is WMI-based WMIC, PowerShell or VBS scripts can be wriiten.
For eaxmple, these WMIC commands can be executed from the command prompt -
To report the current settings -
wmic /namespace:\\root\dcim\sysman path dcim_BIOSEnumeration where "AttributeName like '%Connection Auto Sense%'" Get /format:list
To disable WWAN
wmic /namespace:\\root\dcim\sysman path DCIM_BIOSService where Name='DCIM:BiosService' call SetBIOSAttributes AttributeName='WWAN Connection Auto Sense' AttributeValue='2'
To enable WWAN
wmic /namespace:\\root\dcim\sysman path DCIM_BIOSService where Name='DCIM:BiosService' call SetBIOSAttributes AttributeName='WWAN Connection Auto Sense' AttributeValue='1'