mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2025-01-07 13:34:55 -06:00
37 lines
1.1 KiB
PowerShell
37 lines
1.1 KiB
PowerShell
Function Invoke-WinUtilDarkMode {
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Enables/Disables Dark Mode
|
|
|
|
.PARAMETER DarkMoveEnabled
|
|
Indicates the current dark mode state
|
|
|
|
#>
|
|
Param($DarkMoveEnabled)
|
|
Try{
|
|
if ($DarkMoveEnabled -eq $false){
|
|
Write-Host "Enabling Dark Mode"
|
|
$DarkMoveValue = 0
|
|
}
|
|
else {
|
|
Write-Host "Disabling Dark Mode"
|
|
$DarkMoveValue = 1
|
|
}
|
|
|
|
$Path = "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize"
|
|
Set-ItemProperty -Path $Path -Name AppsUseLightTheme -Value $DarkMoveValue
|
|
Set-ItemProperty -Path $Path -Name SystemUsesLightTheme -Value $DarkMoveValue
|
|
}
|
|
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
|
|
}
|
|
}
|