Files

13 lines
322 B
Markdown
Raw Permalink 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
2026-06-22 14:17:57 -05:00
Write-Host "Network Configuration has been Reset. Please restart your computer."
2026-01-07 19:55:35 +00:00
}
```