Unsolved
This post is more than 5 years old
13 Posts
0
10701
April 4th, 2005 08:00
Changing remote PC bios settings
Hi,
We are trying to use wake on lan across our whole network. We need a way of enabling the "remote wakeup" setting in the bios, as well as setting the "setup password", remotely, across the whole network.
We have the "Dell Client Configuration Utility" version 1.1.111.0. Although this works fine for setting the "remote wakeup" setting, the "setup password" setting never gets applied. The instructions say in DCCU you need to enter the OLD password, followed by a space, and then the NEW password - but our PCs do not have an OLD password to enter. I have tried it with just a space at the beginning, but this also didn't work.
As well as that, the DCCU only works with 2000/XP, but we still have around 400 NT4 machines left on the network which need their bios updating too.
Does anyone know any other ways of making these changes? We know you can do it via IT Assistant, but that seems to involve individually going through each PC in the list to make the change.
Anyone know of a WMI script which might make the changes needed?
Does anyone know how to force DCCU to set the setup password correctly? At least that would mean we could get all the windows 2000 machines done.
Thanks,
Daniel.
0 events found
No Events found!


Rijko
2 Intern
•
615 Posts
0
May 7th, 2005 23:00
hi,
i am not really familiar with DCCU.
I have read that it will not succesfully update some of the older bios versions. Is this behaviour you experience related to old bios versions ?
The following is a script i found on the Dell board somewhere. ( I think the author is a German guy who looked into this and wrote more nice stuff so search for his thread if interested ) It requires the freeware pcpbios tool. With a few adjustments to the script i think it might help you with all Dell machines.
The script needs tinkering anyway if called from the logon script - right now it will ask every logon if the chipset software needs to be installed. More elegant would be to check for the existence of that software and let the script decide wether it needs to install, or not.
REM Determines model type of laptop and automatically installs
REM required system files and queries user for additionally programs
%SYSTEMDRIVE%
CD\DRV
if exist PCPBIOS.EXE goto exists
echo PCPBIOS.EXE not found
goto end
:exists
PCPBIOS >BIOS.TXT
type BIOS.TXT | FIND "Product Name =" > TEMP.BAT
> PRODUCT.BAT ECHO SET ModelID=%%3
REM >> PRODUCT.BAT DEL PRODUCT.BAT
CALL TEMP.BAT
If %ModelID% == C400 goto C400
If %ModelID% == C600 goto C600
If %ModelID% == C610 goto C610
If %ModelID% == C840 goto C840
If %ModelID% == D400 goto D400
If %ModelID% == D600 goto D600
If %ModelID% == D610 goto D610
If %ModelID% == X200 goto X200
If %ModelID% == M60 goto M60
If %ModelID% == 650 goto 650
goto end
goto end
Echo.
Echo.
Echo The Dell TrueMobile 1150 Client Software will now install
Echo Cancel the installation if you do not want it installed.
C:\DRV\COM\NIC2\setup
goto end
Echo.
Echo.
Echo The Dell TrueMobile 1150 Client Software will now install
Echo Cancel the installation if you do not want it installed.
c:\DRV\C600\NIC2\setup
Echo.
Echo.
Echo The Dell TrueMobile 1150 Client Software will now install
Echo Cancel the installation if you do not want it installed.
C:\DRV\COM\NIC2\setup
goto end
Echo.
Echo.
Echo The Dell TrueMobile 1150 Client Software will now install
Echo Cancel the installation if you do not want it installed.
C:\DRV\COM\NIC2\setup
goto end
Echo Installing Dell Desktop System Software
C:\DRV\COM\SYS1\Setup -s
echo Installation of Intel PRO/Wireless 2100 LAN Adapters
echo and Intel(R) PRO/Wireless 2915ABG Network Connection or
echo Intel(R) PRO/Wireless 2200BG Network Connection and
echo Dell Wireless WLAN Cards cannot be done automatically
echo please run the appropriate batch file on the desktop
echo and then delete.
copy C:\DRV\COM\*.bat C:\DOCUME~1\ADMINI~1\Desktop
pause
goto end
Echo Installing Dell Desktop System Software
C:\DRV\COM\SYS1\setup -s
Echo Installing O2Micro O2711EC1 PCMCIA/SmartCard Controller Driver
C:\DRV\D600\CHP1\setup -s
echo Installation of Intel PRO/Wireless 2100 LAN Adapters
echo and Intel(R) PRO/Wireless 2915ABG Network Connection or
echo Intel(R) PRO/Wireless 2200BG Network Connection and
echo Dell Wireless WLAN Cards cannot be done automatically
echo please run the appropriate batch file on the desktop
echo and then delete.
copy C:\DRV\COM\*.bat C:\DOCUME~1\ADMINI~1\Desktop
pause
goto end
Echo Installing Dell Desktop System Software
C:\DRV\COM\SYS1\setup -s
Echo Installing Dell Wireless 350 Bluetooth Internal Module Driver
echo Cancel installation if Bluetooth adapter is NOT installed
echo.
echo.
echo DO NOT END this batch!!!
pause
C:\DRV\D610\NIC2\Setup
echo Installation of Intel PRO/Wireless 2100 LAN Adapters
echo and Intel(R) PRO/Wireless 2915ABG Network Connection or
echo Intel(R) PRO/Wireless 2200BG Network Connection and
echo Dell Wireless WLAN Cards cannot be done automatically
echo please run the appropriate batch file on the desktop
echo and then delete.
copy C:\DRV\COM\*.bat C:\DOCUME~1\ADMINI~1\Desktop
pause
goto end
Echo.
Echo.
Echo The Dell TrueMobile 1150 Client Software will now install
Echo Cancel the installation if you do not want it installed.
C:\DRV\COM\NIC2\setup
goto end
Echo Installing Dell Desktop System Software
C:\DRV\COM\SYS1\setup -s
echo Installation of Intel PRO/Wireless 2100 LAN Adapters
echo and Intel(R) PRO/Wireless 2915ABG Network Connection or
echo Intel(R) PRO/Wireless 2200BG Network Connection and
echo Dell Wireless WLAN Cards cannot be done automatically
echo please run the appropriate batch file on the desktop
echo and then delete.
copy C:\DRV\COM\*.bat C:\DOCUME~1\ADMINI~1\Desktop
pause
goto end
goto end
REM Delete temporary batch files
DEL TEMP.BAT
DEL PRODUCT.BAT
DEL BIOS.TXT
Message Edited by Rijko on 05-07-2005 07:48 PM