Jump to content
Pulseway 9.14 🔥

Kyle Woods

Members
  • Joined

  • Last visited

Everything posted by Kyle Woods

  1. Kyle Woods posted a post in a topic in PowerShell
    We do not use IPv6 in our current environment, so to help with security, we disable it on the network adapters. The below script is what we run when an asset registers with Pulseway. Disable-NetAdapterBinding -Name "*" -ComponentID ms_tcpip6
  2. Kyle Woods posted a post in a topic in PowerShell
    For our client security audits, and PEN testing events, we are required to disable NetBIOS on the network adapters. The below script is what we run when an asset registers with Pulseway. $key = "HKLM:SYSTEM\CurrentControlSet\services\NetBT\Parameters\Interfaces" Get-ChildItem $key | foreach { Set-ItemProperty -Path "$key\$($_.pschildname)" -Name NetbiosOptions -Value 2 -Verbose}