How to check connected USB/port number or devices on Windows. USB 등 윈도우즈에 연결되어있는 장치/포트 확인하는 방법 (Windows, USB, device, port, wmic, wmi)
How to check connected USB/port number or devices on Windows. USB 등 윈도우즈에 연결되어있는 장치/포트 확인하는 방법 (Windows, USB, device, port, wmic, wmi) Windows Management Instrumentation Command-line Windows PC 에서 연결되는 usb 를 찾아서 포트번호를 알아내는 일을 자동화해서 프로그램에 넣을 필요가 있었는데, 찾다보니 wmic 를 이용해서 커맨드창에서, 1. Windows 에 연결되어있는 장치들을 확인하는데, -> wmic path CIM_LogicalDevice 2. USB 관련 이름의 장비만 따로 추린다 (where 문 + 이름만 확인) -> wmic path CI..
How to check mainboard serialnumber, information. 컴퓨터 보드 시리얼넘버 정보 확인하는 방법 (Windows)
In cmd, type below. wmic baseboard get manufacturer, product, serialnumber, version cmd 창에서 아래의 명령어를 친다. wmic baseboard get manufacturer, product, serialnumber, version 2019/06/26 - [Programming/Software Architecture] - Software Engineering (You aren't gonna need it, Yagni) 소프트웨어 개발에서 고려되어야 할 부분 (야그니), agile, 에자일 2019/06/12 - [Programming/C++] - How to remove specific value in vector. 벡터 배열에서 특정..