is not commonly downloaded and could be dangerous on my .exe apps

-5

I have a vb.net app and when i download it on any browser from any computer from any place i see this warning: is not commonly downloaded and could be dangerous I don't find nothing anywhere. I tried to sign it, yo use Windows Certification Kit, and a lot of things, but still nothing. Please help!

TheMiningSheep

Posted 2014-09-10T21:39:54.853

Reputation: 21

Question was closed 2014-09-14T19:36:12.553

1

Please clarify your specific problem or add additional details to highlight exactly what you need. As it's currently written, its hard to tell exactly what you're asking. See the How to Ask page for help clarifying this question.

– DavidPostill – 2014-09-10T21:42:50.873

If you signed it then you shouldn't get this error provided it simply wasn't a self-signed certificate – Ramhound – 2014-09-10T21:45:34.093

1@Ramhound This is not exactly correct. Using a certificate signed by a trusted CA will accumulate SmartScreen reputation for the certificate (as opposed to just one particular binary) so the downloads of any of your applications will boost the reputation of all of them. The warning will still appear though (however the UAC will look less scary though. – lzam – 2014-09-11T00:43:48.840

I suppose I failed to mention there are other requirements not to get the notification but they are also published by Microsoft, so I didn't think, I needed to – Ramhound – 2014-09-11T00:50:31.650

Answers

1

The message you are seeing is triggered by SmartScreen. On a pre Windows 8 machine, you will only see this if you use IE. On Windows 8, SmartScreen is enabled on the OS level. SmartScreen displays this warning based on your applications reputation score.

If you want to download this yourself, you should be able to fine the "Run anyway" option.

If you are concerned about what other people will see when they download your software, there are no easy shortcuts. You can:

  1. Sign your application with a certificate issued by a CA trusted by Windows (this will not make the warning go away, but makes it easier to accumulate app reputation, as it will give you the combined reputation of all applications you sign with the same certificate).
  2. Make sure your application is not being detected as malware by AV software (try using VirusTotal).
  3. Get your app certified by Microsoft. Running the Certification Kit is not enough. You must submit your results to Microsoft.

Over time, as people download your app, its reputation will rise, and eventually it will no longer trigger SmartScreen warnings.

lzam

Posted 2014-09-10T21:39:54.853

Reputation: 1 364