当前位置: 移动技术网 > IT编程>脚本编程>VBScript > 用vbs实现将剪切板的unix格式的内容处理成pc格式的代码

用vbs实现将剪切板的unix格式的内容处理成pc格式的代码

2017年12月12日  | 移动技术网IT编程  | 我要评论
处理qq里复制的文本'复制qq里的文本到记事本有事可能会有黑框框...(请复制后运行本脚本)

set ws=createobject("wscript.shell")
set fso=createobject("scripting.filesystemobject")
set objie = createobject("internetexplorer.application")
objie.navigate("about:blank")
s = objie.document.parentwindow.clipboarddata.getdata("text")
objie.quit
set file=fso.createtextfile("tmp.txt")
file.write s
file.close
ws.run "cmd /c more tmp.txt>test.txt",0,true
fso.deletefile "tmp.txt"
ws.run "notepad.exe test.txt"

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网