摘要:Task: 在Windows的Service里面定时的调用执行一个批处理文件。 private ApplicationOutput RunCommandOnPC(string executablePath, string args, string workingFolder, bool ...
阅读全文
04 2014 档案
摘要:Task: 删除HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\USB\VID_0XXX&PID_0XXX Key Tree首先第一想到的使用PS Script来删除:Remove-Item -Path 'Registry::HKEY_LOCAL_M...
阅读全文
摘要:创建文件夹:if (!Directory.Exists(@"C:\Program Files\TDTK\CoalTraffic\Image\WeightImage"))//判断文件夹是否已经存在 { Directory.CreateDirectory(@"C:\Program Files\TDTK\...
阅读全文
摘要:网上查了一下,原因在于要parse的Xml文件本身包含了一些namespace,这些需要被添加进去。 http://msdn.microsoft.com/zh-cn/library/system.xml.xmldocument.selectsinglenode.aspx
阅读全文
摘要:http://powershell.com/cs/blogs/ebookv2/archive/2012/03/23/chapter-16-managing-windows-registry.aspx
阅读全文
摘要:点击button,选择一个excel文件,并将文件名显示在textbox上。 private void btnSelectErrorTableFile_Click(object sender, RoutedEventArgs e) { var ope...
阅读全文
摘要:InRelease modethe number in front of the exception is NOT the line of code. Instead it's an offset to the native compiled code, which doesn't have any meaning to humans. More about this here:http://odetocode.com/Blogs/scott/archive/2005/01/24/963.aspxIndebug modethe PDB file will automatical
阅读全文
摘要:首先需要理解 Delegate, Action, Func, Predicate 從根本原理上講都是函數指針,只不過傳入參數和返回值有所限定。 所有的Action, Func, Predicate 都可以轉化成 delegate 來實現。 (1). delegate delegate我们常用到的一种
阅读全文