wtsapi32.dll не был найден из службы windows (LOCALSYSTEM) - PullRequest
0 голосов
/ 20 февраля 2020

GetModuleHandle("wtsapi32.dll") всегда равно нулю.

Но в автономном приложении оно имеет значение

Что я делаю не так?

Обратите внимание, что я пробовал также LoadLibrary().

Service1.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Linq;
using System.Runtime.InteropServices;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks;

namespace WindowsService1
{
    public partial class Service1 : ServiceBase
    {
        public Service1()
        {
            InitializeComponent();
        }


        [DllImport("kernel32.dll")]
        private static extern IntPtr GetModuleHandle(string lpModuleName);


        protected override void OnStart(string[] args)
        {
            eventLog1.WriteEntry("TEST.WS STARTED");

            eventLog1.WriteEntry("GetModuleHandle(\"Wtsapi32.dll\") = " + GetModuleHandle("wtsapi32.dll").ToString());

        }

        protected override void OnStop()
        {
        }
    }
}
...