如何在 Windows 上检索 CNAME?
我想知道是否存在用于检索给定计算机或服务器的规范名称记录
(CNAME) 的现有命令或脚本。我想通过 CMD/Powershell 使用它,我不介意此类命令或脚本是否使用 Windows 注册表编辑器 (regedit)。
I want to know if there is an existing command or script to retrieve the Canonical Name Record
(CNAME) for a given computer or server. I would like to use this via CMD/Powershell I don't mind if such command or script uses the Windows Registry Editor (regedit).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
hostname
程序/命令应该为您提供本地计算机的 DNS 名称,而 shell 命令echo %COMPUTERNAME%
应该为您显示 NetBIOS 名称(可能不同) 。The
hostname
program/command should give you the DNS name of the local machine, whereas the shell commandecho %COMPUTERNAME%
should show you the NetBIOS name (which might be different).