MSFN Forum: TweakUI 2.10 (for WinXP) won't install silently - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

TweakUI 2.10 (for WinXP) won't install silently Rate Topic: -----

#1 User is offline   chris_netguru 

  • Group: Members
  • Posts: 2
  • Joined: 04-February 05

Posted 06 February 2005 - 01:00 AM

I've tried using the standard switches for the powertoys:
tweakuipowertoysetup.exe /s /v/qn

...but it ignores the switches and installs normally (installer dialogs, etc.)

When I try to find out what the switches are...
tweakuipowertoysetup.exe /?
...it just launches a normal install as well.

All the other powertoys work fine with the standard switches, but this one is a pain.
I know I can install tweakui 2.00.1.0 silently using the file from msfn, but I want the newest version.

Any thoughts?

Chris


#2 User is offline   totoymola 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 944
  • Joined: 24-September 04

Posted 06 February 2005 - 03:30 AM

Do you really have to install it?

This is not an InstallShield installer, so your switch will not work. It is an sfx, but a different kind.

Suggestions for now:

1. Don't install it. Simply etract the file using winrar.

or

2. Use AutoIt.

:)

I'm also intersted to know which software is used to make sfx archives like this.

#3 User is offline   glent 

  • Tpyo Spceialist
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,041
  • Joined: 16-August 04

Posted 06 February 2005 - 03:51 AM

Take TweakUI.exe for windows\system32 and drop it into $OEM$\$$\System32. use this Vbs i found over at kellys corner to add it to the control panel

On Error Resume Next

Set WSHShell = WScript.CreateObject("WScript.Shell")

Set fso = CreateObject("Scripting.FileSystemObject")

SysDir = fso.GetSpecialFolder(1)
Tweak = SysDir & "\tweakui.exe"

If fso.FileExists(Tweak) Then

   Set WSHShell = WScript.CreateObject("WScript.Shell")

   p1 = "HKCR\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\"

   WshShell.RegWrite p1, "TweakUIXP"
   WshShell.RegWrite p1 & "InfoTip", "Starts TweakUI for Windows XP"
   WshShell.RegWrite p1 & "DefaultIcon\","%SystemRoot%\\System32\\tweakui.exe,0", "REG_EXPAND_SZ"
   WshShell.RegWrite p1 & "Shell\Open\Command\","tweakui.exe"
   WshShell.RegWrite p1 & "ShellFolder\Attributes",48,"REG_DWORD"

   WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\", "Add Tweakui to Control Panel"

Else
End If

Set FSO = Nothing
Set WshShell = Nothing


#4 User is offline   prathapml 

  • Follow the rules please :-)
  • Group: Patrons
  • Posts: 6,791
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 06 February 2005 - 06:40 AM

totoymola, on Feb 6 2005, 03:00 PM, said:

I'm also intersted to know which software is used to make sfx archives like this.

It uses IEXPRESS probably.
Try running the iexpress command at a CMD prompt.

#5 User is offline   <SparTacuS> 

  • I want to know . . . everything!
  • PipPip
  • Group: Members
  • Posts: 205
  • Joined: 24-April 04

Posted 06 February 2005 - 10:53 AM

There used to be a repackaged TweakUI on the Guide site - it's no longer there but I have a copy.
PM me if you want it with your e-mail address

#6 User is offline   mc134 

  • Junior
  • Pip
  • Group: Members
  • Posts: 67
  • Joined: 15-January 04

Posted 06 February 2005 - 11:28 AM

I have been using this method for about 6 months now and it works great. Add this to your batch file:

ECHO. 
ECHO Installing TweakUI 2.10 Powertoy
ECHO Please wait...
start /wait %systemdrive%\install\PowerToys\TweakUI.msi /QB
ECHO.


Of course have the Tweakui.msi in the right folder and then add this to your registry tweaks so that it is added to control panel:

;Show TweakUI in Control Panel
[HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}]
@="TweakUI"
"InfoTip"="Start TweakUI"

[HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\DefaultIcon]
@="%SystemRoot%\\\\System32\\\\tweakui.exe,0"

[HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell]

[HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell\Open]

[HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell\Open\command]
@="tweakui.exe"

[HKEY_CLASSES_ROOT\CLSID\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}\ShellFolder]
"Attributes"=dword:00000030

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{D14ED2E1-C75B-443c-BD7C-FC03B2F08C17}]
@="Tweakui of the system control adds"


#7 User is offline   chris_netguru 

  • Group: Members
  • Posts: 2
  • Joined: 04-February 05

Posted 06 February 2005 - 01:34 PM

Thanks to all who have replied.

glent: Where and when would I execute this script? If I didn't want to add it to the control panel but just put a shortcut somewhere in the start manu, can it be done?

mc134: I don't have an msi version of TweakUI. Where did you get it? Is it version 2.10?

Chris

#8 User is offline   totoymola 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 944
  • Joined: 24-September 04

Posted 06 February 2005 - 01:47 PM

Quote

It uses IEXPRESS probably.
Try running the iexpress command at a CMD prompt.


Really? I know IEXPRESS, but I don't know how to make setup welcome screens from it.

Like this

Posted Image

#9 User is offline   glent 

  • Tpyo Spceialist
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,041
  • Joined: 16-August 04

Posted 06 February 2005 - 02:35 PM

Right click the file and choose create shortcut, and drop it into a folder using this structure

$OEM$\$Docs\All Users\Start Menu\Programs

this will place it in the start menu

#10 User is offline   mc134 

  • Junior
  • Pip
  • Group: Members
  • Posts: 67
  • Joined: 15-January 04

Posted 06 February 2005 - 02:55 PM

I have it so just PM me if you want me to send it to you.

#11 User is offline   totoymola 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 944
  • Joined: 24-September 04

Posted 06 February 2005 - 04:02 PM

Quote

I don't have an msi version of TweakUI. Where did you get it? Is it version 2.10?


I will try to build one after I finish reviewing. :)

#12 User is offline   PerfectSwanson 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 06-July 05

  Posted 10 October 2005 - 02:50 PM

I found a few of the Powertoys' MSI files in this directory:
C:\WINDOWS\Downloaded Installations

To install the MSI files silently, I suggest using "Powertoy.msi /?" to find all the switches. For an installation involving no UI and no user interaction, use:
Calculator Powertoy for Windows XP.msi /quiet /qn /norestart

:D

This post has been edited by PerfectSwanson: 10 October 2005 - 03:12 PM


#13 User is offline   RayOK 

  • Member
  • PipPip
  • Group: Members
  • Posts: 152
  • Joined: 21-September 03

Posted 10 October 2005 - 10:00 PM

I just drop TweakUI.exe into $OEM$\$$\System32 and use the registry commands that mc134 already posted.. Works fine :)

#14 User is offline   PerfectSwanson 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 06-July 05

Posted 10 October 2005 - 11:12 PM

TweakUI.msi will not show up in C:\WINDOWS\Downloaded Installations\, but most of the other powertoys will. Personally, I did the same thing with TweakUI, myself, put it on the Control Pannel, and register it, so I can do Start -> Run -> tweakui and it is run. :)

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy