내컴퓨터 IP확인(ipconfig)
·
Network
ipconfig /all > ./%computername%.txt cmd로 옮기면 됨
리눅스 이더넷 맥 주소 확인
·
Linux
1. ifconfig [root@server ~]# ifconfig -a | grep ^eth 2. IP확인 [root@server ~]# ip link show eth0 3. Mac Address만 확인 [root@server ~]# ifconfig -a | grep ^eth | awk '{print $5}' 출처 - 리눅스 이더넷 맥 주소 확인
웹페이지에서 CPU 정보, MAC Address 구하는 컨트롤
·
Programing
version=1,0,0,4 웹페이지에서 클라이언트 컴퓨터의 몇 가지 정보를 구하는 ActiveX 컨트롤입니다. 기능:맥어드레스, 컴퓨터 이름, 워크그룹, 아이피 주소, 드라이브 리스트, CPUVendor, CPUID, HDDID, 윈도우 버전, WSH(Windows Scripting Host) 버전, 파일 버전 등… Method —————————————————————- function GetDriveLetter(): string; function GetDiskVolume(const cDisk: string): string; function FileExists(const FileName: string): WordBool; function DirectoryExists(const path: string): ..