Program.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. using Microsoft.Win32;
  2. using System;
  3. using System.IO;
  4. using System.Security.Principal;
  5. using System.Text;
  6. using System.Windows.Forms;
  7. using System.Xml;
  8. namespace FileWatcher
  9. {
  10. static class Program
  11. {
  12. /// <summary>
  13. /// 应用程序的主入口点。
  14. /// </summary>
  15. [STAThread]
  16. static void Main()
  17. {
  18. try
  19. {
  20. WindowsIdentity identity = WindowsIdentity.GetCurrent();
  21. WindowsPrincipal principal = new WindowsPrincipal(identity);
  22. string sysdisc = Environment.GetEnvironmentVariable("windir").Substring(0, 1);
  23. Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
  24. //处理UI线程异常
  25. Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException);
  26. //处理非UI线程异常
  27. AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
  28. if (!Directory.Exists(AutoAnalysisXml.CachePathFolder))
  29. Directory.CreateDirectory(AutoAnalysisXml.CachePathFolder);
  30. FileStream fcaches = new FileStream(AutoAnalysisXml.CachePath, FileMode.OpenOrCreate, FileAccess.ReadWrite);
  31. fcaches.Close();
  32. FileInfo info = new FileInfo(AutoAnalysisXml.CachePath);
  33. if (info.Length == 0)
  34. {
  35. XmlDocument doc = new XmlDocument();
  36. //创建类型声明节点
  37. XmlNode node = doc.CreateXmlDeclaration("1.0", "utf-8", "");
  38. doc.AppendChild(node);
  39. //创建根节点
  40. XmlElement xeRoot = doc.CreateElement("cacheInfo");
  41. doc.AppendChild(xeRoot);
  42. doc.Save(AutoAnalysisXml.CachePath);
  43. }
  44. Application.EnableVisualStyles();
  45. Application.SetCompatibleTextRenderingDefault(false);
  46. if (principal.IsInRole(WindowsBuiltInRole.Administrator))
  47. {
  48. //Application.Run(new UploadMakePlan());
  49. Application.Run(new SOP("", ""));
  50. }
  51. else
  52. {
  53. //创建启动对象
  54. System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
  55. // 设置运行文件
  56. startInfo.FileName = Application.ExecutablePath;
  57. //设置启动动作,确保以管理员身份运行
  58. startInfo.Verb = "runas";
  59. //如果不是管理员,则启动UAC
  60. System.Diagnostics.Process.Start(startInfo);
  61. }
  62. }
  63. catch (Exception)
  64. {
  65. }
  66. }
  67. public static void SetAutoRun(string fileName, bool isAutoRun)
  68. {
  69. RegistryKey reg = null;
  70. try
  71. {
  72. if (!System.IO.File.Exists(fileName))
  73. throw new Exception("该文件不存在!");
  74. string name = fileName.Substring(fileName.LastIndexOf(@"\") + 1);
  75. reg = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true);
  76. if (reg == null)
  77. reg = Registry.LocalMachine.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run");
  78. if (isAutoRun)
  79. reg.SetValue(name, fileName);
  80. else
  81. reg.SetValue(name, false);
  82. }
  83. catch (Exception ex)
  84. {
  85. throw new Exception(ex.ToString());
  86. }
  87. finally
  88. {
  89. if (reg != null)
  90. reg.Close();
  91. }
  92. }
  93. //处理线程的异常
  94. static void Application_ThreadException(object sender, System.Threading.ThreadExceptionEventArgs e)
  95. {
  96. string str = GetExceptionMsg(e.Exception, e.ToString());
  97. MessageBox.Show(str, "提示", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  98. }
  99. //未处理的异常统一通过这里返回
  100. static void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
  101. {
  102. string str = GetExceptionMsg(e.ExceptionObject as Exception, e.ToString());
  103. MessageBox.Show(str, "提示", MessageBoxButtons.OK, MessageBoxIcon.Stop);
  104. }
  105. /// <summary>
  106. /// 生成自定义异常消息
  107. /// </summary>
  108. /// <param name="ex">异常对象</param>
  109. /// <param name="backStr">备用异常消息:当ex为null时有效</param>
  110. /// <returns>异常字符串文本</returns>
  111. static string GetExceptionMsg(Exception ex, string backStr)
  112. {
  113. StringBuilder sb = new StringBuilder();
  114. if (ex != null)
  115. {
  116. sb.AppendLine(ex.Message);
  117. sb.AppendLine("【异常方法】:" + ex.StackTrace);
  118. }
  119. else { sb.AppendLine("【未处理异常】:" + backStr); }
  120. return sb.ToString();
  121. }
  122. }
  123. }