Jump to content

What are the Softsqueeze command switches?


DungFu

Recommended Posts

I have successfully put a list together of all the apps that I want as silent installers except softsqueeze and I was wondering if anyone knew what the command switches are for it to install it as a silent application.

I tried /S but it just runs normally.

Please if anyone has any idea or ideas on what to test please let me know.

Thx,

DungFu

Edited by Tripredacus
Link to comment
Share on other sites


If this is compiled with the Install4J installer, it SHOULD have the -q switch, which it doesn't, so the chances are, that it doesn't have a silent switch.

You could use AutoIt:

Here's the code I used:

Opt("WinWaitDelay",100)

Opt("WinTitleMatchMode",4)

Opt("WinDetectHiddenText",1)

Opt("MouseCoordMode",0)

Run('softsqueeze_windows_3_5.exe')

; I couldn't use the AutoIt window info identifier, the only thing that that showed was SunAwtFrame all the way through.

$Mydir=@ProgramFilesDir&'\SoftSqueeze' ;This is the directory where the program is installed.

WinWait("Setup - Softsqueeze 3.5","")

If Not WinActive("Setup - Softsqueeze 3.5","") Then WinActivate("Setup - Softsqueeze 3.5","")

WinWaitActive("Setup - Softsqueeze 3.5","")

Send("{ENTER}")

WinWaitActive("Setup - Softsqueeze 3.5","")

Send("{TAB 2}{SPACE}{TAB 3}{ENTER}")

WinWaitActive("Setup - Softsqueeze 3.5","")

Send($Mydir)

Send("{ENTER}")

WinWaitActive("Setup - Softsqueeze 3.5","")

Send("{TAB 6}{SPACE}{TAB 3}{ENTER}")

Sleep(2000)

WinWaitActive("Setup - Softsqueeze 3.5","")

Send("{TAB}{SPACE}")

WinWait("Setup - Softsqueeze 3.5","")

If Not WinActive("Setup - Softsqueeze 3.5","") Then WinActivate("Setup - Softsqueeze 3.5","")

WinWaitActive("Setup - Softsqueeze 3.5","")

Send("{TAB}{ENTER}")

Edited by Dislocated Time
Link to comment
Share on other sites

oh ok thanks for the reply and I will have to try out AutoIt and install4j and see how they work. Hopefully I can get softsqueeze to be silent because that would be sweet!

Edited by Tripredacus
Link to comment
Share on other sites

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...