Windows 服务错误:Installog 访问被拒绝
通过命令提示符安装 Windows 服务时出现以下错误
访问路径 'C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil.In stallLog' 被拒绝。
我正在使用以下命令:
C:\Windows\Microsoft.NET\Framework\v2.0.50727>installutil.exe "C:\Hive-WindowsService\HiveBatchProcess\HiveBatchProcess\bin\Debug\HiveBatchProcess.exe" -i
可能出了什么问题?
I get following error while installing my Windows service through Command prompt
Access to the path 'C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil.In
stallLog' is denied.
I am using following command:
C:\Windows\Microsoft.NET\Framework\v2.0.50727>installutil.exe "C:\Hive-WindowsService\HiveBatchProcess\HiveBatchProcess\bin\Debug\HiveBatchProcess.exe" -i
What could be wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你有管理员权限吗?尝试通过以管理员身份启动命令提示符来运行服务设置。
do you have administrator rights ? Try to run the service setup by launching the command prompt as administartor.
尝试从不同的目录(例如%TEMP%)运行 - 它只需要访问权限即可将日志文件写入当前目录,并且默认情况下非管理员无法写入{{c:\ Windows}}子目录。
例如:
根据 HiveBatchProcess.exe 中的安装逻辑的作用,您可能需要也可能不需要额外的权限(例如注册表访问权限、对其他目录的写访问权限等)。但运行
installutil.exe
并不严格要求管理员权限。Try running from a different directory (eg %TEMP%)- it just needs access to write the log file to the current directory, and by default non-administrators can't write to {{c:\Windows}} subdirectories.
eg:
Depending on what the install logic in HiveBatchProcess.exe does, you may or may not need additional permissions (eg registry access, write access to other directories, etc). But running
installutil.exe
does not strictly require administrator permissions.然后cd“%temp%”
"C:\Windows\Microsoft.NET\Framework\v2.0.50727\installutil.exe" "\ourServiceexe.exe"
我将服务密码更改为服务器的管理员密码
cd "%temp%" then
"C:\Windows\Microsoft.NET\Framework\v2.0.50727\installutil.exe" "\ourServiceexe.exe"
i changed the service password to admin password of the server