
Originally Posted by
djones
1. On first boot after deployment, the 'SCSI/RAID Host Controller' tries to install but fails. If I then uninstall it via the Device Manager and reboot, it installs correctly without a problem.
2. I created the image initially using our slowest/oldest machine which happened to be a laptop. (I will be moving to using VMWare in the future.) Unfortunately, I forgot about power management settings

so when I deploy to desktops, I have to change the default settings to 'always on' on first boot. Is there a way round this?
Dave
1. Are you putting Daemon Tools on the image - if so, we run this as part of the machine startup:
Code:
sCmd="\\server\share\devcon\i386\devcon.exe remove ""ACPI\PNPA000"""
oShell.run sCmd,,true
wscript.sleep 5000
sCmd="\\server\share\devcon\i386\devcon.exe rescan"
oShell.run sCmd,,true - this removes the device and then does a rescan. Devcon is an MS download (and very useful!)
2. powercfg is your friend:
Code:
sCmd="powercfg /setactive ""home/office desk"""
oShell.run sCmd
- choose your power saving scheme as appropriate.
(both are script fragments - you need
Code:
set oShell=createobject("wscript.shell") somewhere at the start)