0

C# を使用して 1 つの Windows サービスを作成しました。すべて正常に動作しています。私は自分のマシンでそれをテストしました。1分ごとに起動するタイマーを使用しました。私のマシンではすべて正常に動作していますが、別の2台のマシンにインストールしてテストすると、動作しません。1分後にイベントが発生しない。

何が問題になる可能性がありますか?

4

1 に答える 1

0

Try running it on the machine that's failing with a higher privilege: Log on as Local System Account. That should allow you to test whether this is a permissions issue. If you're setting up logging at the start of your service's launch, you may be failing out because of lack of access to the event logs you expect to write to.

Related to https://stackoverflow.com/a/510225

于 2012-10-11T11:25:49.000 に答える