My electron app was recognized by the windows system as a virus and directly deleted,how can i fix it

196 Views Asked by At

I used electron to develop a windows app, it was recognized as a virus by the windows system and deleted directly, but because the app we only use for a small number of people within the company, it's too much of a waste to do the code signing, is there any other way to make my electron app work properly and not be detected as a virus. Below is a screenshot of my app's functionality, the only functions are login authentication and opening shared files.

  1. login authentication: it is to request our company's oa authentication login interface, and it can be operated after successful authentication.
  2. open shared file: it is to open the company shared folder based on inputting the account password, 3 windows commands are executed as follows:

Delete all shared links: net use * /delete

Create a new link (using the OA account password): net use \\share.yafex.cn /user:mycompany\username password

Open window: explorer.exe \\xxx.xxx.cn\share

Screenshot 1 of the feature request

Screenshot 2 of the feature request

According to my need, I looked up the answer on stackoverflow website and only found this one, but he didn't solve my problem, I hope you guys can help me to solve it! Thanks!

0

There are 0 best solutions below