Home > Mobile >  How to silently install a certificate on Linux using .NET
How to silently install a certificate on Linux using .NET

Time:05-29

I have a .NET exe that when I run(on windows), asks to install a certificate into the trusted root. I assume that this will also be the case on Linux. The problem is that there is a UI prompt dialog being displayed.

I need this to run on a Linux server automatically, silently install the cert without the UI prompt.

How can I do this with .NET?

CodePudding user response:

That prompt is a feature of the Windows OS, not of .NET. It does not exist on Linux.

  • Related