jc888, on Apr 21 2006, 03:36 AM, said:
Hi all
Who knows UXTheme Multi-Patcher.exe
slience install command line switches?
Don't mention the AUTOIT, I don't like it.
I want totally slicence.
Anybody can help?
the original exe in the attachment.
Impossible to get total silence from the installer. It uses a Wise Installer by memory which is /s. But it is not silent at the end.
This is what I use as all the installer basically does not totally silent, is copy the uxtheme.dll to the system directory. But you may have WFP jump in also. I just use the dll from the installer, with this script.
Opt('TrayIconDebug', 1)
If @OSVersion <> 'WIN_XP' Then Exit 1
$source = @ScriptDir & '\uxtheme.dll'
If FileChangeDir(@SystemDir) Then
FileMove('dllcache\uxtheme.dll', 'dllcache\uxtheme.old')
FileMove('uxtheme.dll', 'uxtheme.old')
FileCopy($source, 'dllCache\uxtheme.dll', 1)
FileCopy($source, 'uxtheme.dll', 1)
FileDelete('dllcache\uxtheme.old')
FileDelete('uxtheme.old')
If WinWait('Windows File Protection', 'Files that are required', 10) Then
ControlClick('Windows File Protection', 'Files that are required', 'Button3')
If WinWait('Windows File Protection', 'You chose not to restore', 5) Then
ControlClick('Windows File Protection', 'You chose not to restore', 'Button1')
EndIf
EndIf
EndIf
Exit
Yep, an AutoIt script.
Or perhaps repack it better and have WFP disabled. Or add it to the source as most other do for a Unattended windows cd.