"윈도우 종류 확인"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(다른 사용자 한 명의 중간 판 5개는 보이지 않습니다)
3번째 줄: 3번째 줄:


==방법 1: systeminfo==
==방법 1: systeminfo==
<source lang='console'>
{{참고|윈도우 systeminfo}}
<syntaxhighlight lang='doscon'>
C:\Users\zetawiki>systeminfo | findstr OS.이름
C:\Users\zetawiki>systeminfo | findstr OS.이름
OS 이름:                Microsoft Windows Server 2008 R2 Enterprise
OS 이름:                Microsoft Windows Server 2008 R2 Enterprise
</source>
</syntaxhighlight>
<source lang='console'>
<syntaxhighlight lang='doscon'>
C:\Users\zetawiki>systeminfo | findstr OS.이름
C:\Users\zetawiki>systeminfo | findstr OS.이름
OS 이름:                Microsoft Windows 7 Enterprise K
OS 이름:                Microsoft Windows 7 Enterprise K
</source>
</syntaxhighlight>


==방법 2: Get-WmiObject==
==방법 2: Get-WmiObject==
<source lang='doscon'>
{{참고|파워쉘 Get-WmiObject}}
{{소스헤더|CMD}}
<syntaxhighlight lang='doscon'>
C:\Users\jmnote>powershell "Get-WmiObject -Class Win32_OperatingSystem | % Caption"
C:\Users\jmnote>powershell "Get-WmiObject -Class Win32_OperatingSystem | % Caption"
Microsoft Windows 10 Home
Microsoft Windows 10 Home
</source>
</syntaxhighlight>
<source lang='doscon'>
{{소스헤더|PowerShell}}
<syntaxhighlight lang='doscon'>
PS C:\Users\jmnote> Get-WmiObject -Class Win32_OperatingSystem | % Caption
PS C:\Users\jmnote> Get-WmiObject -Class Win32_OperatingSystem | % Caption
Microsoft Windows 10 Home
Microsoft Windows 10 Home
</source>
</syntaxhighlight>


==방법 3: msinfo32==
==방법 3: msinfo32==

2021년 9월 24일 (금) 23:19 기준 최신판

윈도우 종류 확인
윈도우 버전 확인

1 방법 1: systeminfo[ | ]

C:\Users\zetawiki>systeminfo | findstr OS.이름
OS 이름:                 Microsoft Windows Server 2008 R2 Enterprise
C:\Users\zetawiki>systeminfo | findstr OS.이름
OS 이름:                 Microsoft Windows 7 Enterprise K

2 방법 2: Get-WmiObject[ | ]

CMD
C:\Users\jmnote>powershell "Get-WmiObject -Class Win32_OperatingSystem | % Caption"
Microsoft Windows 10 Home
PowerShell
PS C:\Users\jmnote> Get-WmiObject -Class Win32_OperatingSystem | % Caption
Microsoft Windows 10 Home

3 방법 3: msinfo32[ | ]

  • 윈도우 --- msinfo32 Enter

4 방법 4: 시스템 속성[ | ]

  • 윈도우+R --- control system Enter

5 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}