MSFN Forum: Microsoft Powertoys - 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

Microsoft Powertoys Not all of them use /S /V/qn Rate Topic: -----

#1 User is offline   T D 

  • Go MSFN!
  • PipPipPipPipPip
  • Group: Members
  • Posts: 940
  • Joined: 05-April 06

Posted 28 May 2006 - 11:19 AM

Hello
Can someone tell me the switches for all the Microsoft powertoys? Not the installshield ones that use /S /V/qn?
Or am I going to have to repackage it or use AutoIt?

Thanks


#2 User is offline   blinkdt 

  • Somewhat Knowledgeable
  • PipPipPipPip
  • Group: Members
  • Posts: 582
  • Joined: 30-September 03
  • OS:Vista Ultimate x64
  • Country: Country Flag

Posted 29 May 2006 - 11:21 PM

I install TweakUI, SyncToy, and Power Calculator as part of my unattended routine. All of these can be extracted using WinRAR to reveal the .msi file, which can be edited with Orca (to remove the stock shortcuts) and installed using standard /qb or /qn switches. The HTML Slideshow is another easy .msi extract/install, but the Raw Viewer extracts to Local Settings --> Temp (as an .msi) and can be grabbed there. I suspect other powertoys can be similarly installed. The Image Resizer toy is a .dll that could probably be copied to system32 and registered, for example. I use AutoIt to perform the actual installs:
SplashTextOn("", "" & @CRLF & "Installing Calculator PowerToy..."  & @CRLF & "", 500, 55, -1, -1, 1, "Arial", 12, 12)
Sleep(1000)
SplashOff()
RunWait('msiexec /i "' & @ScriptDir & '\Extras\PowerToys\PowerCalc.msi" /qb')
Sleep(100)
FileCreateShortcut( @SystemDir & "\PowerCalc.exe", @ProgramsCommonDir & "\Accessories\Power Calculator.lnk")
Sleep(1500)

SplashTextOn("", "" & @CRLF & "Installing Synchronize Folders PowerToy..."  & @CRLF & "", 500, 55, -1, -1, 1, "Arial", 12, 12)
Sleep(1000)
SplashOff()
RunWait('msiexec /i "' & @ScriptDir & '\Extras\PowerToys\SyncToy.msi" /qb')
Sleep(100)
FileCreateShortcut( @ProgramFilesDir & "\Microsoft\SyncToy\SyncToy.exe", @ProgramsCommonDir & "\Accessories\Synchronize Folders.lnk")
Sleep(1500)

SplashTextOn("", "" & @CRLF & "Installing TweakUI PowerToy..."  & @CRLF & "", 500, 55, -1, -1, 1, "Arial", 12, 12)
Sleep(1000)
SplashOff()
RunWait('msiexec /i "' & @ScriptDir & '\Extras\PowerToys\TweakUI.msi" /qb')
RunWait("REGEDIT /S" & @ScriptDir & "\Extras\PowerToys\TweakUI.reg")
Sleep(100)
FileCreateShortcut( @SystemDir & "\tweakui.exe", @ProgramsCommonDir & "\Accessories\System Tools\TweakUI.lnk")
Sleep(100)
DirRemove( @ProgramsDir & "\Powertoys for Windows XP", 1)
Sleep(100)
DirRemove( @ProgramsCommonDir & "\Powertoys for Windows XP", 1)
Sleep(1500)


#3 User is online   ajua 

  • Custom Installer Maker
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,260
  • Joined: 16-April 05

Posted 29 May 2006 - 11:24 PM

to register a dll file just use this command:
regsvr32 /u /s file.dll
save it to a cmd file and put it together with the dll. that will do it.

#4 User is offline   T D 

  • Go MSFN!
  • PipPipPipPipPip
  • Group: Members
  • Posts: 940
  • Joined: 05-April 06

Posted 30 May 2006 - 10:47 AM

Quote

regsvr32 /u /s file.dll

You mean regsvr32 /s file.dll

Thanks elajua but what are the dlls (other than phototoys.dll for image resizer) for wallpaper changer and tweak ui?
<Edit> on second thoughts, I'll use the addon for tweak UI.</edit>

Thanks blinkdt, but I'm not a big fan of AutoIt. Where did you get the MSI's from? Did you repackage them or download them or what.
I appreciate the help elajua and blinkdt :)

This post has been edited by T D: 30 May 2006 - 10:51 AM


#5 User is offline   ZcWorld 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 611
  • Joined: 23-February 05

Posted 31 May 2006 - 08:47 AM

one way of doing it is this wasy
run the "Image Resizer Powertoy for Windows XP " than it will extract the .MSI file into your C:\WINDOWS\Downloaded Installations
copy that file out of there and than
its just /passive
to install slient

#6 User is offline   oioldman 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 967
  • Joined: 16-April 04
  • OS:Windows 7 x64

Posted 31 May 2006 - 08:55 AM

i just the /S /v/qn and can't see the gain from doing it different other that extracting the msi and using /passive or hacking away at it.

why for you not want to use traditional methods?

#7 User is online   ajua 

  • Custom Installer Maker
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,260
  • Joined: 16-April 05

Posted 31 May 2006 - 09:24 PM

i just use the msi released here for tweak ui.
i meant to register the dll for image resizer only, not wallpaper changer (cont know if it uses a setup or a dll)

#8 User is offline   blinkdt 

  • Somewhat Knowledgeable
  • PipPipPipPip
  • Group: Members
  • Posts: 582
  • Joined: 30-September 03
  • OS:Vista Ultimate x64
  • Country: Country Flag

Posted 31 May 2006 - 11:49 PM

"not a big fan of AutoIt." Say what? :D AutoIt rules! I've converted all of my batch files to AutoIt routines, the splash screens are a nice addition to the install routine. IMHO.
"Where did you get the MSI's from?" As I explained, I used WinRAR to extract them directly from the original installer downloaded from Microsoft (right-click, Extract to...) or ran the installer, then snatched them from the Local Settings directory. Plenty of information on this board explaining how that is done.
"Why work with the .msi files?" The ability to edit the .msi directly with Orca or another editor is awesome. I haven't figured it all out, but I now know just enough to be dangerous and continue to learn. That's what it's all about. :P

This post has been edited by blinkdt: 31 May 2006 - 11:53 PM


#9 User is offline   T D 

  • Go MSFN!
  • PipPipPipPipPip
  • Group: Members
  • Posts: 940
  • Joined: 05-April 06

Posted 01 June 2006 - 07:24 AM

Quote

Say what? AutoIt rules!

I meant because when you autoit an installation, it's not as good as switches because you can still see the UI.
And also, only Image resizer seems to leave an msi in %temp%.

@oioldman I don't mind switches, it's just that only Image Resizer supports switches.

@elajua Thanks, you gave me an idea about exe and dll files. I just copied the program files folder of wallpaper changer into $OEM$\$PROGS because the only thing in the registry for wallpaper changer is uninstall info.

Thanks all! :)

This post has been edited by T D: 01 June 2006 - 07:25 AM


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