carlo wrote:hi!
It's not very easy, but only for the driver (Remember that you cannot control the Wireless state with the Fn+F5 button).
Carlo
I created simple batch file for this. Create shortcut to this batch file into Quick Launch and you can easily manage network connections. I use this because it saves a lot of battery if you disable all network connections. Windows Server 2003 is just great in my T42p!
@ECHO OFF
COLOR 19
ECHO E Enable ALL
ECHO D Disable ALL
ECHO L LAN Only
ECHO W WLAN Only
CHOICE /C:edlw /N
CLS
IF ERRORLEVEL==4 GOTO WLAN
IF ERRORLEVEL==3 GOTO LAN
IF ERRORLEVEL==2 GOTO DISABLE
IF ERRORLEVEL==1 GOTO ENABLE
:ENABLE
@netsh interface set interface name="Local Area Connection" admin=ENABLED | echo LAN Enabled
@netsh interface set interface name="Wireless Network Connection" admin=ENABLED | echo WLAN Enabled
GOTO END

ISABLE
@netsh interface set interface name="Local Area Connection" admin=DISABLED | echo LAN Disabled
@netsh interface set interface name="Wireless Network Connection" admin=DISABLED | echo WLAN Disabled
GOTO END
:WLAN
@netsh interface set interface name="Wireless Network Connection" admin=ENABLED | echo WLAN Enabled
@netsh interface set interface name="Local Area Connection" admin=DISABLED | echo LAN Disabled
GOTO END
:LAN
@netsh interface set interface name="Local Area Connection" admin=ENABLED | echo LAN Enabled
@netsh interface set interface name="Wireless Network Connection" admin=DISABLED | echo WLAN Disabled
GOTO END