All public logs

Jump to navigation Jump to search

Combined display of all available logs of Omnia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 22:15, 7 July 2026 Kenneth talk contribs created page Windows/Ping (Created page with "== Firewall Allow Ping == Add: netsh advfirewall firewall add rule name="Allow ICMPv4 Ping" protocol=icmpv4:8,any dir=in action=allow Verify netsh advfirewall firewall show rule name="Allow ICMPv4 Ping" Remove: netsh advfirewall firewall delete rule name="Allow ICMPv4 Ping" == Powershell Version == New-NetFirewallRule -DisplayName "Allow ICMPv4 Ping" ` -Direction Inbound ` -Protocol ICMPv4 ` -IcmpType 8 ` -Action Allow")