mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-07 16:44:22 +01:00
22 lines
577 B
PowerShell
Executable File
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
|
|
} |