获取BIOS序列号 wmic bios list full | find "SerialNumber" SerialNumber=P50168VB 获取CPUID(WIN32_PROCESSOR) wmic cpu list full | find "ProcessorId" rem 提取CPU名称和描述的批处理语句 @echo offfor /f "delims=" %%a in ('wmic cpu get name^,description
,新建C#控制台应用程序(Excel创建图表) using System; using System.Collections.Generic; using System.Linq; using System.Text; //解决方案中 添加引用 Execl(COM组件) using MSExcel = Microsoft.Office.Interop.Excel; using System.IO; using System.Reflection; namespace ExeclCharts {