我創建了一個.NET Windows服務,如果沒有開發機上的任何問題進行安裝。在只有.NET框架(並且沒有安裝VS)的服務器上,因爲我沒有VS 2008提示符,所以我做了以下操作。配置系統初始化失敗 - Windows服務.NET
- 我打開命令提示符
- 我做
cd C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727
- 我試圖使用
installutil.exe
「的路徑服務.EXE」 安裝服務
我得到以下異常:
Microsoft (R) .NET Framework Installation utility Version 2.0.50727.1433
Copyright (c) Microsoft Corporation. All rights reserved.
Exception occurred while initializing the installation:
System.Configuration.ConfigurationErrorsException:
Configuration system failed to initialize
該服務沒有安裝在我的本地主機上的任何問題/卸載。任何幫助?
的service.exe.config看起來是這樣的:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<!-- Should process conversions -->
<add key="Service.EnableConversions" value="true"/>
<!-- Poll Interval-->
<add key="Service.Interval" value="10000" /> <!-- Set to 10 seconds -->
</appSettings>
</configuration>
是的,service.exe.config是相同的文件夾service.exe – Nick 2010-01-02 14:49:38