Jump to content

Who knows UXTheme Multi-Patcher.exe Slience install switches


Recommended Posts


Posted

If I remember at the end the autopatcher reboot and you can't bypass the reboot ... I don't know the silent switch, I have searched a bit but not found last months ago

Posted
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. :lol:

Or perhaps repack it better and have WFP disabled. Or add it to the source as most other do for a Unattended windows cd.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...