XVII. Juli 2017
Powershell: IPv4 und IPv6 Ping erlauben
Ein Computer der nur im internen Netz sich befindet kann man mit gutem gewissen den Ping erlauben. Bis anhin kann man den "Einzeiler" vom Netsh verwenden. Das seit Windows Server 2008/Vista eingeführte netsh Command wird aber von Microsoft nach eigenen Aussagen in einer zukünftigen Version nicht mehr unterstützen. Daher soll man für die Zukunft gewappnet sein.
Da direkt mit den Default Regel von Windows gearbeitet wird, muss man auf die UI des Betriebssystem acht geben. In diesem Fall habe ich Englisch und Deutsch abgedeckt.
Clear-Host # ************************************************************** # * PowserShell Script * # ************************************************************** # * Script: * # * Allow IPv4 and IPv6 Ping * # ************************************************************** # * Autor: * # * D. Stastka, 2017-07-17 * # ************************************************************** # Import-Module NetSecurity $Keys = Get-ChildItem hklm:\SYSTEM\CurrentControlSet\Control\MUI\UILanguages # ---- For Debug, show UI Languages ---- #$Keys | Format-Table Name, ValueCount -AutoSize $LangArr = $Keys.Name.Split("\") $Lang = $LangArr[$LangArr.Count-1] if($Lang -eq "en-GB") { #English Set-NetFirewallRule -DisplayName "File and Printer Sharing (Echo Request – ICMPv4-In)" -enabled True } if($Lang -eq "de-DE") { #Deutsch Set-NetFirewallRule -DisplayName "Datei- und Druckerfreigabe (Echoanforderung - ICMPv4 eingehend)" -enabled True } #New Rules for allow IPv4 Ping New-NetFirewallRule -Name Allow_Ping -DisplayName "Allow Ping IPv4" -Description "Packet Internet Groper ICMPv4" -Protocol ICMPv4 -IcmpType 8 -Enabled True -Profile Any -Action Allow #New Rules for allow IPv6 Ping New-NetFirewallRule -Name Allow_PingV6 -DisplayName "Allow Ping IPv6" -Description "Packet Internet Groper ICMPv6" -Protocol ICMPv6 -IcmpType 8 -Enabled True -Profile Any -Action Allow
Permalink:
Powershell: IPv4 und IPv6 Ping erlauben×
...auch noch interessant
- Windows 10 // 29.02.2024there is a problem with windows installer package. A DLL required for this install to complete could not be run
- Windows // 01.11.2022VMware Aria Automation 8.x: VMPSMasterWorkflow32 MachineProvisioned SysPrep
- Windows // 31.10.2022Windows 2022 Disk Layout from Hell (update)
- Powershell // 22.04.2022Opnsense: Backup mit Rest-API (os-api-backup)
Tippsammlung
Kleine Tippsammlung für mich und dijenige die sich auf meine Webseite verirrt haben.Archiv
Jahr
Tag(s):- Jun 2024 (1)
- May 2024 (1)
- Apr 2024 (2)
- Feb 2024 (3)
- Jan 2024 (1)
- Sep 2023 (1)
- Jul 2023 (1)
- Apr 2023 (1)
- Feb 2023 (1)
- Nov 2022 (2)
- Oct 2022 (1)
- Jul 2022 (1)
- Jun 2022 (2)
- May 2022 (2)
- Apr 2022 (6)
- tipps (31)
- synology (27)
- linux (22)
- Windows (19)
- tool (19)
- Powershell (15)
- Windows 10 (13)
- csharp (c#) (10)
- coding (9)
- Ubuntu (6)
- security (6)
- ad (6)
- Windows 2012 R2 (5)
- vpn (5)
- Pi (5)
- gitea (5)
- git (5)
- Windows 2012 (4)
- Ubuntu 22.04 (4)
- opnsense (4)
- openpgp.js (4)
- mysql (4)
- docker (4)
- Xubuntu (3)
- Windows 2016 (3)
- web2 (3)
- seo (3)
- LMS (3)
- Japanisch (3)
- ipkg (3)
- bash (3)
- app (3)
- Android (3)
- Zertifizierungsstelle (2)
- www (2)
- wsus (2)
- Windows Updates (2)
- windows 2022 (2)
- Windows 2008 (2)
- wadoku (2)
- VMware (2)
- verschlüsselung (2)
- Scripts (2)
- php (2)
- pgp (2)
- perl (2)
- openvpn (2)
- Kanji (2)
- javascript (2)
- GnuPgP (2)
Nichts gefunden
Es wurde zur Story Powershell: IPv4 und IPv6 Ping erlauben kein Kommentar gefundenInformation
Werbung oder Ähnliches sind nicht erlaubt, daher wird jeder Beitrag geprüft und freigegeben.Advertising, etc. are not allowed, so any contribution is reviewed and approved.
Facebook-Webadress are not allowed, Facebook als Webadresse ist nicht erlaubt
* Die E-Mail wird nicht veröffentlicht / The email will not be published
** Bitte Zahl eintragen / Please enter the number
Modal Header
Some text in the Modal Body
Some other text...
(c)2024 stastka.ch // help system