有没有办法使用 WSH、WMI 或类似方法来访问 Windows 中的窗口句柄?
有没有办法使用 WSH、WMI 或类似方法来访问 Windows 中的窗口句柄?我只想将一个窗口标记为始终在最上面。理想情况下,我会使用 Windows 脚本主机来实现此目的。
请注意,我不想在相关系统上安装 PowerShell。我们对任何附加软件感到紧张,并且已经涉及一些 VBS 文件。
问候,
Is there a way to get access to a window handle in windows using WSH, or WMI or similar? I just want to flag a window as always-on-top. Ideally I'd use windows script host for this.
Please note, I don't want to install PowerShell on the system in question. We are nervous about any additional software and already have some VBS files involved.
Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看 ...
wmic 类 win32_process > C:\4.html
Wmic 进程(名称='eclipse.exe')获取命令行,ProcessId
可能会创建 mof 文件并编译,如果需要新的 wmi-winApi 函数...
http://msdn.microsoft.com/en-us/library/ windows/desktop/aa393907(v=vs.85).aspx
see ...
wmic CLASS win32_process > C:\4.html
Wmic process where (Name='eclipse.exe') get CommandLine, ProcessId
May be create mof-file and compile, if need new wmi-winApi function ...
http://msdn.microsoft.com/en-us/library/windows/desktop/aa393907(v=vs.85).aspx