Get-MonitorSize.ps1 320 B

12345678
  1. Add-Type -AssemblyName System.Windows.Forms
  2. # [System.Windows.Forms.SystemInformation]::PrimaryMonitorSize
  3. $WmiVideoController=(Get-WmiObject -Class Win32_VideoController).VideoModeDescription;
  4. [PSCustomObject]@{
  5. FormsScreens=[System.Windows.Forms.Screen]::AllScreens;
  6. WmiVideoController=$WmiVideoController;
  7. }