kukubau 0 Posted October 9, 2011 Hi allI know from a long time about Autoit, but have never used it or tried to build my own scripts before. I bought CoreAVC Professional 3.0.1.0 and I'd like to build an autoit script for it to install it completely silent. I built a 7zip silent installer, but the installer comes bundled with a splash image that runs no matter what, when using the /S switch. I'll post some screens with the normal installation. Here's my Autoit script so far until the last screen. Run("CoreAvc.exe") SplashOff("splash.bmp") Sleep(5000) SplashOff() WinWaitActive("CoreAVC Professional Edition 3.0.1.0", "YOU SHOULD CAREFULLY READ") Send("{ENTER}") Send("{ENTER}") Send("{ENTER}") Send('mymail@mail.com') Send('{TAB}') Send('xxxxxx-xxxxxx-xxxxxx-xxxxxx-xxxxxx') Send("{ENTER}") splash.bmp being the name of the *.bmp file that pops up during installation. What is the proper command for checking&unchecking radio boxes on the last "Choose Components" window?!??! ControlCommand ( "title", "text", controlID, "command" [, "option"] ) ??? [autoit]ControlCommand("CoreAVC Professional Edition 3.0.1.0", "Check the components you want", controlID, "UnCheck", "") What should be controlID in this case?Or should I use the controlclick command? Thank you and waiting for your input. kukubau Share this post Link to post Share on other sites