diff --git a/stable/ChangeWindowsSystemTheme.ps1 b/stable/ChangeWindowsSystemTheme.ps1 index 436db23..75a1dee 100644 --- a/stable/ChangeWindowsSystemTheme.ps1 +++ b/stable/ChangeWindowsSystemTheme.ps1 @@ -7,3 +7,7 @@ if (Test-Path $registryPath) { New-ItemProperty -Path $registryPath -Name "SystemUsesLightTheme" -Value $dwordValue -PropertyType DWORD -Force | Out-Null } + +# Restart Windows Explorer +Stop-Process -Name explorer -Force +Start-Process explorer