mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-15 07:05:51 -06:00
af36d76e65
* Main * Fixes previous issues * Change the ordering of Some Toggle for Consistency --------- Co-authored-by: Mr.k <mineshtine28546271@gmail.com>
35 lines
986 B
PowerShell
35 lines
986 B
PowerShell
function Invoke-WinUtilHiddenFiles {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Enable/Disable Hidden Files
|
|
|
|
.PARAMETER Enabled
|
|
Indicates whether to enable or disable Hidden Files
|
|
|
|
#>
|
|
Param($Enabled)
|
|
Try{
|
|
if ($Enabled -eq $false){
|
|
Write-Host "Enabling Hidden Files"
|
|
$value = 1
|
|
}
|
|
else {
|
|
Write-Host "Disabling Hidden Files"
|
|
$value = 0
|
|
}
|
|
$Path = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced"
|
|
Set-ItemProperty -Path $Path -Name Hidden -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
|
|
}
|
|
}
|