Time Zone msi ???
Anyone messed with this?
I am trying to modify so that it runs without the user having to start it the first time and get rid of the eula.
I am trying to modify so that it runs without the user having to start it the first time and get rid of the eula.
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
Robo Scripter
17 years ago
I assume that you are asking about the Time Zone Fix required for Day Light Savings.
We produced a MSI that laid the Microsoft executables for Windows 2000 and Windows XP down in a folder. The executables were then executed relative the systems OS as follows:
CA_Windows_2K
Type = 3154
Source = Windows2000-KB928388-x86-ENU.EXE
Target = /quiet /passive /norestart
Condition = ( NOT Installed ) AND ( VersionNT =500 ) AND ( ServicePackLevel =4 ) AND ( KB928388_W2K =0 )
CA_Windows_XP
Type = 3154
Source =WindowsXP-KB928388-x86-ENU.exe
Target = /quiet /passive /norestart
Condition = ( NOT Installed ) AND ( VersionNT =501 ) AND ( ServicePackLevel =2 ) AND ( KB928388_WXP =0 )
The Switches above disable the EULA and allow the install to run totally silent. Naturally there is no remove for these Hot Fixes and the repair does nothing as the “KB928388_W2K†and “KB928388_WXP†are properties populated by a registry searches to that determine if the hot fixes have been installed.
These Search keys are as follows;
HKEY_LOCAL_MACHINE
SOFTWARE\Microsoft\Updates\Windows XP\SP3\KB928388
And
HKEY_LOCAL_MACHINE
SOFTWARE\Microsoft\Updates\Windows 2000\SP5\KB928388
Regards,
We produced a MSI that laid the Microsoft executables for Windows 2000 and Windows XP down in a folder. The executables were then executed relative the systems OS as follows:
CA_Windows_2K
Type = 3154
Source = Windows2000-KB928388-x86-ENU.EXE
Target = /quiet /passive /norestart
Condition = ( NOT Installed ) AND ( VersionNT =500 ) AND ( ServicePackLevel =4 ) AND ( KB928388_W2K =0 )
CA_Windows_XP
Type = 3154
Source =WindowsXP-KB928388-x86-ENU.exe
Target = /quiet /passive /norestart
Condition = ( NOT Installed ) AND ( VersionNT =501 ) AND ( ServicePackLevel =2 ) AND ( KB928388_WXP =0 )
The Switches above disable the EULA and allow the install to run totally silent. Naturally there is no remove for these Hot Fixes and the repair does nothing as the “KB928388_W2K†and “KB928388_WXP†are properties populated by a registry searches to that determine if the hot fixes have been installed.
These Search keys are as follows;
HKEY_LOCAL_MACHINE
SOFTWARE\Microsoft\Updates\Windows XP\SP3\KB928388
And
HKEY_LOCAL_MACHINE
SOFTWARE\Microsoft\Updates\Windows 2000\SP5\KB928388
Regards,
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.