Files
winutil/docs/content/dev/features/Fixes/Network.md
T

13 lines
321 B
Markdown
Raw Normal View History

2026-02-10 19:49:36 +00:00
---
2026-04-17 09:04:35 -05:00
title: "Network - Reset"
2026-02-10 19:49:36 +00:00
description: ""
---
2026-02-18 12:37:09 -06:00
```powershell {filename="functions/public/Invoke-WPFFixesNetwork.ps1",linenos=inline,linenostart=1}
2026-01-07 19:55:35 +00:00
function Invoke-WPFFixesNetwork {
2026-06-03 13:46:17 -05:00
netsh winsock reset
netsh int ip reset
Write-Host "Network Configuration has been Reset Please restart your computer."
2026-01-07 19:55:35 +00:00
}
```