使用 VBScript 清除剪贴板

发布于 2024-08-24 08:00:14 字数 36 浏览 4 评论 0原文

如何在 Win32 上使用 VBScript 清除剪贴板?

How can the clipboard be cleared using VBScript on Win32?

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

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

发布评论

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

评论(1

最美的太阳 2024-08-31 08:00:14

它不能直接完成,但您可以让应用程序完成这项工作。这将清除
剪贴板,使用命令行工具 clip

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "cmd.exe /c echo. >NUL  | clip", 0, True

另一种方式是使用具有 COM 接口并且可以操作的应用程序
剪贴板。例如 Microsoft Word 和 Internet Explorer。

这可以使用 Internet Explorer,但可能会引发用户对话框:

Set slaveApplication = CreateObject("InternetExplorer.Application")
slaveApplication.Navigate("about:blank")
slaveApplication.document.parentwindow.clipboardData.SetData "text", ""
slaveApplication.Quit

It can not be done directly, but you can let an application do the work. This will clear
the clipboard, using the command-line tool clip:

Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "cmd.exe /c echo. >NUL  | clip", 0, True

Another way is to use applications that have a COM interface and that can manipulate
the clipboard. E.g. Microsoft Word and Internet Explorer.

This will work, using Internet Explorer, but it may throw a user dialog:

Set slaveApplication = CreateObject("InternetExplorer.Application")
slaveApplication.Navigate("about:blank")
slaveApplication.document.parentwindow.clipboardData.SetData "text", ""
slaveApplication.Quit
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文