Hello microsyntax,

I wanted the same behavior on install and I got it working with a quick little fix:

1. Open the file "~/Applications/Dropzone/Destination Scripts/lib/installapp.rb" in a text editor.
2. Near the end of the file is the line "def self.install_destination".
3. Put a new line below that line: return "/Applications/"
4. Comment out the rest of that "def" leaving the closing "end" by placing "#" at the beginning of each line

You should end up with something like this in that section of the script:

def self.install_destination
    return "/Applications/"
    # If user has an Applications folder in their home directory then install there
    # if File::exists?(File.expand_path("~/Applications"))
    #  return File.expand_path("~/Applications") + "/"
    # else
    #   return "/Applications/"
    # end
end

I thought that commenting it out might be better than deleting should you ever want to change it back for some reason. Let me know if you have any questions as it's working perfect for me.