mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06: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
|
||
|
}
|