Ulitmate Mac Cleaning Script (It Cleans EveryTHING!)

Applescript Code Deleted!.

Search "macturbo Mac Os X App " In Google!! For The Professional Cleaner!.

Hi,

a large part of your script cannot work at all, for example


tell application "Finder" to set Skype to "Applications:Skype"
if Skype exists then

evaluates always true because the literal string “Applications:Skype” exists anyway.
Even this cannot work


tell application "Finder"
	set Skype to "Applications:Skype"
	if file Skype exists then
.

because “Applications:.” is no valid path.
To check if an application is installed use this


set applicationFolder to path to applications folder as text
tell application "Finder" to set skypeIsInstalled to exists item (applicationFolder & "Skype.app")
if skypeIsInstalled then
	say " Skype Is Installed." using "Alex"
end if

thank you Stefank i’ll update the code ASAP! :smiley:

Applescript Code Deleted!.

Search "macturbo Mac Os X App " In Google!! For The Professional Cleaner!.

MacClean Applescript Is No Longer Going To Be Updated!, As MacClean Is NOW “MACTURBO!”

FACEBOOK: https://www.facebook.com/?ref=home#!/pages/MacTurbo-MAC-OS-X-APP/240872352600044
IF LINK FAILS THEN SEARCH MACTURBO MAC OSX APP IN GOOGLE :smiley:

Thanks Taylor J Harrison.