Win10-Initial-Setup-Script icon indicating copy to clipboard operation
Win10-Initial-Setup-Script copied to clipboard

Transparency not being disabled on 2004

Open Leftier opened this issue 5 years ago • 2 comments

SetVisualFXPerformance is supposed to disable transparency but there isn't any property defined to do so..

I'm kind of inexperienced that's why I'm not opening a PR but I think the following property should be added in SetVisualFXPerformance:

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "EnableTransparency" -Type DWord -Value 0

And in SetVisualFXAppearance:

Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize" -Name "EnableTransparency" -Type DWord -Value 1

Leftier avatar Jul 28 '20 06:07 Leftier

@Leftier any updates on this?

E3V3A avatar Sep 30 '20 10:09 E3V3A

There are no updates, as I said transparency is not disabled in windows 10 2004 when using SetVisualFXPerfomance

As you can see from the script, it indicates that using this should disable transparency: # Adjusts visual effects for performance - Disables animations, transparency etc. but leaves font smoothing and miniatures enabled Function SetVisualFXPerformance { ... }

I have no idea if it works correctly in other versions

Leftier avatar Sep 30 '20 16:09 Leftier