以特定用户createservice并且openservice过程

在项目中遇到一个问题,需要以特定用户身份创建并启动一个Service,但遇到了登录错误。经过研究发现,问题并非密码错误,而是该用户缺乏登录权限。在Stack Overflow上找到了解决方案,分享以帮助遇到相同问题的人。
摘要由CSDN通过智能技术生成

最近做项目碰到这个问题,要以某个特定额用户建立一个service并启动起来,service是建好了,但是启动的时候出现logon错误。看起来像是密码不对,其实是用户没有拿到logon的权限,没有很具体看,在stackoverflow上找到解决方案,希望对别人有所帮助。

#define UNICODE
#include <windows.h>
#include <ntsecapi.h>
#include <stdio.h>

#pragma comment(lib, "advapi32")

#define SVCPATH    L"D:\\VCProj\\MinSvc2\\Debug\\MinSvc2.exe"
#define SVCNAME    L"MyExtra1"
#define SVCACCT    L".\\dummy"
#define SVCPASS    L"dummy"

void InitLsaString( PLSA_UNICODE_STRING LsaString, LPWSTR String )
{
  USHORT StringLength;

  if (String == NULL) 
  {
    LsaString->Buffer = NULL;
    LsaString->Length = 0;
    LsaString->MaximumLength = 0;
    return;
  }
  // Get the length of the string without the null terminator.
  StringLength = wcslen(String);
  // Store the string.
  LsaString->Buffer = String;
  LsaString->Length =
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值