1

I create application on my computer, after I sent it to myself on a computer. I was open Visual Studio with ask my ~"Do you want to open this application?". I updated this application. And I compiled it. But application run by Debug .exe is blocked by F-Secure.

Is it possible to set in project it is secure app for this computer?

Jack J Jun
  • 5,633
  • 1
  • 9
  • 27
Mat Rat
  • 105
  • 1
  • 11

1 Answers1

1

Most probably you send it over the net - when downloading something windows adds an alterante data stream to "mark" the downloaded file to be from a unsecure source.

You can remove this alternate data stream marker to solve your problem.

See

Windows stores the download location as ads in the zone.indentifier stream. You can inspect your file using windwos power shell:

>> Get-Content -Path yourfile.here -Stream zone.identifier
1
[ZoneTransfer]
ZoneId=3
ReferrerUrl=source url here 
HostUrl=lots of data here 

and remove the alternate data stream:

Remove-item -Path yourfile.here -Stream zone.identifier
Patrick Artner
  • 50,409
  • 9
  • 43
  • 69