Windows 服务错误:Installog 访问被拒绝

发布于 2024-10-27 10:57:46 字数 358 浏览 1 评论 0原文

通过命令提示符安装 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

花间憩 2024-11-03 10:57:46

你有管理员权限吗?尝试通过以管理员身份启动命令提示符来运行服务设置。

do you have administrator rights ? Try to run the service setup by launching the command prompt as administartor.

巨坚强 2024-11-03 10:57:46

尝试从不同的目录(例如%TEMP%)运行 - 它只需要访问权限即可将日志文件写入当前目录,并且默认情况下非管理员无法写入{{c:\ Windows}}子目录。

例如:

cd %TEMP%
"C:\Windows\Microsoft.NET\Framework\v2.0.50727\installutil.exe" "C:\Hive-WindowsService\HiveBatchProcess\HiveBatchProcess\bin\Debug\HiveBatchProcess.exe" -i

根据 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:

cd %TEMP%
"C:\Windows\Microsoft.NET\Framework\v2.0.50727\installutil.exe" "C:\Hive-WindowsService\HiveBatchProcess\HiveBatchProcess\bin\Debug\HiveBatchProcess.exe" -i

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.

残花月 2024-11-03 10:57:46

然后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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文