AutopilotBranding icon indicating copy to clipboard operation
AutopilotBranding copied to clipboard

Feature Request

Open dany20mh opened this issue 4 years ago • 2 comments

Hi,

Is it possible to add the "Scale and Layout" setting as well to this so we can set the default, for example, to 100% for all the users?

dany20mh avatar Nov 02 '20 12:11 dany20mh

Hi there, I have the solution to this it's an easy one, That said, I do not recommend that you do so. Because once you set it by script non admins cannot change it themselves. I have it for a while in my SCCM image and it was causing more issues then fixes.

it would be something like so `# STEP X: Set DPI Scalling to 100 Write-Host "Turning off (old) Edge desktop shortcut"

reg.exe load "HKLM\DEFAULT" c:\users\default\ntuser.dat | Out-Host

reg.exe add "HKLM\DEFAULT\Control Panel\Desktop" /v LogPixels /t REG_DWORD /d 96 /f /reg:64 | Out-Host reg.exe add "HKLM\DEFAULT\Control Panel\Desktop" /v Win8DpiScaling /t REG_DWORD /d 0 /f /reg:64 | Out-Host

reg.exe unload "HKLM\DEFAULT" | Out-Host`

Be sure to test first

References: https://scribbleghost.net/2018/06/25/customize-windows-10-default-user-profile/ https://www.tenforums.com/tutorials/5990-change-dpi-scaling-level-displays-windows-10-a.html

boivinx7 avatar May 03 '22 15:05 boivinx7

@boivinx7 Thanks, I will give it a try.

dany20mh avatar May 03 '22 16:05 dany20mh