tresans Posted February 28, 2006 Posted February 28, 2006 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 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
Shark007 Posted March 1, 2006 Posted March 1, 2006 (edited) *removed*skark Edited March 1, 2006 by Shark007
tresans Posted March 1, 2006 Posted March 1, 2006 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 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 Im sorry m8
muiz Posted March 1, 2006 Author Posted March 1, 2006 (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 hereskarkNice 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.MHzAnd 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.muizBoth need SPTD.exe installed from SVCPACK. Edited March 1, 2006 by muiz
Shark007 Posted March 1, 2006 Posted March 1, 2006 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
RogueSpear Posted March 1, 2006 Posted March 1, 2006 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.
MHz Posted March 1, 2006 Posted March 1, 2006 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.
MHz Posted March 2, 2006 Posted March 2, 2006 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')
muiz Posted March 4, 2006 Author Posted March 4, 2006 I tried that but it didnt register it.maybe i did something wrong.Can you give an example please.
MHz Posted March 4, 2006 Posted March 4, 2006 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 & "')")
MHz Posted March 4, 2006 Posted March 4, 2006 line 76 on the script I posted. On your script, just add the code on the end of script.
ajua Posted March 5, 2006 Posted March 5, 2006 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.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now