mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-08-09 05:04:39 +02:00
Add restart-network-adapters.ps1
This commit is contained in:
32
Scripts/restart-network-adapters.ps1
Normal file
32
Scripts/restart-network-adapters.ps1
Normal file
@ -0,0 +1,32 @@
|
||||
#Requires -RunAsAdministrator
|
||||
<#
|
||||
.SYNOPSIS
|
||||
restart-network-adapters.ps1
|
||||
.DESCRIPTION
|
||||
Restarts all local network adapters (needs admin rights)
|
||||
.INPUTS
|
||||
None
|
||||
.OUTPUTS
|
||||
None
|
||||
.EXAMPLE
|
||||
PS> .\restart-network-adapters.ps1
|
||||
.LINK
|
||||
htts://github.com/fleschutz/PowerShell
|
||||
.NOTES
|
||||
Author: Markus Fleschutz
|
||||
Creation Date: 2021-08-27
|
||||
License: CC0
|
||||
#>
|
||||
|
||||
try {
|
||||
$StopWatch = [system.diagnostics.stopwatch]::startNew()
|
||||
|
||||
Get-NetAdapter | Restart-NetAdapter
|
||||
|
||||
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
|
||||
"✔️ restarted all local network adapters in $Elapsed sec"
|
||||
exit 0
|
||||
} catch {
|
||||
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
||||
exit 1
|
||||
}
|
Reference in New Issue
Block a user