3S Doc Posted October 21, 2004 Posted October 21, 2004 Have some probs with TMPGEnc DVD Author 1.6I tried several ways but the results are poor.First I tried a setup with the original *.exe, and would so extract the setup.issbut there was no setup.iss after installing *.exe -R.Then I tried the option *.exe /a to create an server install point, this works and I get a nice *.msi file. I tried this to silent install but every time after install is ready, my pc is going to reboot Anyone who can help me out with this one?CLS@echo offECHO.ECHO Installing TMPGEnc DVD Author 1.6.ECHO Please wait...start /wait msiexec /i "%CDROM%\Software\TMPGEnc\TMPGEnc DVD Author 1.6.msi" /qn SERIALNUMBER=XXXX-XXXX-XXXX-XXXX-XXXXEXITI would like at the sametime give my serial, because TMPGEnc put it not in the register, I've search the hole register but nothing.....O btw I tried also the switch /QN and that give me same result, a fine reboot after install.
urie Posted October 21, 2004 Posted October 21, 2004 The registry key is stored here,HKEY_CURRENT_USER\Software\Pegasys Inc.\TMPGEnc DVD Author 1.6
3S Doc Posted October 22, 2004 Author Posted October 22, 2004 The registry key is stored here,HKEY_CURRENT_USER\Software\Pegasys Inc.\TMPGEnc DVD Author 1.6Nope, in TMPGEnc Plus 2.5 it is, but in TMPGEnc DVD Author it is only the value Registrationcode with a long (not the serials as in Plus) string.I tried now several optieons to install it silent but no luck so far, anyone else a clue?
yoz7120 Posted October 22, 2004 Posted October 22, 2004 Try this start /wait msiexec /i "%CDROM%\Software\TMPGEnc\TMPGEnc DVD Author 1.6.msi" SERIALNUMBER=XXXX-XXXX-XXXX-XXXX-XXXX REBOOT=ReallySuppress /qn
3S Doc Posted October 22, 2004 Author Posted October 22, 2004 Try this start /wait msiexec /i "%CDROM%\Software\TMPGEnc\TMPGEnc DVD Author 1.6.msi" SERIALNUMBER=XXXX-XXXX-XXXX-XXXX-XXXX REBOOT=ReallySuppress /qntnx for your contribution, but no it isn't the trick I need.PC is still rebooting after install, and no the serial isn't in the program, after the reboot I give my serial manualy to the program, and there is no problem with it, and yes I now I write it exactly the same. After that I looked with regedit in the register, and there is no serial in it. I asume TMPGEnc DVD Author does it different as TMPGEnc Plus, while there is the Serial in the register. I hope some one can helpe me with this one.....
<SparTacuS> Posted October 29, 2004 Posted October 29, 2004 I have also had trouble wih this one.I tried a repakage using InstallRite with the result that the program dows a wonderful, quiet install (no reboot) but I still have to manually enter the serial on first use.
1chaoticadult Posted November 29, 2004 Posted November 29, 2004 If you are really good you could edit the msi itself and force it not to reboot and put the serial number in it.
swampy Posted November 30, 2004 Posted November 30, 2004 HKEY_CURRENT_USER\Software\Pegasys Inc.\TMPGEnc DVD Author 1.6It looks like the serial is encrypted & machine dependent just like ultraiso. I regged it in vmware & used the reg on my real windows & now author is unregged.
1chaoticadult Posted December 11, 2004 Posted December 11, 2004 actually ultraiso is not machine dependent anymore with latest version although its still encrypted. As far as DVD Author goes I will make an autoit script to register the app with your serial and post it in the autoit script thread.
1chaoticadult Posted December 11, 2004 Posted December 11, 2004 (edited) Posted autoit script for registration on page 6 here: http://www.msfn.org/board/index.php?showto...GEnc+DVD+Author Edited December 11, 2004 by drthawhizkid
swampy Posted December 12, 2004 Posted December 12, 2004 nice one. As mine installed to C:\Program Files\Pegasys Inc\TMPGEnc DVD Author 1.6, I had to change one line to- $DL_1 = @ProgramFilesDir & "\Pegasys Inc\TMPGEnc DVD Author 1.6" ;Software DirectoryPS it's on page 16 of Autoit sticky
1chaoticadult Posted December 12, 2004 Posted December 12, 2004 @swampyThat wasn't really necessary when even I noobie can change the directory in the script. Its a given the directory would be different. No use of posting the same script twice with just a different directory.
swampy Posted December 13, 2004 Posted December 13, 2004 sorry mate, I'm hopeless at autoit, I thought it might be helpful to someone as hopeless as me, thanks for your work anyway
Nologic Posted December 13, 2004 Posted December 13, 2004 Well I don't think we have an actual expert amoung all of us at AutoIt...and if so they sure aren't cluing us in.I've clipped code from dang near every one thats posted in that thread. Ether some one has solved some thing I'm stuck on, or they have a cleaner way of doing things.Really half or more of my scripts should be revised to reflect more current or cleaner methods of going about stuff.drthawhizkid script is a perfect example for others to work from...only minor suggestion I might have is some thing that Mhz showed me the other day and thats making use of StringSplit.So in the above mentioned script I would replace $SN_1-$SN_4 with just $SN_1 and redo the registration bit with some minor tweaks....this doesn't improve the script any...just a different way of doing things.$SN_1 = "****-****-****-****" ; Serial Number; Serial Number Registration$SN = StringSplit( $SN_1 , '-' )WinWaitActive ( "Serial number registration" )ControlSetText ( "Serial number registration" , "" , "TEdit4" , $SN[1] )ControlSetText ( "Serial number registration" , "" , "TEdit3" , $SN[2] )ControlSetText ( "Serial number registration" , "" , "TEdit2" , $SN[3] )ControlSetText ( "Serial number registration" , "" , "TEdit1" , $SN[4] )ControlClick ( "Serial number registration" , "" , "TButton2" )Any ways in time we may have an expert and maybe then we'll get a real tutorial on how to use it for best effect.Till that point every one is just poking around in the dark trying to find the best way to do things. Well get your self knee deep into this stuff and when you got a script done up be sure to post it along with mine and drthawhizkid, and the rest of the crew. A lot more gets done faster the more every one contributes.
1chaoticadult Posted December 13, 2004 Posted December 13, 2004 @swampyI wasn't downing your work, I was just saying that its good to just have one script for each program that's all. Don't stop trying to make autoit scripts. I got my format from nologic whose autoit script is perfect thus far. As nologic said, use either his scripts or mine as a example for yours. Later.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now