调试Windows Service (三)

 用installutil写个批处理命令用来调试 安装服务


把下面两行写到一个.bat文件中,xxx.exe就是你要安装的东东的绝对路径
@%SystemRoot%/Microsoft.NET/Framework/v2.0.50727/installutil /U xxx.exe
@%SystemRoot%/Microsoft.NET/Framework/v2.0.50727/installutil xxx.exe
@pause


第一行是先卸载原服务的,第二行是重新安装。
用vs2008写好服务后,双击这个.bat就好,调试很方便 :)

你可能感兴趣的:(windows,service)