上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 52 下一页
摘要: 地址1 https://blog.csdn.net/zhuoyue008/article/details/53323278 地址2 https://www.cnblogs.com/sydeveloper/archive/2013/02/25/2932571.html vbs Set wshobj=W 阅读全文
posted @ 2018-05-04 11:59 enych 阅读(270) 评论(0) 推荐(0) 编辑
摘要: //创建ManagementObjectSearcher对象 ManagementObjectSearcher searcher = new ManagementObjectSearcher("SELECT * FROM Win32_PhysicalMedia"); String strHardDiskID = null;/... 阅读全文
posted @ 2018-05-02 14:16 enych 阅读(8750) 评论(1) 推荐(0) 编辑
摘要: private void Form1_Load(object sender, EventArgs e) { Process[] processes = Process.GetProcesses();//获取所有进程信息 for (int i = 0; i < processes.Length; i++) {... 阅读全文
posted @ 2018-05-02 10:21 enych 阅读(343) 评论(0) 推荐(0) 编辑
摘要: https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Closures 阅读全文
posted @ 2018-04-28 11:23 enych 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1.msconfig - 系统配置 - 服务-全部禁用 2.DXDIAG direct版本 阅读全文
posted @ 2018-04-26 10:54 enych 阅读(141) 评论(0) 推荐(0) 编辑
摘要: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ServerManager\ServicingStorage\ServerComponentCache\Hyper-V] C:\Windows\Sy 阅读全文
posted @ 2018-04-26 10:40 enych 阅读(909) 评论(0) 推荐(0) 编辑
摘要: public int GetWindowsServiceStartType(String sServiceName) //判断服务状态是手动还是禁用还是自动 { string sState = ""; try { System.Diagnostics.Proc... 阅读全文
posted @ 2018-04-25 17:21 enych 阅读(248) 评论(0) 推荐(0) 编辑
摘要: private void button1_Click(object sender, EventArgs e) { string info = ""; string info1 = ""; RegistryKey Key; Key = Registry.LocalMachine; /... 阅读全文
posted @ 2018-04-25 16:53 enych 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 1.在 Global.asax 2.在App_Start/RouteConfig.cs 阅读全文
posted @ 2018-04-20 11:05 enych 阅读(217) 评论(0) 推荐(0) 编辑
摘要: namespace ConsoleApplication1 { public class Program { private ITestA A; public Program(ITestA B) { A = B; } static void Main(string[] args) { //TestA 阅读全文
posted @ 2018-04-19 16:40 enych 阅读(1122) 评论(0) 推荐(1) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 52 下一页