- 博客(10)
- 收藏
- 关注
原创 PC可直接运行的VBS脚本之替换脚本本身内容
ReplaceTest = regEx.Replace(str1, str2) ' 作替换。checkipformat = re.test(s) '返回Boolean值,匹配为True,不匹配为False。regEx.IgnoreCase = True ' 设置是否区分大小写。脚本功能:将input函数的默认IP,替换为最后一次手动输入的IP,并保存到该运行脚本文件中。'将str1种匹配patrn的内容替换为str2。'比较源文件和替换后的文件。
2023-12-01 16:44:06 468 1
原创 PC可直接运行的VBS脚本之telnet到目标地址并输入用户名密码
deviceip = inputbox("输入目标IP",,"192.168.1.1")
2023-12-01 16:32:06 657 1
原创 PC可直接运行的VBS脚本之ping测目标地址并计入日志否则弹窗
vbs = Ws.Popup(ipaddr & "无法ping通!", 3,"Notice" _ipaddr = inputbox ("输入需要ping的ip",,"192.168.28.101")
2023-11-30 10:10:03 577
原创 PC可直接运行的VBS脚本之周期性最小化所有窗口并弹窗
vbs = Ws.Popup( "起身喝水,活动一下吧!" , 1,"Notice " ,vbOKCancel+vbQuestion+vbMsgBoxSetForeground)周期性最小化所有窗口并弹窗提示,防止久坐。
2023-11-30 09:46:14 686
原创 SecureCRT VBS脚本之获取本机所有IP地址
'colAdapters.count=3时,msgbox ubound(colAdapters.ItemIndex(3).IPAddress),需为ItemIndex(2),否则报错。a = colAdapters.Count'colAdapters.Count数量。函数功能:获取本机所有IP地址,并用空格连接后返回,后期可通过split函数分割。for a = 0 to a -1 'ItemIndex 索引从0计数。
2023-11-30 09:40:27 481
原创 QWizard,QWizardPage部分函数
wizard = QWizard()# 设置窗口标题wizard.setWindowTitle("向导窗口标题:中文向导")#page1 = QWizardPage()# 设置QWizardPage标题page1.setTitle("page1 title")# 设置QWizardPage按钮文本page1.setButtonText(QWizard.CancelButton, 'page1cancel')# 添加页面wizard.addPage(page1)# 设置QWizardP.
2021-10-18 16:58:26 461
原创 tkinter ListBox 添加滚动条以及元素操作实例
网上一堆机器翻译的文章,弄了很久才使用grid和pack混合布局的方式搞定这样一个界面。上代码。import tkinter as tkfrom tkinter import filedialogLISTBOX_WIDTH = 80LISTBOX_HEIGHT = 5def select_file_names(): selection = filedialog.askopenfilenames( filetypes=[('all files', '*.*'), (.
2021-08-11 17:43:41 831
原创 paramiko recv SSH返回值探索分享
花了一天时间来倒腾paramiko,最后自己写了一个类,分享一下。class TerminalSsh(object): def __init__(self, host=None, port=None, username=None, password=None): self.host = host self.port = port self.username = username self.password = password ...
2021-07-02 15:41:52 1254
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人