Is it possible to have the taskbar visible while WPI is doing its thing after logon? I need users to be able to access things like windows explorer and a few others. Until now I've been using a workaround, by launching specific control panel windows from a batch file, for example. I tried to do the same thing with explorer, but it just seems to hang. Even the batch file fails to continue processing after it tries to launch explorer.exe. I can see that the process has been started when I open the task manager, and killing it allows the batch file to resume, but no explorer window in sight.
Please note that this is not the same question as has been asked a few times before, i.e.: getting the taskbar to show while you are configuring WPI. I am talking specifically about when WPI runs after OS installation and logon. Here is a sample batch file that opens the network connections control panel (which works) and then explorer (which does not work):
CODE
ECHO Start configuring network connections:
PAUSE
%SYSTEMROOT%\system32\ncpa.cpl
ECHO.
ECHO Start performing domain controller promotion:
PAUSE
%SYSTEMROOT%\explorer.exe /e,/root,%SYSTEMDRIVE%\SetupSupport\Domain Controllers\
ECHO.
ECHO Reboot and begin installation:
PAUSE
PAUSE
%SYSTEMROOT%\system32\ncpa.cpl
ECHO.
ECHO Start performing domain controller promotion:
PAUSE
%SYSTEMROOT%\explorer.exe /e,/root,%SYSTEMDRIVE%\SetupSupport\Domain Controllers\
ECHO.
ECHO Reboot and begin installation:
PAUSE
I assume this has something to do with where in the OS load/logon sequence WPI takes over. Perhaps there is a way to only start WPI a little later?
P.S.: I'm doing unattended Server 2003 installations + WPI.