December 3, 200421 yr [b]File For Hitman Contracts[/b] [i]Script Version 1.1[/i] Uses a custom routine to change discs. you can find it [url="http://www.msfn.org/board/index.php?act=ST&f=80&t=20197&st=130#entry228962"]here[/url]
December 3, 200421 yr [b]File For Vampire The Masquerade - Bloodlines[/b] [i]Script Version 1.1[/i] Uses a custom routine to change discs. you can find it [url="http://www.msfn.org/board/index.php?act=ST&f=80&t=20197&st=130#entry228962"]here[/url]
December 11, 200421 yr BurstCopy 2.700 Build 6921 [url="http://www.burstcopy.com/"]http://www.burstcopy.com/[/url] for RunOnceEx.cmd [quote]REG ADD %KEY%\012 /VE /D "BurstCopy 2.700 Build 6921" /f REG ADD %KEY%\012 /V 1 /D "%systemdrive%\install\BURSTCOPY\BurstCopy2.700Build6921.exe /VERYSILENT /NORESTART " /f REG ADD %KEY%\012 /V 2 /D "REGEDIT /S %systemdrive%\install\BURSTCOPY\register_original.reg" /f[/quote]REGISTRATION with AutoIt [quote]Run("C:\Program Files\BurstCopy\BurstCopy.exe") WinWaitActive("BurstCopy") Send("{ALT}P") Send("R") Send("name{TAB}serial{TAB}{ENTER 2}") WinClose("BurstCopy")[/quote]
December 11, 200421 yr [b]File for TMPGEnc DVD Author v1.6[/b] [u][color="blue"]Shareware[/color][/u] Script v1.1 [url="http://www.pegasys-inc.com"][link][/url] [b]Note[/b] This is only for registering this app not for silently installing. Updated script with tip from Nologic, found by Mhz. Thanks to both of you. Edited December 22, 200421 yr by drthawhizkid
December 15, 200421 yr [b]File for Winace 2.5[/b] [color="blue"]Shareware[/color] [i]Script v1.0[/i] [url="http://www.winace.com/"][link][/url] My sucky first AutoIt script
December 15, 200421 yr [b]File For Ad Muncher 4.52[/b] [color="blue"]Shareware[/color] [i]Script v1.0[/i] [url="http://www.admuncher.com/"][link][/url]
December 22, 200421 yr [b]File For Internet Download Manager v4.03 Build 2[/b] [u][color="blue"]Shareware[/color][/u] [i]Script v1.0[/i] [url="http://www.internetdownloadmanager.com"][link][/url] [b]Note[/b] Suppose to be the fastest download manager. Script may work for future versions. Edited January 7, 200521 yr by 1chaoticadult
December 30, 200421 yr [b]Crystal Codec Pack 4.3.3[/b] [b]Windows "Hardware Installation" dialog[/b] I am not sure how many of You are using this codec pack (it's pretty old), but here is the script anyway. The reason I am posting it because it includes a solution I was looking for a long time: [b]how to bypass that annoying "Hardware installation" dialog[/b] that windows displays when an unsigned driver is about to be installed. I added some comments inline so You can easily understand it. Here is the code: [code]; AutoIt Version: 3.0 ; Language: English ; Platform: Win9x/NT ; Script Function: Install KS Codec Pack 4.3.3 ; Author: Csimbi ;This is the function we will call every now and then to close all those annoying dialogs. Func getRidOfAnnoyingWindow() If WinActive("Hardware Installation") Then ControlClick("Hardware Installation","", "Button1") EndIf EndFunc ;Start installation of the codec pack Run("install.exe") ;Wait until installer is started. WinWaitActive("Install") ;Send an enter key to bypass the installation confirmation (Yes is selected by default, so we just need to hit enter). Send("{ENTER}") ;The first dialog is expected to pop up soon, so we start our watchdog function that will close that annoying dialog. We run the script every 250 msecs. AdlibEnable ("getRidOfAnnoyingWindow", 250) ;The next annoying dialog is windows file protection. We wait for this dialog. WinWaitActive("Confirm File Replace") ;The dialog has three buttons: Yes, No, and No to all. We emulate keypress on "a" key so that we select the "No to all" button. Send("a") ;Installation will complete without further interference with the UI, so we can disable the watchdog function. AdlibDisable () ;And finally quit. Exit[/code]
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now