add reset network with netsh (#768)

This commit is contained in:
Padsala Tushal
2023-05-17 22:43:53 +05:30
committed by GitHub
parent 96cd8bfd28
commit d21a06424b
4 changed files with 29 additions and 3 deletions

View File

@ -0,0 +1,11 @@
function Invoke-WPFFixesNetwork {
<#
.DESCRIPTION
PlaceHolder
#>
Write-Host "Reseting Network with netsh"
netsh int ip reset
netsh winsock reset
}