You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can have a flag that controls whether refresh rate should be shown along with resolution. Also, please explore how to get the info for multiple monitors.
Command to get current refresh rate of display
Get-CimInstance -ClassName Win32_VideoController | Select-Object -Property CurrentRefreshRate
$refreshrate = (Get-CimInstance -ClassName Win32_VideoController -Property CurrentRefreshRate -CimSession $cimSession).CurrentRefreshRate
I'm wondering if we should show refresh rate with resolution or as a different option, Also I don't know how it will work with multi monitor setup
With resolution
As a different option
The text was updated successfully, but these errors were encountered: