Jump to content

AutoIT Script Collection - Contributions Only


FuzzBall

Recommended Posts


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]
Link to comment
Share on other sites

[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 by drthawhizkid
Link to comment
Share on other sites

[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 by 1chaoticadult
Link to comment
Share on other sites

  • 2 weeks later...
[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]
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...