Win10-Initial-Setup-Script
                                
                                 Win10-Initial-Setup-Script copied to clipboard
                                
                                    Win10-Initial-Setup-Script copied to clipboard
                            
                            
                            
                        Transparency not being disabled on 2004
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 any updates on this?
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