安装windows系统的installutil
Posted C# java C++ 开源通信
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装windows系统的installutil相关的知识,希望对你有一定的参考价值。
/// 该服务必须在它可以执行之前安装。
/// 服务的安装和卸载“installutil.exe”“installutil.exe / U”的服务可执行文件作为最后一个参数。
/// 例如,“installutil.exe D:\webcamservice.exe”将安装服务的服务经理。
-
按如下顺序“开始 - Visual Studio 2015 -VS2015 x86 本机工具命令提示符”,以管理员身份打开一个命令窗口(不要使用传统的cmd方式打开普通DOS窗口)
-
进入创建好的服务应用目录(一般是在bin\Debug下),输入命令: installutil.exe webcamservice.exe如果安装成功,则直接显示命令提示符,没有任何信息;如果安装不成功,则会有信息出现(安装不成功下面讨论);
-
右击“我的电脑 - 管理 - (左栏)服务和应用程序 - 服务”,可以找到服务“webcamservice”,该服务只是安装上,并没有启动,双击该服务打开属性窗口,点击启动即可
1 C:\Windows\system32>installutil.exe C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.exe 2 Microsoft (R) .NET Framework 安装实用工具版本 4.6.1586.0 3 版权所有 (C) Microsoft Corporation。保留所有权利。 4 5 6 正在运行事务处理安装。 7 8 正在开始安装的“安装”阶段。
1 正在开始安装的“安装”阶段。 2 查看日志文件的内容以获得 C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.exe 程序集的进度。 3 该文件位于 C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.InstallLog。 4 正在安装程序集“C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.exe”。 5 受影响的参数是: 6 logtoconsole = 7 logfile = C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.InstallLog 8 assemblypath = C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.exe 9 正在安装服务 WebCamService... 10 已成功安装服务 WebCamService。 11 正在日志 Application 中创建 EventLog 源 WebCamService... 12 13 “安装”阶段已成功完成,正在开始“提交”阶段。 14 查看日志文件的内容以获得 C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.exe 程序集的进度。 15 该文件位于 C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.InstallLog。 16 正在提交程序集“C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.exe”。 17 受影响的参数是: 18 logtoconsole = 19 logfile = C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.InstallLog 20 assemblypath = C:\Users\llskj\Desktop\Samples\Misc\DxWebCam\Service\bin\Release\WebCamService.exe 21 22 “提交”阶段已成功完成。 23 24 已完成事务处理安装。 25 26 C:\Windows\system32>
以上是关于安装windows系统的installutil的主要内容,如果未能解决你的问题,请参考以下文章
使用 SC.exe 或 InstallUtil.exe 安装 Windows 服务 - 有区别,但哪个?
通过开始调试 (F5) 从 Visual Studio 2010 使用 InstallUtil 安装 Windows 服务
通过cmd 使用 InstallUtil.exe 命令 操作 windows服务 Windows Service