码迷,mamicode.com
首页 > 编程语言 > 详细

c++判断当前登录账户是否在域环境内

时间:2019-05-19 14:04:34      阅读:339      评论:0      收藏:0      [点我收藏+]

标签:ref   flow   stack   over   net   \n   c++   sdn   comment   

#include <Windows.h>

#include <DSRole.h>

#pragma comment(lib, "netapi32.lib")

#include <stdio.h>


int main(int argc, char ** argv)
{
    DSROLE_PRIMARY_DOMAIN_INFO_BASIC * info;
    DWORD dw;


    dw = DsRoleGetPrimaryDomainInformation(NULL,
                                           DsRolePrimaryDomainInfoBasic,
                                           (PBYTE *)&info);
    if (dw != ERROR_SUCCESS)
    {
        wprintf(L"DsRoleGetPrimaryDomainInformation: %u\n", dw);
        return dw;
    }

    if (info->DomainNameDns == NULL)
    {
        wprintf(L"DomainNameDns is NULL\n");
    }
    else
    {
        wprintf(L"DomainNameDns: %s\n", info->DomainNameDns);
    }

    return 0;
}
 【转】:https://blog.csdn.net/licheng2345738/article/details/79847772

 

https://stackoverflow.com/questions/9792411/how-to-get-windows-domain-name

c++判断当前登录账户是否在域环境内

标签:ref   flow   stack   over   net   \n   c++   sdn   comment   

原文地址:https://www.cnblogs.com/hshy/p/10888882.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!