- Команда SYSTEMINFO — отобразить информацию о системе.
- Как получить информацию о компьютере с помощью команды systeminfo
- Как использовать команду systeminfo
- Дополнительные параметры команды systeminfo
- Синтаксис команды systeminfo
- SYSTEM_INFO structure (sysinfoapi.h)
- Syntax
- Members
- PROCESSOR_INTEL_386 (386)
- PROCESSOR_INTEL_486 (486)
- PROCESSOR_INTEL_PENTIUM (586)
- PROCESSOR_INTEL_IA64 (2200)
- PROCESSOR_AMD_X8664 (8664)
- PROCESSOR_ARM (Reserved)
- Как получить сведения о системе в Windows
- Утилита msinfo32.exe (Сведения о системе)
- Получение сведений о системе с помощью команды systeminfo
- Информация о системе в Windows PowerShell
- Выводы статьи
- How to view system information on Windows 7
- How to see Windows 7 system info
- Systeminfo
- Windows Management Instrumentation Command-Line utility
- System Information
Команда SYSTEMINFO — отобразить информацию о системе.
Команда SYSTEMINFO отображает сведения о конфигурации операционной системы на локальном или удаленном компьютере, включая уровни пакета обновления.
Формат командной строки:
SYSTEMINFO — вывод информации о системе на локальном компьютере.
SYSTEMINFO | more — вывод информации о системе на локальном компьютере в постраничном режиме.
SYSTEMINFO > C:\systeminfo.txt — вывод информации о системе на локальном компьютере в текстовый файл C:\systeminfo.txt.
SYSTEMINFO /S server — вывод информации о системе на удаленном компьютере server . Для подключения к удаленному компьютеру используется учетная запись текущего пользователя.
SYSTEMINFO /S Comp1 /U mydomain\admin /P admpassword /FO TABLE — вывод информации о системе на удаленном компьютере Comp1 в формате таблицы. Для подключения к удаленному компьютеру используется учетная запись с именем пользователя admin и паролем admpassword в домене mydomain
SYSTEMINFO /S Comp1 /FO LIST — вывод информации о системе на удаленном компьютере Comp1 в формате списка
SYSTEMINFO /S Comp1 /FO CSV /NH — вывод информации о системе на удаленном компьютере Comp1 в формате списка с полями, разделяемыми запятыми ( CSV ) без выдачи заголовка ( /NH )
Пример отображаемой информации:
Для поиска определенных текстовых признаков, удобно использовать команду systeminfo в цепочке с командой find :
susteminfo | find /i «KB982861» — отобразить информацию о наличии установленного обновления KB982861
Как получить информацию о компьютере с помощью команды systeminfo
Команда Windows systeminfo позволяет получить список информации о вашем компьютере. Благодаря этой команде, доступной во всех операционных системах Microsoft, мы можем узнать версию операционной системы и BIOS, тип процессора, объём доступной физической и виртуальной памяти (что такое виртуальная память), тип сетевой карты и многое другое.
Следующее руководство можно использовать на всех компьютерах с Windows 10, Windows 8.1/8, Windows 7 и Windows Vista.
Как использовать команду systeminfo
Давайте узнаем, как получать информацию о компьютере с помощью команды Windows systeminfo.
- Нажимаем на клавиатуре компьютера клавиши Win (клавиша с логотипом Windows) и R . Откроется окно «Выполнить».
- В поле Открыть: введите cmd и нажмите кнопку ОК . Откроется командная строка.
- В командной строке введите: systeminfo
- Нажмите клавишу Enter на клавиатуре компьютера.
- Дождитесь загрузки информации.
Отобразиться следующая информация:
- Имя хоста
- Название OS (операционная система)
- Версия OS
- Производитель OS
- Конфигурация OS
- Тип сборки OS
- Зарегистрированный владелец
- Серийный номер
- Дата первоначальной установки
- Время загрузки системы
- Производитель системы
- Модель системы
- Тип системы
- Процессор
- Версия BIOS
- Папка Windows
- Системная папка
- Загрузочное устройство
- Настройки локальной системы
- Настройки локального ввода
- Часовой пояс
- Общая доступная физическая память
- Виртуальная память: доступная и используемая
- Расположение файла подкачки
- Домен
- Сервер входа в сеть
- Обновления
- Сетевые адаптеры
- Режим виртуализации
Дополнительные параметры команды systeminfo
- /s компьютер. Указать имя или IP-адрес удаленного компьютера, к которому мы хотим подключиться. По умолчанию используется локальный компьютер.
- /u домен\пользователь. Этот параметр используется для запуска команды systeminfo с разрешениями учетной записи пользователя, указанными в домен\пользователь. По умолчанию используются разрешения пользователя, вошедшего в систему на компьютере, на котором выполняется команда.
- /p пароль. Задает пароль пользователя, указанный в параметре /u.
- /fo формат. Определяет формат, в котором будет отображаться вывод. Допустимые значения TABLE, LISTи CSV. Формат по умолчанию для вывода LIST.
- /nh. Удалить заголовки столбцов в выводе. Этот параметр действителен только форматах TABLE или CSV.
- /?. Отображает справку для команды syteminfo.
Синтаксис команды systeminfo
systeminfo [/s компьютер [/u домен\пользователь [/p пароль]]] [/fo формат] [/nh]
SYSTEM_INFO structure (sysinfoapi.h)
Contains information about the current computer system. This includes the architecture and type of the processor, the number of processors in the system, the page size, and other such information.
Syntax
Members
An obsolete member that is retained for compatibility. Applications should use the wProcessorArchitecture branch of the union.
The processor architecture of the installed operating system. This member can be one of the following values.
Value | Meaning |
---|---|
PROCESSOR_ARCHITECTURE_AMD64 9 | x64 (AMD or Intel) |
PROCESSOR_ARCHITECTURE_ARM 5 | ARM |
PROCESSOR_ARCHITECTURE_ARM64 12 | ARM64 |
PROCESSOR_ARCHITECTURE_IA64 6 | Intel Itanium-based |
PROCESSOR_ARCHITECTURE_INTEL 0 | x86 |
PROCESSOR_ARCHITECTURE_UNKNOWN 0xffff | Unknown architecture. |
This member is reserved for future use.
The page size and the granularity of page protection and commitment. This is the page size used by the VirtualAlloc function.
A pointer to the lowest memory address accessible to applications and dynamic-link libraries (DLLs).
A pointer to the highest memory address accessible to applications and DLLs.
A mask representing the set of processors configured into the system. Bit 0 is processor 0; bit 31 is processor 31.
The number of logical processors in the current group. To retrieve this value, use the GetLogicalProcessorInformation function.
An obsolete member that is retained for compatibility. Use the wProcessorArchitecture, wProcessorLevel, and wProcessorRevision members to determine the type of processor.
PROCESSOR_INTEL_386 (386)
PROCESSOR_INTEL_486 (486)
PROCESSOR_INTEL_PENTIUM (586)
PROCESSOR_INTEL_IA64 (2200)
PROCESSOR_AMD_X8664 (8664)
PROCESSOR_ARM (Reserved)
The granularity for the starting address at which virtual memory can be allocated. For more information, see VirtualAlloc.
The architecture-dependent processor level. It should be used only for display purposes. To determine the feature set of a processor, use the IsProcessorFeaturePresent function.
If wProcessorArchitecture is PROCESSOR_ARCHITECTURE_INTEL, wProcessorLevel is defined by the CPU vendor.
If wProcessorArchitecture is PROCESSOR_ARCHITECTURE_IA64, wProcessorLevel is set to 1.
The architecture-dependent processor revision. The following table shows how the revision value is assembled for each type of processor architecture.
Processor | Value |
---|---|
Intel Pentium, Cyrix, or NextGen 586 | The high byte is the model and the low byte is the stepping. For example, if the value is xxyy, the model number and stepping can be displayed as follows: Model xx, Stepping yy |
Intel 80386 or 80486 | A value of the form xxyz. If xx is equal to 0xFF, y — 0xA is the model number, and z is the stepping identifier. If xx is not equal to 0xFF, xx + ‘A’ is the stepping letter and yz is the minor stepping. Как получить сведения о системе в WindowsСведения о системе необходимы пользователю для получения информации об аппаратных и программных компонентах компьютера. Основные сведения о компьютере отображаются в параметрах Windows, к которым легко получить доступ, войдя в «Параметры» Windows. В некоторых случаях, предоставляемые сведения о системе Windows в параметрах операционной системы, недостаточны. Поэтому необходима более подробная информация, которую можно использовать для решения проблем или для получения справочных сведений. Как получить сведения о системе? Общие сведения о системе можно получить с помощью встроенных средств операционной системы, или с помощью специализированных программ от сторонних разработчиков. К сожалению, не всегда есть возможность воспользоваться на данном компьютере услугами сторонних программ. Поэтому в статье я расскажу, как получить сведения о системе с помощью встроенных средств, на примере Windows 10 (в других операционных системах средства работают аналогично). Утилита msinfo32.exe (Сведения о системе)Утилита msinfo32.exe (Сведения о системе) позволяет получить подробную информацию о компьютере: аппаратных ресурсах, компонентах, программной среде.
Второй способ запуска утилиты msinfo32:
После этого, начнется сбор сведений о системе, откроется окно утилиты «Сведения о системе», в котором отображена основная информация об операционной системе Windows, об оборудовании и компонентах. Обычному пользователю обычно достаточно этих сведений. Специалисты могут посмотреть другие параметры системы: аппаратные ресурсы, компоненты, программная среда. В каждом разделе собраны подкатегории, в которых отображены подробные данные обо всех параметрах системы. Полученные сведения можно сохранить в файл на компьютере. Войдите в меню «Файл», нажмите на пункт «Сохранить» («Ctrl» + «S») для сохранения информации в файле сведений о системе (*.NFO), или на пункт «Экспорт» для сохранения данных в текстовом файле (формат *.TXT). Получение сведений о системе с помощью команды systeminfoДля просмотра сведений о системе можно воспользоваться консольной утилитой. Запустите командную строку от имени администратора. Введите команду «systeminfo» (без кавычек). После этого, в окне интерпретатора командной строки отобразится общая информация о системе. Для сохранения сведений о системе на компьютер, введите в командной строке следующую команду: После выполнения команды, на диске «С» компьютера будет сохранен файл «systeminfo» в формате «TXT». Этот файл лучше открыть не в Блокноте (там будут проблемы с кодировкой русских букв), а в альтернативном текстовом редакторе, например, Notepad++, который поддерживает различные кодировки. Информация о системе в Windows PowerShellОзнакомится с нужными данными об операционной системе можно с помощью встроенного инструмента системы Windows PowerShell. Запустите Windows PowerShell на компьютере, введите команду «systeminfo» (без кавычек), а затем нажмите на клавишу клавиатуры «Enter». В окне Windows PowerShell вы увидите общие данные о системе. Выводы статьиПользователь может получить сведения о системе с помощью средств операционной системы Windows: с помощью утилиты msinfo32.exe, или с помощью выполнения команды systeminfo в консольной утилите или в Windows PowerShell. How to view system information on Windows 7If you’re about to install a new app, or you’re troubleshooting your device, there is not a better place to figure out basic questions about the operating system and hardware than using System from Control Panel. The quickest way to get to System is to right-click the Computer shortcut and selecting Properties, from the Start menu or from most places where you see the Computer shortcut. System is organized in four different sections with useful information about your computer: Windows edition shows you which version of Windows you are currently running and Service Pack number; System displays your computer’s Windows Experience Index based score, basically this is a number that tells you the overall capability of your computer, and important hardware detail (CPU make and model, installed memory, and if you are using 32-bit or 64-bit version); Computer name, domain, and workgroup settings shows just that information and you can modify these settings by clicking the Change settings link, and Windows activation, this verifies that you are using a genuine copy of Windows. Links on the left pane allow you to access other sections in Windows that can provide more information about your computer like the Device Manager, where you can obtain detailed information of all installed hardware and driver information as well — Device Manager can also be accessed by typing devmgmt.msc in Windows’ Command Prompt or in the Run Command –, from the left pane you can also access the Remote Settings, System Protection (System Restore), and more. How to see Windows 7 system infoSystem is a great place to get basic answers about your computer, but for a more technical and detailed information about your system configuration, Microsoft Windows comes with 3 other utilities: SysteminfoSysteminfo or systeminfo.exe is a command-line utility that is capable of showing information about Windows version, CPU, BIOS, memory and network information, and many other useful items. Exporting your system configuration from systeminfo —To use Systeminfo you’ll need to open the Command Prompt, type systeminfo, and press Enter. Then if you want to save the output information to import it into a database or to just have an inventory of the components in your system, you can do this in two different file formats: Table and CSV. To export your system information in one of these formats, you’ll have to append the /FO command switch with the file format and the destination path with the file name. For example: systeminfo /fo csv > C:\WinInfo.csv Also, you are not limited to gather system information from your local computer alone with systeminfo, you can also get system information from Windows’ computers that are in the network by appending the /S switch. But, if the other computer don’t have your same username and password, you’ll need to supply the /U and /P switches too. Use this command-line as reference: systeminfo /s ComputerName /fo csv >> C:\WinInfo.csv Windows Management Instrumentation Command-Line utilityIf you are looking to view a crazy amount of system information, look no further, the Windows Management Instrumentation Command-Line or WMIC is a utility in Windows that is able to provide an extensive amount of information about system configuration, installed hardware, and Windows accounts. Run this utility by typing in the Command Prompt wmic or by typing a full command to output desire information, like: wmic partition list brief /format:htable > C:\partitions.html In the above example, the command will generate a well formatted and easy to read HTML file with information about all the partitions on your system. To view all WMIC syntax, in the Command Prompt type the following and press Enter: System InformationSystem Information another utility in Windows that most geeks like to dig in to get information about a particular system. You can access this utility by doing a search for System Information in the Start menu or by using Run command, entering msinfo32.exe and pressing Enter. This utility provides well detailed information about software and hardware on a system in an easy to use and friendly graphical user interface. In this How-To Windows article I introduced you to 4 built-in Windows utilities in which you can obtain a lot of information about your system. For most users, just going to the System settings will be more than enough to answer basic questions about a particular system. The other remaining utilities are great for troubleshooting and just to get a deeper understanding of your overall system. We may earn commission for purchases using our links to help keep offering the free content. Privacy policy info. All content on this site is provided with no warranties, express or implied. Use any information at your own risk. Always backup of your device and files before making any changes. Privacy policy info. |