From 3093efec311e6505047431d3b479a20040cc9fb3 Mon Sep 17 00:00:00 2001 From: Gramzon Date: Fri, 10 Jan 2025 13:51:56 +0100 Subject: [PATCH] firewallrule script pushed --- README.md | 2 ++ firewallrule.ps1 | 1 + 2 files changed, 3 insertions(+) create mode 100644 firewallrule.ps1 diff --git a/README.md b/README.md index 5d0d5fc..f939306 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ # Dcst1005pub + + diff --git a/firewallrule.ps1 b/firewallrule.ps1 new file mode 100644 index 0000000..203a245 --- /dev/null +++ b/firewallrule.ps1 @@ -0,0 +1 @@ +New-NetFirewallRule -DisplayName "Allow HTTP port 443" -Direction Inbound -Protocol TCP -LocalPort 443 -Action Allow -Profile Any \ No newline at end of file