PowerShell/WMI: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Video Controller == get-ciminstance win32_videocontroller | select-object -expandproperty adapterram") |
|||
Line 1: | Line 1: | ||
== Video | == Video Card == | ||
<pre> | |||
C:\>wmic path win32_VideoController get name | |||
Name | |||
NVIDIA GeForce RTX 4060 Ti | |||
</pre> | |||
If your video card has less than 4GB of ram (32bit limitation) this will also work to show amount of video ram: | |||
<pre> | |||
C:\>wmic path win32_VideoController get adapterram | |||
</pre> | |||
Powershell version of wmic: | |||
get-ciminstance win32_videocontroller | select-object -expandproperty adapterram | get-ciminstance win32_videocontroller | select-object -expandproperty adapterram | ||
== keywords == |
Revision as of 05:20, 4 August 2024
Video Card
C:\>wmic path win32_VideoController get name Name NVIDIA GeForce RTX 4060 Ti
If your video card has less than 4GB of ram (32bit limitation) this will also work to show amount of video ram:
C:\>wmic path win32_VideoController get adapterram
Powershell version of wmic:
get-ciminstance win32_videocontroller | select-object -expandproperty adapterram