How do you programmatically determine whether a Windows computer is a member of a domain?(如何以编程方式确定 Windows 计算机是否是域的成员?)
问题描述
我需要一种方法来确定运行我的程序的计算机是否加入了任何域.它属于哪个特定域并不重要,重要的是它是否连接到任何东西.我正在 vc++ 中针对 Win32 API 进行编码.
I need a way to determine whether the computer running my program is joined to any domain. It doesn't matter what specific domain it is part of, just whether it is connected to anything. I'm coding in vc++ against the Win32 API.
推荐答案
直接来自微软:
如何确定 Windows NT/Windows 2000 计算机是否为域成员
此方法使用 Windows API.来自文章摘要:
This approach uses the Windows API. From the article summary:
本文介绍了如何确定一台计算机是运行 Windows NT 4.0 或 Windows 2000是域的成员,是成员属于工作组,或者是独立的使用本地安全的计算机权限 API.
This article describes how to determine if a computer that is running Windows NT 4.0 or Windows 2000 is a member of a domain, is a member of a workgroup, or is a stand-alone computer using the Local Security Authority APIs.
本文还提供了一个小程序的示例代码,该程序输出运行该程序的计算机是域的一部分、工作组的一部分还是独立计算机.
The article also provides sample code for a small program that outputs whether the computer the program is running on is part of a domain, part of a workgroup, or a standalone computer.
这篇关于如何以编程方式确定 Windows 计算机是否是域的成员?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何以编程方式确定 Windows 计算机是否是域的成员?
基础教程推荐
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01