Tegal Posted May 2, 2011 Share Posted May 2, 2011 I hope someone can help me here. I am trying to automate the install of CCleaner 3.06. I know all about the commandline switches available, BUT they do not stop the install of Google Chrome/Toolbar - an option window offered toward the end of the setup process. I've attached a screenshot of the problem menu screen. No matter what I do I can not config autoIT to deselect the install of these components. It doesn't help that there are 2 possible screens, one for Google Toolbar and the attached screenshot for Chrome. The Window Info seems to pick up the general box containing the tick boxes, but not the tick boxes themselves. Info Window Summary below. Can anyone help me make the location and deselect the options to install these additional bits of software? Many thanks Tegal ========================================== >>>> Window <<<< Title: CCleaner v3.06 Setup Class: #32770 Position: 487, 263 Size: 503, 389 Style: 0x94CA084C ExStyle: 0x00010100 Handle: 0x0027023C >>>> Control <<<< Class: Internet Explorer_Server Instance: 1 ClassnameNN: Internet Explorer_Server1 Name: Advanced (Class): [CLASS:Internet Explorer_Server; INSTANCE:1] ID: Text: Position: 23, 73 Size: 450, 228 ControlClick Coords: 32, 157 Style: 0x56000000 ExStyle: 0x00000000 Handle: 0x002B01BA >>>> Mouse <<<< Position: 545, 518 Cursor ID: 0 Color: 0xFFFFFF >>>> StatusBar <<<< >>>> ToolsBar <<<< >>>> Visible Text <<<< < &Back &Install Cancel www.piriform.com www.piriform.com Free! Google Chrome, a faster way to browse the web >>>> Hidden Text <<<< Install Options Select any additional options Advanced Link to comment Share on other sites More sharing options...
Tegal Posted May 2, 2011 Author Share Posted May 2, 2011 Re the Toolbar vs Chrome browser window. Possibly it only offers the browser if it detects that the Toolbar has been installed - or even installed and uninstalled. Or it rotates on a 1/2 hours basis or something daft like that. Link to comment Share on other sites More sharing options...
MHz Posted May 3, 2011 Share Posted May 3, 2011 Hi Tegal,You know the command line switches so the best idea to solve your problem could be to use the slim installer with command line switches. The slim installer has no toolbar stuff so it should be good to use. To get the slim installer, go to the main download page of CCleaner and you will see a builds page link at the bottom of the downloads page. Choose to download the ccsetup306_slim.exe.Description of slim installerCCleaner - SlimInstaller, no toolbar2,143 kb - ccsetup306_slim.exeNote the size of the slim installer is several hundred kilobytes smaller then the standard installer. Link to comment Share on other sites More sharing options...
Chimaera Posted May 3, 2011 Share Posted May 3, 2011 (edited) Slim version still installs chrome unfortunately I use slim plus /S (for silent) at work and this is an issue we have there. Im a little annoyed with Ccleaner as they have always kept this rubbish out of the builds and now are resorting to this kinda stuff which imho is wrong I think you will find Defraggler is doing the same install as well Chimaera Ps maybe creating an uninstaller routine for chrome would be better as you can control that ? Edited May 3, 2011 by Chimaera If Ive just helped you ... miracles do happen. Chimaera CopyRobo() * Hidden Admin Account Enabler * Software Location From Registry * Find Display Resolution * _ChangeServices() Link to comment Share on other sites More sharing options...
MHz Posted May 3, 2011 Share Posted May 3, 2011 (edited) Slim version still installs chrome unfortunatelyI have no idea how you are getting chrome installed from the slim installer of CCleaner. I have checked within the installer with 7zip and it is missing the extra files to install the IE or Chrome toolbar or whatever the pfLC.exe does which maybe is the one that does the Chrome browser install. I have uninstalled it and then installed the slim install manually. I have used switches on it. I get no toolbar, no Chrome browser, nothing but CCleaner alone using the slim installer.IMO, you may have the standard installer that contains an extra folder full of crap in the $PLUGINDIR within the installer. I recommend that you do another check of the installer that you have and get the slim installer if required.Defraggler and Recuvva also have slim installers. If any of these installers try to force their crap then I will be first to dump the use of them. At the moment, the slim installers have my approval of having no crap.Edit: Ensure that you clean the temp folder before retesting the slim install as you may have the toolbar or browser setup executables existing there from a previous standard build install.The slim installer may run those crap files if they do exist in the temp folder. Edited May 3, 2011 by MHz Link to comment Share on other sites More sharing options...
nfaustin Posted May 3, 2011 Share Posted May 3, 2011 Yes, the standard installer contain 'g' folder in the $PLUGINSDIR while the slim version is none. the slim version should have filename : ccsetup306_slim.exe [font="Palatino Linotype"][size="2"]*** The information contained in this post should be considered and certified WORKS ON MY MACHINE ***[/size][/font][font="Palatino Linotype"][size="2"] [/size][/font] Link to comment Share on other sites More sharing options...
Tegal Posted May 4, 2011 Author Share Posted May 4, 2011 (edited) Yep - spot on. I had the standard installer. Wasn't aware that there was a slim installer, now I know there is no 'crap' I can happily run the silent switch and forget having to worry about scripting the whole install. Thanks a lot!! Just for the exercise/knowledge - how would you go about deselecting the checkboxes in a situation like this? Is it possible? Edited May 4, 2011 by Tegal Link to comment Share on other sites More sharing options...
MHz Posted May 5, 2011 Share Posted May 5, 2011 It is possible to automate. It is embedded html being rendered inside the window as the class in AutoIt Info Tool tells you that with "Class: Internet Explorer_Server". You can use _IE* functions to manage the IE rendered html. If you use Firefox or another browser as default html renderer then you may need functions to suit the objects of those browsers. Run the standard CCleaner installer and then click the next buttons until you get to the embedded html page. Run this example code in a au3 script to show the checkbox being clicked. #RequireAdmin #include <IE.au3> ; IE is default browser If WinExists('CCleaner v3.06 Setup', 'Free! Google Toolbar for Internet Explorer') Then ; attach to IE embedded oject within the window $oIE = _IEAttach ('CCleaner v3.06 Setup', 'Embedded') If IsObj($oIE) Then ; get the object by name (html source shows this substring <INPUT type="checkbox" CHECKED id="install1" name="install1">) $oInstallChrome = _IEGetObjByName ($oIE, 'install1') If IsObj($oInstallChrome) Then ; click the checkbox to uncheck it _IEAction ($oInstallChrome, 'click') EndIf _IELoadWait ($oIE) $oIE = 0 EndIf Else MsgBox(0x40000, @ScriptName, 'Window not found') EndIf You can right click on the html embedded and select "View Source" to get the control ids needed as I did to get the "install1" id. These _IE* functions are included with AutoIt3 as standard functions and can be located in the help file. Link to comment Share on other sites More sharing options...
GEOSoft Posted May 5, 2011 Share Posted May 5, 2011 Slim version still installs chrome unfortunatelyI use slim plus /S (for silent) at work and this is an issue we have there.Im a little annoyed with Ccleaner as they have always kept this rubbish out of the builds and now are resorting to this kinda stuff which imho is wrongI think you will find Defraggler is doing the same install as wellChimaeraPs maybe creating an uninstaller routine for chrome would be better as you can control that ?Don't forget to get hold of the authors and let them know why you are displeased. Until people learn that they are generating negative feelings toward their software when they install the extras by default they will continue to do it that way.I have nothing against the optional installs but I do object to them being part of the default installation and as soon as a company starts using that method I contact them to let them know why I won't be using their product any longer. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!" Link to comment Share on other sites More sharing options...
GEOSoft Posted May 5, 2011 Share Posted May 5, 2011 There was a portable version of CCleaner that could be used instead of the slim version (which apparently is no longer being offered) but you may have to go looking for it.Just copy the files from the portable version to where you want them and then create whatever shortcuts you need.If you can't find the portable version then there is still an option.Download the standard setup package and extract all the files using the appropriate unpacker (I use Universal Extractor written in AutoIt) to do that part.After you have the files it only takes a few minutes to write your own installer package that will not install any crapware. For that stage I use Inno Setup. George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!" Link to comment Share on other sites More sharing options...
wakillon Posted May 15, 2011 Share Posted May 15, 2011 No need to create a specific installer package... UnZip ccleaner installer and after you just have to fileinstall the CCleaner.exe file who is inside, where you want ! Create a shortcut and that's all you have to do ! AutoIt 3.3.14.2 X86 - SciTE 3.6.0 - WIN 8.1 X64 - Other Example Scripts Link to comment Share on other sites More sharing options...
Tegal Posted June 3, 2011 Author Share Posted June 3, 2011 Thanks for all the input - I found the slim installer (had to search on their website for it though - under "other downloads" I think I found it. That allows me to do the install with out the Google stuff. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now