Jump to content

Alcohol 120% 1.9.5.3823


muiz

Recommended Posts

There is a link to the uninstaller in the dir created in the startmenu.

When i use my own script it does , but not with MHZ's

:hello:

i have this problem 2,this installer sux.MUIZ can you upload the script you using so I could try it out and is it language dependant?

Tnx in advance

Link to comment
Share on other sites


There is a link to the uninstaller in the dir created in the startmenu.

When i use my own script it does , but not with MHZ's

:hello:

i have this problem 2,this installer sux.MUIZ can you upload the script you using so I could try it out and is it language dependant?

Tnx in advance

:unsure: Im sorry m8 :yes:

Link to comment
Share on other sites

Using the identical AutoIt3 script i posted earlier, i created this Switchless Installer.

YOU MUST install the SPTD drivers which i posted a link to earlier in this thread thru svcpack before using this in runonce or runounceex. Remember, this IS the retail version, and cannot be used untill you deal with registration. Get it here

skark

Nice try , but on my screen the cursor dont click the buttons but out of the alcohol window , so it stops there.

I made a swichlessinstaller with MHz's script , works almost silent.

MHz script version :

Alcohol 120% v1.9.5.3823.MHz

And the one with my script , not as silent as MHz's but with multilanguage support , and can be uninstalled from program files. ( not ad remove software )

Maybe MHz can add the language support and the uninstall , to a script that works just as silent as his?

That would be cool , i like my alcohol120 in dutch.

muiz script version :

Alcohol 120% v1.9.5.3823.muiz

Both need SPTD.exe installed from SVCPACK.

Edited by muiz
Link to comment
Share on other sites

Nice try , but on my screen the cursor dont click the buttons but out of the alcohol window , so it stops there.
It was only tested on standard resolutions of 800x600 and 1024x768. Since my script uses x/y positioning, i can see it not functioning on other resolutions.

Shark

Link to comment
Share on other sites

If the SPTD in Alcohol is the same as with DT, the switchless installer I made for the SPTD half of things also plops the original SPTD installer executable inside of %SYSTEMROOT% so that you can later uninstall it if need be. Installs from svcpack.inf just fine as well.

Link to comment
Share on other sites

For registration, I just add this to my AutoIt script and it does well. I am not suppling the values,so you need to dig them out of the registry for yourself when registered first.

; Register
$key = 'HKCU\Software\Alcohol Soft\Alcohol 120%'
RegWrite($key & '\Info', 'UserName', 'Reg_sz', 'NEED_VALUE')
RegWrite($key & '\Info', 'ServerKey', 'Reg_sz', 'NEED_VALUE')

$key = 'HKCU\Software\StarSynergy\2\act'
RegWrite($key, 'server', 'Reg_sz', 'NEED_VALUE')
RegWrite($key, 'email', 'Reg_sz', 'NEED_VALUE')
RegWrite($key, 'value', 'Reg_sz', 'NEED_VALUE')

Link to comment
Share on other sites

Add this into an empty Au3 script and execute it. The information will be read from the registry and the code should be added into your clipboard, ready to be pasted into your install script. Add the code in just before the Exit line of the install script (Exit is located at line 88 for me, so should be about line 80 for you).

$key = 'HKCU\Software\Alcohol Soft\Alcohol 120%\Info'
$UserName = RegRead($key, 'UserName')
$ServerKey = RegRead($key, 'ServerKey')
$key = 'HKCU\Software\StarSynergy\2\act'
$server = RegRead($key, 'server')
$email = RegRead($key, 'email')
$value = RegRead($key, 'value')
ClipPut("$key = 'HKCU\Software\Alcohol Soft\Alcohol 120%\Info'" & @CRLF & _
"RegWrite($key, 'UserName', 'Reg_sz', '" & $UserName & "')" & @CRLF & _
"RegWrite($key, 'ServerKey', 'Reg_sz', '" & $ServerKey & "')" & @CRLF & _
"$key = 'HKCU\Software\StarSynergy\2\act'" & @CRLF & _
"RegWrite($key, 'server', 'Reg_sz', '" & $server & "')" & @CRLF & _
"RegWrite($key, 'email', 'Reg_sz', '" & $email & "')" & @CRLF & _
"RegWrite($key, 'value', 'Reg_sz', '" & $value & "')")

Link to comment
Share on other sites

has anyone tried to monitor the setup to make an installer out of it?

maybe this works, maybe dont. i hope to have some spare time tomorrow to try. tha autoit script seems too much work for a software installation.

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