powershell.ps1 Add-Type -AssemblyName System.Windows.Forms $bounds = [System.Windows.Forms.SystemInformation]::VirtualScreen Write-Host "W=$($bounds.Width) H=$($bounds.Height) X=$($bounds.X) Y=$($bounds.Y)" output: W=2560 H=1440 X=0 Y=0  But my monitor is 4K. Why is the reading error?