Disassembler0 / Win10-Initial-Setup-Script

PowerShell script for automation of routine tasks done after fresh installations of Windows 10 / Server 2016 / Server 2019
MIT License
4.69k stars 1.08k forks source link

Transparency not being disabled on 2004 #330

Open Leftier opened 3 years ago

Leftier commented 3 years ago

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
E3V3A commented 3 years ago

@Leftier any updates on this?

Leftier commented 3 years ago

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