Skip to content

Commit

Permalink
Update win10debloat.ps1
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisTitusTech authored Oct 20, 2021
1 parent 89de942 commit 87e6b45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions win10debloat.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -714,15 +714,15 @@ $urlcreateiso.Add_Click({
$winterminal.Add_Click({
Write-Host "Installing New Windows Terminal"
$ResultText.text = "`r`n" +"`r`n" + "Installing New Windows Terminal... Please Wait"
winget -e install Microsoft.WindowsTerminal | Out-Host
winget install -e Microsoft.WindowsTerminal | Out-Host
if($?) { Write-Host "Installed New Windows Terminal" }
$ResultText.text = "`r`n" + "Finished Installing New Windows Terminal" + "`r`n" + "`r`n" + "Ready for Next Task"
})

$powertoys.Add_Click({
Write-Host "Installing Microsoft PowerToys"
$ResultText.text = "`r`n" +"`r`n" + "Installing Microsoft PowerToys... Please Wait"
winget -e install Microsoft.PowerToys | Out-Host
winget install -e Microsoft.PowerToys | Out-Host
if($?) { Write-Host "Installed Microsoft PowerToys" }
$ResultText.text = "`r`n" + "Finished Installing Microsoft PowerToys" + "`r`n" + "`r`n" + "Ready for Next Task"
})
Expand Down

0 comments on commit 87e6b45

Please sign in to comment.