Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Program Download - IE CHROME - "is not commonly downloaded and could be dangerous."

I have an installer for my C# program, I uploaded it to my website, but whenever I try to download it in chrome or IE, I get "MY FILE* is not commonly downloaded and could be dangerous." You can only keep it if you click a tiny arrow and choose "Keep" from a menu. Only a tenth of less of users will be able to get my program. How could I work around this? I have heard about digital code signing, but at hundreds of dollars a year. This is really not an option for me. Would making an MSI installer or putting it on a software website help?

like image 348
msbg Avatar asked Sep 01 '12 21:09

msbg


People also ask

Is not commonly downloaded Make sure you trust?

If you encounter the 'File is not commonly downloaded. Make sure you trust the file before you open it' error while you attempt to download a file from a legitimate vendor, try getting in touch with the developer and letting them know that the app is flagged.

How do I get rid of download error on Chrome?

To fix the error: First, remove the unwanted software. Then, try to install the app, extension, or theme again. If you still can't install the app, extension, or theme, reinstall Chrome.


1 Answers

The best resources are this blog post and this blog post.

To sum up:

  1. Sign you package with an authenticode signature.
  2. Don't be malware (I'm sure you got that covered).
  3. Logo your software (if it's not a browser plug-in).

This can be a frustrating process, so hang in there. Microsoft has not disclosed how many downloads one needs to build a reputation, but in practice once you stop changing the package (the hash is part of the reputation) then you can get past this fairly quickly.

like image 184
i_am_jorf Avatar answered Sep 24 '22 02:09

i_am_jorf