建议LZ先把基础学好- @echo off
- set "a=HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkCards\11"
- set "b= ServiceName REG_SZ {4A966A11-AE30-4187-B6D1-7C029202087D}"
- set "c= Description REG_SZ Realtek RTL8139/810x Family Fast Ethernet NIC"
- echo,%a%|find "Realtek RTL8139/810x Family Fast Ethernet NIC">nul&&echo YES||echo NO
- echo,%b%|find "Realtek RTL8139/810x Family Fast Ethernet NIC">nul&&echo YES||echo NO
- echo,%c%|find "Realtek RTL8139/810x Family Fast Ethernet NIC">nul&&echo YES||echo NO
- pause
复制代码
|