Universal Silent Switch Finder 0.1 find switches for nearly all programs
#62
Posted 19 October 2005 - 05:19 PM
SpikedCola, on Oct 19 2005, 03:45 PM, said:
[HKEY_CLASSES_ROOT\exefile\shell\Find Silent Switch\command]
@="\"USSF.exe\" \"%1\""
But I just get a window asking me to pick the file...
Try CMenu.
http://www.msfn.org/board/index.php?showtopic=47645&hl=cmenu
#63
Posted 23 October 2005 - 08:34 AM
no use for me....
This post has been edited by muiz: 23 October 2005 - 08:34 AM
#64
Posted 16 April 2006 - 11:47 AM
(but not to rapidshare because i cant download from there)
edit: nevermind, i got it from a google search, sorry for bumping
This post has been edited by Colin-uk: 16 April 2006 - 11:50 AM
#66
Posted 03 May 2006 - 03:52 AM
Wonderful work. Thanks mate.
#67
Posted 03 May 2006 - 04:14 AM
#68
Posted 03 May 2006 - 06:57 PM
Still useless to me , sorry no offence
#69
Posted 15 June 2006 - 07:48 PM
while it is very normal applications
like firefox, msn messenger beta,...etc
#70
Posted 17 June 2006 - 11:36 AM
#71
Posted 04 July 2006 - 07:24 PM
#72
Posted 05 July 2006 - 09:27 AM
http://peid.has.it/
This post has been edited by urie: 05 July 2006 - 09:27 AM
#73
Posted 18 September 2006 - 07:45 AM
ZoSTeR, on Apr 15 2004, 01:17 PM, said:
It uses PEiD which can be found here.
Put the PEiD.exe in same folder as USSF.exe
Start USSF.exe and select the setup exe file.
Hopefully it will tell you which switches to use
-17.02.05 small update since helper.bin download didn't work anymore-
All I get is this everytime I select an installer:
[what am I doing wrong please?]
Attached File(s)
-
ussf_error.JPG (16.43K)
Number of downloads: 66
#74
Posted 29 September 2006 - 07:13 AM
thnx
#75
Posted 30 January 2007 - 12:05 PM
and all the links on this forum dont wanna work
#76
Posted 05 April 2007 - 05:48 PM
http://www.megaupload.com/?d=OPWCNG6D
#78
Posted 22 October 2007 - 06:41 AM
#79
Posted 02 January 2008 - 01:38 AM
http://www.softpedia.com/get/Programming/P...D-updated.shtml
Laso, you can find it on number 2 server here
http://www.peid.info/
To bad the program has not been updated since May of 2006.
This post has been edited by Triel: 02 January 2008 - 01:40 AM
#80
Posted 08 January 2008 - 02:24 PM
Hi, I have changed the beginning of ussf.au3 to check, if it got a file as parameter (rightclick and open with ussf).
And also to check where peid.exe is sitting (3 locations: scriptdir (dir of ussf), windowsdir and systemdir)
Only 1 file is checked, so no multiselect please. If more files are selected prior to rightclick the one under the mouse is checked.
; <AUT2EXE VERSION: 3.1.0.1>
; ----------------------------------------------------------------------------
; <AUT2EXE INCLUDE-START: D:\Dokumente\AutoIT Test\USSF.au3>
; ----------------------------------------------------------------------------
AutoItSetOption ( "TrayIconHide", 1)
If FileExists(@ScriptDir & "\peid.exe") Then
$peiddir = @ScriptDir
ElseIf FileExists(@WindowsDir & "\peid.exe") Then
$peiddir = @WindowsDir
ElseIf FileExists(@SystemDir & "\peid.exe") Then
$peiddir = @SystemDir
Else
MsgBox(0,"Error", "peid.exe not found!")
Exit
EndIf
If $CMDLINE[0] <> 0 Then
$FileName = $CMDLINE[1]
;MsgBox (0, "Parameter", "Es wurde: " & $pars & " eingegeben.")
Else
$FileName = FileOpenDialog("Select Installer to analyse", @WorkingDir, "(*.exe)", 1)
EndIf
;msgbox(0,"Info","" & $FileName)
If @error <> 1 Then
Run ($peiddir & "\peid.exe -hard " & '"' & $FileName & '"' ,"", @SW_HIDE)
WinWait ("PEiD v0.9")
$IDString= ControlGetText("PEiD v0.9", "", "Edit2")
SplashTextOn("USSF 0.11", "Scanning...",300,200)
While ($IDString ="Scanning...") or ($IDString ="")
Sleep (100)
$IDString= ControlGetText("PEiD v0.9", "", "Edit2")
WEnd
SplashOff()
WinClose ("PEiD v0.9")
$foundsomething = "n"
;msgbox(0,"Universal Silent Switch Finder 0.1",$IDString)
If StringInStr ($IDString, "Inno Setup") Then
msgbox(0,"Results","This is an Inno Setup installer." & @CR & @CR & _
"Silent switches are:" & @CR & _
"/SILENT or /VERYSILENT" & @CR & @CR & _
"Additional switches are: " & @CR & _
"/SP- Disables the ""This will install... Do you wish to continue?"" prompt at the beginning of Setup." & @CR & _
"/NOCANCEL Prevents the user from cancelling during the installation process." & @CR & _
"/NORESTART Instructs Setup not to reboot even if it's necessary." & @CR & _
"/SAVEINF=""filename"" Instructs Setup to save installation settings to the specified file." & @CR & _
"/LOADINF=""filename"" Instructs Setup to load the settings from the specified file after having checked the command
line." & @CR & _
"/DIR=""x:\dirname"" Overrides the default directory name displayed on the Select Destination Location wizard page." & @CR
& _
"/COMPONENTS=""comma separated list of component names"" Overrides the default components settings.")
$foundsomething = "y"
EndIf
If StringInStr ($IDString, "Wise") Then
msgbox(0,"Results","This is a Wise installer." & @CR & @CR & _
"Silent switch is:" & @CR & _
"/s" & @CR & _
"Alternative switches are: " & @CR & _
"/x ""x:\dirname"" Extract (don't install) files to path")
$foundsomething = "y"
EndIf
If StringInStr ($IDString, "Nullsoft") Then
msgbox(0,"Results","This is a Nullsoft NSIS installer." & @CR & @CR & _
"Silent switch is:" & @CR & _
"/S (all switches must be upper case)" & @CR & @CR & _
"Additional switches are: " & @CR & _
"/D=""x:\dirname"" Install program to path" & @CR & _
"/NCRC Skip CRC check")
$foundsomething = "y"
EndIf
If StringInStr ($IDString, "Installshield AFW") Then
msgbox(0,"Results","This is an Installshield installer." & @CR & @CR & _
"First unpack the monolithic setup file with WinRar." & @CR & _
"You either have a .CAB or .MSI based installer." & @CR & _
"For CAB based:" & @CR & _
"Record an installation with this command:" & @CR & _
"Setup.exe /r /f1""c:\setup.iss""" & @CR & _
"Now you can perform a silent installation with the iss file:" & @CR & _
"Setup.exe /s /f1""c:\setup.iss""" & @CR & _
" "& @CR & _
"For MSI based:" & @CR & _
"Msiexec /i setup.msi /qb")
$foundsomething = "y"
EndIf
If StringInStr ($IDString, "Installshield 2003") Then
msgbox(0,"Results","This is an Installshield 2003 installer." & @CR & @CR & _
"Try to retrieve the MSI file from the temp folder during installation." & @CR & _
"Then install with:" & @CR & _
"Msiexec /i setup.msi /qb")
$foundsomething = "y"
EndIf
If StringInStr ($IDString, "RAR SFX") Then
msgbox(0,"Results","This is a selfextracting RAR archive." & @CR & @CR & _
"The RAR comment contains the setup script.")
$foundsomething = "y"
EndIf
If StringInStr ($IDString, "ZIP SFX") Then
msgbox(0,"Results","This is a selfextracting ZIP archive." & @CR & @CR & _
"Extract the files and investigate further.")
$foundsomething = "y"
EndIf
If StringInStr ($IDString, "WinZip") Then
msgbox(0,"Results","This is a selfextracting WinZip archive." & @CR & @CR & _
"Extract the files and investigate further.")
$foundsomething = "y"
EndIf
If $foundsomething <> "y" Then
msgbox(0,"Results","Sorry, unknown installer.")
EndIf
;msgbox(0,"Universal Silent Switch Finder 0.11",$IDString)
EndIf
; ----------------------------------------------------------------------------
; <AUT2EXE INCLUDE-END: D:\Dokumente\AutoIT Test\USSF.au3>
; ----------------------------------------------------------------------------
Don't know if this code is the most recent. But I hope you get the point.
If anyone has newer versions please update in order to have those rightclick-feature often mentioned in this thread.
To use it, import this:
Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\exefile\shell\Identify with USSF\command] @="\"C:\\Windows\\ussf.exe\" \"%1\""
This post has been edited by stevecharon: 08 January 2008 - 02:27 PM
- ← Help For silent Install
- Application Installs
- Anyone know silent install switches for TeamViewer? →



Help


Back to top









