有没有一种简单的方法可以使用 VBScript 验证网络上是否存在服务器?
我的最终目标是确定具有特定凭据的特定服务器上的特定数据库正在运行,但此时我会满足于检查并查看服务器是否确实在网络上运行的能力。有人有办法做到这一点吗?我似乎在画一片空白。
迈克尔
I have the eventual goal of determining that a particular database on a particular server with particular credentials is running, but I would settle, at this point, for the ability to check and see if a server is actually up on the network. Does anyone have a way of doing this? I seem to be drawing a blank.
Michael
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试这个
也许有更好的方法,特别是考虑到您的最终目标,但这应该有效,并且至少为您指明了正确的方向。
try this
There maybe better ways especialy given you end goal but this should work and at least point you in the correct direction.
这是使用
Win32_PingStatus
WMI 类(注意:此类仅在 Windows XP 及更高版本上可用):更多 ping 脚本示例位于:为什么我的 Ping 脚本不能在 Windows 2000 计算机上运行?
Here's an alternative solution that uses the
Win32_PingStatus
WMI class (note: this class is only available on Windows XP and later):More ping script samples here: Why Doesn't My Ping Script Run on Windows 2000 Computers?
如果您更新 ping 命令,使其仅发送一个回显请求,则脚本执行速度会更快,如果您的网络不可靠,这可能不是最好的,但对于本地 LAN 来说它很有用。
If you update the ping command so it only sends one echo request the script executes faster, if you've got an unreliable network this might not be best but for local LAN it's useful.
要检查数据库服务器是否已启动,您可以使用 nmap 等工具。然后你可以像平常一样使用 exec() 在你的 vbscript 中调用它。
For checking whether your database server is up, you can use tools like nmap. Then you can call it in your vbscript using exec() as per normal.