PowerShell/scripts/disable-ipv6.ps1
2024-10-01 15:11:03 +02:00

22 lines
577 B
PowerShell
Executable File

<#
.SYNOPSIS
Disables IPv6 (requires admin rights)
.DESCRIPTION
This PowerShell script disables IPv6 on all network interfaces of the local computer (requires administrator rights).
.EXAMPLE
PS> ./disable-ipv6.ps1
✔ IPv6 is disabled now.
.LINK
https://github.com/fleschutz/PowerShell
.NOTES
Author: Markus Fleschutz | License: CC0
#>
try {
Disable-NetAdapterBinding -Name '*' -ComponentID 'ms_tcpip6'
"✅ IPv6 is disabled now."
exit 0 # success
} catch {
"⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}