MHz, on Mar 28 2009, 10:33 PM, said:
The dialogs already exist during setup so I fail to see the relevance stated about "slowing" down the install.
...
Resources wasted would be very little to notice.
This was also my conclusion. It would take a grossly inefficient program to casue a noticable slow down of setup.
MHz, on Mar 28 2009, 10:33 PM, said:
Info
here shows you how to remove the billboard so the dialogs are seen without any other action needed nor any resources wasted.
The page linked to is of interest. It shows what seems to be the only method of not showing the billboards for the entire GUI setup.
The method of removing the use of the billboards during GUI setup shows the dialogue boxes centered both horizontally and vertically. Making the dialogue boxes hidden by the billboard visible by sending [Shift] + [F11] results in the dialogue box visible aligned centered verticall, but not horizontally. Perhaps [Shift] + [F11] invokes a repositioning of a dialogue box.
MHz, on Mar 28 2009, 10:33 PM, said:
Here is an AutoIt script that may help if you want to keep the billboard. Changes maybe needed depending on the state and reaction of the windows.
$title = 'Windows XP Professional Setup'
_WinWaitSetState($title, 'Installing Devices')
_WinWaitSetState($title, 'Network Settings')
_WinWaitSetState($title, 'Installing Components')
_WinWaitSetState($title, 'Performing Final Tasks')
Exit
Func _WinWaitSetState($title, $text = '', $flag = @SW_SHOW)
WinWait($title, $text)
WinSetState($title, $text, $flag)
WinActivate($title, $text)
EndFunc
Thanks,
Given this information, I now intend to use versions of the setup with and without the billboards, but always displaying existing the dialogue boxes.
Of interest is GrofLuigi's post
here. GrofLuigi claims a "speeding up [of] the process" when billboards are removed. The process GrofLuigi was referring to, I believe to be the GUI part of setup. If my interpretation of his statement is correct and its significance valid, removing the billboards should reduce the time Windows setup takes to install Windows XP/Server 2003, all else equal. The modification to remove the billboards is, however, inconvenient for a frequently updated installation source when patch integration is performed.
I shall schedule some time to try the script compiled to an application in a few days.
Disabling of the billboard would have been a useful option for the WINNT.SIF answer file.
EDIT: This post has been edited to fix a mispost. Not all words copied and pasted when copying and pasting text between a few applications (oddly).
This post has been edited by Ascii2: 02 April 2009 - 12:41 AM