通用自动更新程序
主要功能:
1. 可用于 C/S 程序的更新,集成到宿主主程序非常简单和配置非常简单,或不集成到主程序独立运行。
2. 支持 HTTP、FTP、WebService等多种更新下载方式,下载前判断本地文件是否存在,存在则计算文件 Hash,避免重复下次。
3. 支持多级目录更新,支持空文件、文件夹的更新
4. 支持更新程序的自更新
5. 支持二种更新方式:自动更新、手动点击按钮更新
6. 有多种容错处理机制
7. 支持更新前后的脚本
如何使用:
1. 将 二个文件拷贝到 APP 根目录,并在 APP 的 Main 方法代码前加上如下代码:
更新大致流程:
1. 检测更新
获取服务器上的更新信息,与本地的版本信息对比
2. 下载更新
将更新的文件、文件夹下载到更新临时目录
3. 安装更新
将更新临时目录的文件、文件夹移动到主程序目录中
注意:如果发现 WagUpd.exe 自身,则其拷贝到主程序目录下且命名为 ~WagUpd.exe,自动关闭现有程序,重新启动 ~WagUpd.exe
4. 完成更新
更新前、更新后的脚本
脚本可通过文件方式推送到客户端 ScriptUpdDoBefore ScriptUpdDoEnd 文件夹中,执行成功后,转移到 Done 文件夹中。
如注册 ocx 组件的事例如下:
<?xml version="1.0" encoding="utf-16"?>
<SuperScript>
<ScriptInfo>
<Language>C#</Language>
<UpdateTime>-- :: </UpdateTime>
<ScriptName />
<Remark />
</ScriptInfo>
<RefAssembly>
<Name>mscorlib.dll</Name>
<Path>%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319</Path>
<Type>System</Type>
</RefAssembly>
<RefAssembly>
<Name>System.dll</Name>
<Path>%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319</Path>
<Type>System</Type>
</RefAssembly>
<RefAssembly>
<Name>System.Data.dll</Name>
<Path>%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319</Path>
<Type>System</Type>
</RefAssembly>
<RefAssembly>
<Name>System.Xml.dll</Name>
<Path>%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319</Path>
<Type>System</Type>
</RefAssembly>
<RefAssembly>
<Name>System.Windows.Forms.dll</Name>
<Path>%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319</Path>
<Type>System</Type>
</RefAssembly>
<RefAssembly>
<Name>System.Drawing.dll</Name>
<Path>%SYSTEMROOT%\Microsoft.NET\Framework\v4.0.30319</Path>
<Type>System</Type>
</RefAssembly>
<RefAssembly>
<Name>WagUpd.Core.dll</Name>
<Path>E:\_Wagwei_Coding\WagUpd\WagUpd--\WagUpd.Core\bin\Debug</Path>
<Type>Custom</Type>
</RefAssembly>
</SuperScript> /* 脚本代码 */ #region Namesapce
using System;
using System.Xml;
using System.IO;
using System.Text;
using System.Data;
using System.Threading;
using System.Diagnostics;
using System.Reflection;
using System.Collections;
using System.Windows.Forms;
using System.Collections.Generic; using WagUpd.Core;
#endregion public class RegCom : WagIUpdDo
{
//ScriptUpdDoBefore ScriptUpdDoEnd
//Done public bool Run(ref string message)
{
#region 是否为管理员
if(false)
{
System.Security.Principal.WindowsIdentity identity = System.Security.Principal.WindowsIdentity.GetCurrent();//获得当前登录的Windows用户标示
System.Security.Principal.WindowsPrincipal principal = new System.Security.Principal.WindowsPrincipal(identity); if (!principal.IsInRole(System.Security.Principal.WindowsBuiltInRole.Administrator))//判断当前登录用户是否为管理员
{
message = "需要管理员权限来执行";
return false;
}
}
#endregion string windir = Environment.GetEnvironmentVariable("windir"); string path = Path.Combine(Application.StartupPath, ""); string file = Path.Combine(path, "VidDisplay.ocx"); Debug.WriteLine("ocx 文件: " + file); if(!File.Exists(file))
{
message = "未找到文件: " + file;
return false;
} ProcessStartInfo si = new ProcessStartInfo();
si.FileName = "Regsvr32.Exe";
si.Arguments = file;//"/s " + file; //si.UseShellExecute = true;
//si.RedirectStandardInput = false;
//si.RedirectStandardOutput = true;
//si.CreateNoWindow = false; Process p = new Process();
p.StartInfo = si;
p.Start(); //p.WaitForExit();
//p.Close(); message = "ok";
return true;
} public static void Main()
{
RegCom rc = new RegCom();
bool b = false;
string message = "";
b = rc.Run(ref message);
MessageBox.Show(message);
} //CMD C:\Windows\System32\regsvr32.exe C:\%\VidDisplay.ocx // regsvr32是一个用来注册动态链接库(DLL)或ActiveX控件(OCX)文件的命令,其用法如下:
// regsvr32[/u] [/s] [/n] [/i[:cmdline]] dllname
// / u - 解除服务器注册
// /s - 无声;不显示消息框
// /i - DllInstall,给其传递一个可选 [cmdline] / u一起使用时,卸载dll
// / n - DllRegisterServer / i一起使用 // 如果要注册“MSCOMCTL.OCX”这个控件,在 MS-DOS提示符下输入“regsvr32 MSCOMCTL.OCX”,
// 回车后便后提示“ MSCOMCTL.OCX中的 DllRegisterServer成功。”。如果不让它显示提示,加上参数/s即可。 #region 非管理员运行
/*
[Window Title]
RegSvr32 [Content]
模块“D:\Users\Wagwei\Desktop\4444\8888\VidDisplay.ocx”已加载,但对 DllRegisterServer 的调用失败,错误代码为 0x80040201。 有关此问题的详细信息,请将该错误代码用作搜索字词进行在线搜索。 */
#endregion #region 管理员运行
/*
[Window Title]
RegSvr32 [Content]
DllRegisterServer 在 D:\Users\Wagwei\Desktop\4444\8888\VidDisplay.ocx 已成功。 */
#endregion }
界面截图如下:
进程关联了模块:
进程使用了文件:
自更新:
服务端工具
1. 执行更新
2. 查看备份