js获取计算机名,C#获取当前域的计算机列表

/// /// 获取当前域的计算机列表 /// /// public List GetAllLocalMachines() { //局域网计算机列表 List machineList = new List(); Process p = new Process(); p.StartInfo.FileName = "net"; p.StartInfo.Arguments = "view"; p.... [阅读全文]
1 共1条 分1页