mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-08-09 09:31:15 +10:00
standardize console message punctuation and capitalization (#4680)
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
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
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@ function Invoke-WinUtilSSHServer {
|
||||
|
||||
# Install the OpenSSH Server feature if not already installed
|
||||
if ((Get-WindowsCapability -Name OpenSSH.Server -Online).State -ne "Installed") {
|
||||
Write-Host "Enabling OpenSSH Server... This will take a long time"
|
||||
Write-Host "Enabling OpenSSH Server... This will take a long time."
|
||||
Add-WindowsCapability -Name OpenSSH.Server -Online
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user