chore: Update generated dev docs (#4736)

This commit is contained in:
Chris Titus
2026-06-22 14:17:57 -05:00
committed by GitHub
parent 1d4fa15f7e
commit 7ffb396786
3 changed files with 4 additions and 4 deletions

View File

@@ -7,6 +7,6 @@ description: ""
function Invoke-WPFFixesNetwork {
netsh winsock reset
netsh int ip reset
Write-Host "Network Configuration has been Reset Please restart your computer."
Write-Host "Network Configuration has been Reset. Please restart your computer."
}
```

View File

@@ -6,13 +6,13 @@ description: ""
```powershell {filename="functions/private/Invoke-WinUtilInstallPSProfile.ps1",linenos=inline,linenostart=1}
function Invoke-WinUtilInstallPSProfile {
if (-not (Get-Command wt)) {
Write-Host "Windows Terminal not found installing..."
Write-Host "Windows Terminal not found. Installing..."
Install-WinUtilWinget
winget install Microsoft.WindowsTerminal --source winget --silent
}
if (-not (Get-Command pwsh)) {
Write-Host "Powershell 7 not found installing..."
Write-Host "PowerShell 7 not found. Installing..."
Install-WinUtilWinget
winget install Microsoft.PowerShell --source winget --silent
}

View File

@@ -13,7 +13,7 @@ function Invoke-WPFOOSU {
$ProgressPreference = 'Continue'
} catch {
Write-Error "Couldn't download O&O ShutUp10. Please make sure you have an active internet connection."
Write-Error "Couldn't download O&O ShutUp10. Please make sure you have an active Internet connection."
}
}
```