윈도우 CMD 에서 쓸만한 명령어들

Posted by 대혀니_
2018. 11. 17. 14:17 IT/잡담

윈도우 CLI 환경에서 간단하게 사용할 명령어들 정리

1. PC 호스트이름 변경

1-1

wmic ComputerSystem Where Name="%COMPUTERNAME%" Call Rename Name="호스트명"

1-2

reg add "HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName" /v "ComputerName" /d "호스트명" /f

reg add "HKLM\SYSTEM\CurrentControlSet\services\Tcpip\Parameters" /v "NV Hostname" /d "호스트명" /f


둘중 하나로 가능


2. 실행중인 서비스 목록보기

wmic service list brief > service_brief.txt

notepad service_brief.txt


3. 설치된 프로그램 목록

wmic product > product.txt

notepad product.txt


4. 윈도우 포트 사용 프로세스 확인

netstat -ano | findstr :port

tasklist | findstr port


(연재중...)