mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-12-17 09:45:22 +00:00
11 lines
192 B
PowerShell
11 lines
192 B
PowerShell
|
|
function Invoke-WPFFixesNetwork {
|
||
|
|
<#
|
||
|
|
|
||
|
|
.DESCRIPTION
|
||
|
|
PlaceHolder
|
||
|
|
|
||
|
|
#>
|
||
|
|
Write-Host "Reseting Network with netsh"
|
||
|
|
netsh int ip reset
|
||
|
|
netsh winsock reset
|
||
|
|
}
|