Files
winutil/functions/private/Invoke-WinUtilShowExt.ps1
T

28 lines
987 B
PowerShell
Raw Normal View History

+1
2023-11-14 15:45:48 -06:00
function Invoke-WinUtilShowExt {
<#
.SYNOPSIS
Disables/Enables Show file Extentions
.PARAMETER Enabled
Indicates whether to enable or disable Show file extentions
#>
Param($Enabled)
try {
if ($Enabled -eq $false) {
+1
2023-11-14 15:45:48 -06:00
Write-Host "Showing file extentions"
$value = 0
} else {
+1
2023-11-14 15:45:48 -06:00
Write-Host "hiding file extensions"
$value = 1
}
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
Set-ItemProperty -Path $Path -Name HideFileExt -Value $value
} catch [System.Security.SecurityException] {
+1
2023-11-14 15:45:48 -06:00
Write-Warning "Unable to set $Path\$Name to $Value due to a Security Exception"
} catch [System.Management.Automation.ItemNotFoundException] {
+1
2023-11-14 15:45:48 -06:00
Write-Warning $psitem.Exception.ErrorRecord
} catch {
+1
2023-11-14 15:45:48 -06:00
Write-Warning "Unable to set $Name due to unhandled exception"
Write-Warning $psitem.Exception.StackTrace
}
}