mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-15 15:15:51 -06:00
9086b30a75
Co-authored-by: hubster-bot <hubsterbotbuisness@gmail.com> Co-authored-by: Chris Titus <contact@christitus.com>
35 lines
983 B
PowerShell
35 lines
983 B
PowerShell
function Invoke-WinUtilTaskView {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Enable/Disable Task View
|
|
|
|
.PARAMETER Enabled
|
|
Indicates whether to enable or disable Task View
|
|
|
|
#>
|
|
Param($Enabled)
|
|
Try{
|
|
if ($Enabled -eq $false){
|
|
Write-Host "Enabling Task View"
|
|
$value = 1
|
|
}
|
|
else {
|
|
Write-Host "Disabling Task View"
|
|
$value = 0
|
|
}
|
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
|
Set-ItemProperty -Path $Path -Name ShowTaskViewButton -Value $value
|
|
}
|
|
Catch [System.Security.SecurityException] {
|
|
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
|
|
}
|
|
Catch [System.Management.Automation.ItemNotFoundException] {
|
|
Write-Warning $psitem.Exception.ErrorRecord
|
|
}
|
|
Catch{
|
|
Write-Warning "Unable to set $Name due to unhandled exception"
|
|
Write-Warning $psitem.Exception.StackTrace
|
|
}
|
|
}
|