KidJoe
02-29-2004, 16:55
I'm working on an unattended install CD for my WinXP. It installs XP slipstreamed with SP1, with my specific choices based on my editied WINNT.SIF file, along with all the hotfixes, updates, drivers, etc. that my machine needs..
I've run into an issue installing the IBM Widcomm bluetooth drivers as part of this.
Since its install uses InstallShield, and I will always take the same options, I wanted to create a SETUP.ISS file to use so It does everything without the user being prompted. Unfortuately, I can't seem to get this to work. I always get prompted like a nomal install. Any Ideas??
The various message boards I've asked all respond with "wait for SP2 it has bluetooth built in." But I can't wait that long :)
My goal is to use the BT silent install in the following bat file to install the Widcomm drivers, kill the processes, and copy the patched files into their loctions as part of the unattended CD... This batch file works to install everything, except you are prompted by the widcomm install to keep clicking next, etc.... So its already to make it silent :) Once I get the way to make the widcomm install silent, I can append that to the line that reads... start /wait setup.exe and I'll be happy.
--------[Begin BTPatch_Setup.CMD]------------
c:
cd \drivers\WIN\BDCACT
start /wait setup.exe
start /wait taskkill /f /im bttray.exe /t
start /wait taskkill /f /im btwdins.exe /t
c:
cd C:\drivers\WIN\BDCACT\patch
copy BTTray.exe "C:\Program Files\IBM\Bluetooth Software" /y
copy BTStackServer.exe "C:\Program Files\IBM\Bluetooth Software" /y
copy WBTAPI.DLL "C:\Windows\System32" /y
--------[End BTPatch_Setup.CMD]------------
I've run into an issue installing the IBM Widcomm bluetooth drivers as part of this.
Since its install uses InstallShield, and I will always take the same options, I wanted to create a SETUP.ISS file to use so It does everything without the user being prompted. Unfortuately, I can't seem to get this to work. I always get prompted like a nomal install. Any Ideas??
The various message boards I've asked all respond with "wait for SP2 it has bluetooth built in." But I can't wait that long :)
My goal is to use the BT silent install in the following bat file to install the Widcomm drivers, kill the processes, and copy the patched files into their loctions as part of the unattended CD... This batch file works to install everything, except you are prompted by the widcomm install to keep clicking next, etc.... So its already to make it silent :) Once I get the way to make the widcomm install silent, I can append that to the line that reads... start /wait setup.exe and I'll be happy.
--------[Begin BTPatch_Setup.CMD]------------
c:
cd \drivers\WIN\BDCACT
start /wait setup.exe
start /wait taskkill /f /im bttray.exe /t
start /wait taskkill /f /im btwdins.exe /t
c:
cd C:\drivers\WIN\BDCACT\patch
copy BTTray.exe "C:\Program Files\IBM\Bluetooth Software" /y
copy BTStackServer.exe "C:\Program Files\IBM\Bluetooth Software" /y
copy WBTAPI.DLL "C:\Windows\System32" /y
--------[End BTPatch_Setup.CMD]------------