Difference between revisions of "Tweak UI Powertoy"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
Line 8: Line 8:
 
  <install cmd='%SOFTWARE%\powertoys\tweakuipowertoysetup.exe /S /v/qn' />
 
  <install cmd='%SOFTWARE%\powertoys\tweakuipowertoysetup.exe /S /v/qn' />
 
  <remove cmd="msiexec /qb /l* c:\netinst\logs\powertoy.log x{C7793EE8-F666-4E6B-9827-76468679480E}" />
 
  <remove cmd="msiexec /qb /l* c:\netinst\logs\powertoy.log x{C7793EE8-F666-4E6B-9827-76468679480E}" />
 +
</package>
 +
</source>
 +
 +
For the new version 2.10.0.0 don't work the silent install, you can do the next: 
 +
-Extract the file "TweakUI.exe" of the installer TweakUiPowertoySetup.exe with WinRar
 +
-Put this on %SOFTWARE%\powertoys
 +
-Download tool nircmdc.exe for create the shortcuts
 +
 +
Note: I use the variable MENUADMIN for the star menu of the user run the wpkg.
 +
 +
And you can use this for install:
 +
<source lang="xml">
 +
<package
 +
        id="tweakuipowertoy"
 +
        name="Tweak UI"
 +
        revision="1"
 +
        priority="351"
 +
        reboot="false">
 +
        <check type="file" condition="exists" path="%WINDIR%\system32\TweakUI.exe" />
 +
        <install cmd='cmd /c xcopy /v /s /i /e /h /c /y /q "%SOFTWARE%\powertoys\TweakUI.exe" "%WINDIR%\system32\"' />
 +
        <install cmd='"%SOFTWARE%\tools\nircmdc.exe" shortcut "~$sys.windir$\system32\TweakUI.exe" "~$folder.programs$\Herramientas" "Tweak UI"'>
 +
            <exit code="4205226" />
 +
        </install>
 +
        <upgrade cmd='cmd /c xcopy /v /s /i /e /h /c /y /q "%SOFTWARE%\powertoys\TweakUI.exe" "%WINDIR%\system32\"' />
 +
        <upgrade cmd='"%SOFTWARE%\tools\nircmdc.exe" shortcut "~$sys.windir$\system32\TweakUI.exe" "~$folder.programs$\Herramientas" "Tweak UI"'>
 +
            <exit code="4205226" />
 +
        </upgrade>
 +
        <remove cmd='cmd /c if exist "%WINDIR%\system32\TweakUI.exe" del "%WINDIR%\system32\TweakUI.exe"' >
 +
        <exit code="1" />
 +
        <exit code="0" />
 +
        </remove>
 +
        <remove cmd='cmd /c if exist "%USERPROFILE%\%MENUADMIN%\Herramientas\Tweak UI.lnk" del "%USERPROFILE%\%MENUADMIN%\Herramientas\Tweak UI.lnk"' >
 +
        <exit code="1" />
 +
        <exit code="0" />
 +
        </remove>
 
</package>
 
</package>
 
</source>
 
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 18:45, 6 June 2008

This is a silent installer and uninstaller for Tweak UI Powertoy.

Note: Works with this: http://download.microsoft.com/download/whistler/Install/2/WXP/EN-US/TweakUiPowertoySetup.exe

<package id="tweakui" name="Tweak UI powertoy" revision="1" priority="0" reboot="false">
 <check type="uninstall" condition="exists" path="Tweakui Powertoy for Windows XP" />
 <install cmd='%SOFTWARE%\powertoys\tweakuipowertoysetup.exe /S /v/qn' />
 <remove cmd="msiexec /qb /l* c:\netinst\logs\powertoy.log x{C7793EE8-F666-4E6B-9827-76468679480E}" />
</package>

For the new version 2.10.0.0 don't work the silent install, you can do the next: -Extract the file "TweakUI.exe" of the installer TweakUiPowertoySetup.exe with WinRar -Put this on %SOFTWARE%\powertoys -Download tool nircmdc.exe for create the shortcuts

Note: I use the variable MENUADMIN for the star menu of the user run the wpkg.

And you can use this for install:

<package
        id="tweakuipowertoy"
        name="Tweak UI"
        revision="1"
        priority="351"
        reboot="false">
        <check type="file" condition="exists" path="%WINDIR%\system32\TweakUI.exe" />
        <install cmd='cmd /c xcopy /v /s /i /e /h /c /y /q "%SOFTWARE%\powertoys\TweakUI.exe" "%WINDIR%\system32\"' />
        <install cmd='"%SOFTWARE%\tools\nircmdc.exe" shortcut "~$sys.windir$\system32\TweakUI.exe" "~$folder.programs$\Herramientas" "Tweak UI"'>
            <exit code="4205226" />
        </install>
        <upgrade cmd='cmd /c xcopy /v /s /i /e /h /c /y /q "%SOFTWARE%\powertoys\TweakUI.exe" "%WINDIR%\system32\"' />
        <upgrade cmd='"%SOFTWARE%\tools\nircmdc.exe" shortcut "~$sys.windir$\system32\TweakUI.exe" "~$folder.programs$\Herramientas" "Tweak UI"'>
            <exit code="4205226" />
        </upgrade>
        <remove cmd='cmd /c if exist "%WINDIR%\system32\TweakUI.exe" del "%WINDIR%\system32\TweakUI.exe"' >
	        <exit code="1" />
	        <exit code="0" />
        </remove>
        <remove cmd='cmd /c if exist "%USERPROFILE%\%MENUADMIN%\Herramientas\Tweak UI.lnk" del "%USERPROFILE%\%MENUADMIN%\Herramientas\Tweak UI.lnk"' >
	        <exit code="1" />
	        <exit code="0" />
        </remove>
</package>