Initial commit

This commit is contained in:
Din Dang
2024-11-28 16:52:40 +08:00
commit 05d805be0a
119 changed files with 6201 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# PowerShell script to create a new inbound rule in Windows Firewall
# Define the port number
$port = 5000
# Define the rule name
$ruleName = "ResourceMonitorService"
# Create a new inbound rule
New-NetFirewallRule -DisplayName $ruleName -Direction Inbound -Protocol TCP -LocalPort $port -Action Allow -Profile Any