У нас вы можете посмотреть бесплатно PowerShell Get-ComputerInfo Explained | Full Windows System Information или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
PowerShell Get-ComputerInfo Explained | Full Windows System Information. In this quick tutorial, learn how to use Get-ComputerInfo to grab OS, BIOS, CPU/RAM, virtualization support, and hotfix IDs—then filter, query remote PCs with WinRM, and export a clean CSV for inventory. We also cover caveats (WindowsVersion vs winver, ProductName mismatches), plus Linux alternatives when the cmdlet isn’t available. Applies to: ✅ Windows 11 ✅ Windows 10 ✅ Windows Server 2025 ✅ Windows Server 2022 ✅ Windows Server 2019 ✅ Windows Server 2016 ✅ Windows Server 2012 R2 (with WMF 5.1 installed) Chapters: 0:00 Introduction 0:38 Get-ComputerInfo 1:59 Limitations 2:43 Caveats and Gotchas 3:41 Windows-only -- PowerShell versions 4:40 PowerShell on Linux 5:12 Thank you for watching 5:35 Links Glossary: BIOS = Basic Input/Output System CIM = Common Information Model CPU = Central Processing Unit CSV = Comma-Separated Values DCOM = Distributed Component Object Model IP = Internet Protocol KB = Knowledge Base OS = Operating System PWSH = PowerShell Shell RPC = Remote Procedure Call TPM = Trusted Platform Module UBR = Update Build Revision WMF = Windows Management Framework WMI = Windows Management Instrumentation WinRM = Windows Remote Management GitHub: https://github.com/DariensTips/PowerS... Commands: Legacy System Information systeminfo.exe systeminfo.exe | findstr /i ver Get-ComputerInfo cmdlet Get-ComputerInfo -Property name*,*vers Get-ComputerInfo -Property name*,*vers | Where-Object {$_.OsName -like "*10*"} Get-ComputerInfo | Out-String -Stream | Select-String Window Get-ComputerInfo | findstr Window Invoke-Command to run on other computers Invoke-Command -ComputerName web01 -ScriptBlock {Get-ComputerInfo} Get IP address information Get-NetIPAddress | Select-Object ipaddress,interfacealias,AddressFamily Query CIMv2 Get-CimInstance -namespace "Root\CIMV2\Security\MicrosoftTpm" -ClassName Win32_Tpm Get-Tpm Get installed hotfixed Get-HotFix | Sort-Object InstalledOn -Descending Links: https://learn.microsoft.com/en-us/pow... https://learn.microsoft.com/en-us/pow... https://learn.microsoft.com/en-us/win... https://learn.microsoft.com/en-us/pow... https://github.com/PowerShell/PowerShell Hashtags: #PowerShell #GetComputerInfo #Windows11