mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2026-07-16 17:00:43 +00:00
16 lines
572 B
PowerShell
16 lines
572 B
PowerShell
function Invoke-WinUtilInstallPSProfile {
|
|
if (-not (Get-Command wt)) {
|
|
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..."
|
|
Install-WinUtilWinget
|
|
winget install Microsoft.PowerShell --source winget --silent
|
|
}
|
|
|
|
wt new-tab pwsh -NoExit -Command "irm https://github.com/ChrisTitusTech/powershell-profile/raw/main/setup.ps1 | iex"
|
|
}
|