mirror of
https://github.com/ChrisTitusTech/winutil
synced 2026-06-04 14:17:27 +00:00
13 lines
321 B
Markdown
13 lines
321 B
Markdown
---
|
|
title: "Network - Reset"
|
|
description: ""
|
|
---
|
|
|
|
```powershell {filename="functions/public/Invoke-WPFFixesNetwork.ps1",linenos=inline,linenostart=1}
|
|
function Invoke-WPFFixesNetwork {
|
|
netsh winsock reset
|
|
netsh int ip reset
|
|
Write-Host "Network Configuration has been Reset Please restart your computer."
|
|
}
|
|
```
|