How to Allow ICMP (ping) Through Windows Firewall

If you’re trying to ping your windows instance and you cannot, one of the likely reasons is that ICMP is blocked by the firewall. Here is how you can enable ICMP in your Windows Firewall. To allow ICMP (ping) through the Windows Firewall, follow these steps: Open the Windows Firewall GUI Open the Windows Start menu and type “Windows Firewall” into the search box. Click on “Windows Firewall with Advanced Security” in the search results....

December 8, 2022 · 2 min · chart

PowerShell Find All User Roles

What is the PowerShell command to find all roles for your user? PowerShell Find All User Roles Command Find all roles for your own user with PowerShell $userRoles = ([adsisearcher]"samaccountname=$env:UserName").FindAll()|select - ExpandProperty properties $userRoles.memberof | sort Find all roles for another user with PowerShell $user = "userNameHere" $userRoles = ([adsisearcher]"samaccountname=$user").FindAll()|select - ExpandProperty properties $userRoles.memberof | sort

June 23, 2022 · 1 min · chart