Reputation: 11
I am trying to use "netsh advfirewall firewall add rule" to create a windows firewall rule.
How can I set the "action" parameter to "Allow the connection if secure" and require connections to be encrypted?
Upvotes: 0
Views: 463
Reputation: 38589
security=authenc
with either action=allow
or action=bypass
depending upon your particular requirements.
Upvotes: 1