如何在 Windows 7 中获取域名

发布于 2024-11-16 07:10:01 字数 642 浏览 3 评论 0原文

我编写了一个运行 Excel 插件的 dll(几年前)。

我使用此代码检索域名,在 Windows XP 中工作正常,但在 Windows 7 中失败。
当我以管理员身份运行时它才有效。
但是我不想以管理员身份运行,因为此代码是 Excel 加载项 dll 的一部分,如果以管理员身份运行,Excel 无法找到用户的文件。

MyReg:= TRegistry.Create;

MyReg.RootKey:= HKEY_LOCAL_MACHINE;
MyReg.OpenKey(RegKeyWin7,false);
NetworkID2:= lowercase(trim(MyReg.ReadString(RegValWin7)));
MyReg.CloseKey;

FreeAndNil(MyReg);

FNetworkOK:= (NetworkID2 = OKRes4);
//Temp check to pinpoint the problem.
if FNetWorkOK = false then ShowMessage('Error wrong domain: '+NetworkID2)
else ShowMessage('all ok');

如何在正常权限下使用 Delphi 在 Windows 7 中检索域名?

I've written a dll that runs an Excel add-in (some years ago).

I use this code to retrieve the domain name and that works fine in Windows XP, but it fails in Windows 7.
Only if I run as administrator does it work.
However I don't want to run as administrator because this code is part of an Excel add-in dll and Excel cannot find the user's files if running as admin.

MyReg:= TRegistry.Create;

MyReg.RootKey:= HKEY_LOCAL_MACHINE;
MyReg.OpenKey(RegKeyWin7,false);
NetworkID2:= lowercase(trim(MyReg.ReadString(RegValWin7)));
MyReg.CloseKey;

FreeAndNil(MyReg);

FNetworkOK:= (NetworkID2 = OKRes4);
//Temp check to pinpoint the problem.
if FNetWorkOK = false then ShowMessage('Error wrong domain: '+NetworkID2)
else ShowMessage('all ok');

How do I retrieve the domain name in Windows 7 using Delphi under normal privileges?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

或十年 2024-11-23 07:10:01

在 Win32 API 中使用 NetWkstaGetInfo,通过 level 值 = 100 请求信息。

返回有关
工作站环境,包括
特定于平台的信息,
域名和本地名称
计算机和有关信息
操作系统。缓冲区指针
参数指向 WKSTA_INFO_100
结构。

Use NetWkstaGetInfo in the Win32 API, requesting info via level value = 100.

Return information about the
workstation environment, including
platform-specific information, the
name of the domain and the local
computer, and information concerning
the operating system. The bufptr
parameter points to a WKSTA_INFO_100
structure.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文