Jump to content

Alcohol 120% 1.9.5.3823


Recommended Posts

Posted
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


Posted
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:

Posted (edited)
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
Posted
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

Posted

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.

Posted

I edited my last post with the uninstall icon to remain in the startmenu with the attached script. Also a tip for not using the Starwind driver.

Posted

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')

Posted

I tried that but it didnt register it.

maybe i did something wrong.

Can you give an example please.

Posted

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 & "')")

Posted

line 76 on the script I posted. On your script, just add the code on the end of script.

Posted

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.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...