

- #Ccleaner slim filehippo install
- #Ccleaner slim filehippo update
- #Ccleaner slim filehippo code
- #Ccleaner slim filehippo download
If you do use my code all I ask, as a courtesy, is to make note of where you got it from.īack up and restore Windows user files _3 - Modified array functions that include support for 2D arrays.

I hereby grant any person the right to use any code I post, that I am the original author of, on the forums, unless I've specifically stated otherwise in the code or the thread post. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude Give a programmer the correct code and he can do his work for a day. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to. If I posted any code, assume that code was written using the latest release version unless stated otherwise.

#Ccleaner slim filehippo install
The only other choice is to automate around the "google chrome" install or uninstall it after the ccleaner install.īTW what does SRE stand for? (be kind it's 2:30am here and my brain is fried) That way you'd always have the latest "slim" version. If it Fails get latest from freewarehunter
#Ccleaner slim filehippo download
Try to download from piriform (as above)Ģ. I'd think that "freewarehunter" that wakillon suggested maybe a good fall back.ġ. I found a forum post explaining what the situation is. It had me real confused the first time as I lost the old slim version and couldn't download the new one. The trouble is ' ' will only work until the next download then it disappears for a week or 2 then starts working again when the author puts up the new slim version. InetGet ( '', & '\ccsetup-slim.exe', 1, 1 )Īn SRE would be able to get the version number from this page: Sorry i just cant get it working except for your original version Edited Augby Chimaera #include Global $sURL = "" $_Version = _StringBetween ( BinaryToString ( InetRead ( $sURL ) ), 'avg_free_x86_all_2011_', '.exe' ) If Not Then $_DownloadLink = '' & $_Version & '.exe' ConsoleWrite ( "->- $_DownloadLink : " & $_DownloadLink & ) EndIf

ccsetup309_slim.exeAnother example i tried They are not for distribution or mirroring. So any suggestions i should look at or udf's that might be relevant?īuilds below are for system admins and advanced users.
#Ccleaner slim filehippo update
One other option i have would be to include another file update program with the script like Ketarin with the list of programs within and run from CMD line silent, but this to me adds complexity to the job. The question really is, is there a simple ish way to do this which gets the right link? bear in mind ive not done Internet stuff before. Which basically contains the Location link from above InetGet ( IniRead ( & "\file_includes\tools_links.ini", "AVG_Free", "Link", "NotFound" ), & "\file_includes\install_avg_free.exe", 1 ) Im calling the links at the min from an ini file like this Set-Cookie: avg_tracking_redirect=download-file-dm-afh path=/But unfortunatly they keep changing the links again as they are trying to protect them which is an ass, and on some like Ccleaner slim build i cant get them at all Set-Cookie: cmc=222 expires=Wed, 1 09:47:48 GMT path=/ domain=avg.com Expand collapse popup ConsoleWrite ( _HTTPGetResponse ( '' ) & ) Func _HTTPGetResponse ( $sUrl ) Local $Error, $Socket, $Recv = '' Local $Host = StringRegExpReplace ( $sUrl, '.*://(.*?)/.*', '\1' ) Local $Page = StringRegExpReplace ( $sUrl, '.*://.*?(/.*)', '\1' ) Local $Send = 'HEAD ' & $Page & ' HTTP/1.1' & & _ 'Host: ' & $Host & & _ 'User-Agent: AutoIt/' & & ' (Windows U Windows NT 5.1 en-US rv:1.8.1)' & & _ 'Referer: ' & $Host & & _ 'Connection: close' & & TCPStartup ( ) If Then Return SetError (, 0, '' ) EndIf $IP = TCPNameToIP ( $Host ) If Then Return SetError (, TCPShutdown ( ), '' ) EndIf $Socket = TCPConnect ( $IP, 80 ) If Then Return SetError (, TCPShutdown ( ), '' ) EndIf If Not TCPSend ( $Socket, $Send ) Then Return SetError (, TCPCloseSocket ( $Socket ) + TCPShutdown ( ), '' ) EndIf Do $Recv &= TCPRecv ( $Socket, 16 ) Until If Not $Recv Then $Error = Else $Error = 0 EndIf TCPCloseSocket ( $Socket ) TCPShutdown ( ) Return SetError ( $Error, 2, $Recv ) EndFunc =>_HTTPGetResponse
