secureCRT scripts as vbs】的更多相关文章

gdb multithread debug. lsusb.py # $language = "VBScript" # $interface = "1.0" Sub Main 'Dim i As Integer For i = 1 To 10000 crt.Screen.Send "AT+CGMI" & Chr(13) crt.Sleep 500 crt.Screen.Send "AT+CGMR" & Chr(1…
查看SecureCRT帮助文档: Help-> Help Topics->Scripting -> Script Objects Reference -> Session Object #$language = "VBScript" #$interface = "1.0" crt.Screen.Synchronous = True ' This automatically generated script may need to be ' e…
上一篇笔者叙述了如何在windows平台上进行自动化打包,这次采用linux平台 1.start.bat : 调用cleanall.bat脚本 ,从svn服务器中检出代码,并采用7-Zip工具进行压缩并调用teasefile.bat脚本和output_linux.bat脚本: 1.1.cleanall.bat: 清除环境 并利用secureCRT执行vbs脚本> aloneclean.vbs 1.2.teasefile.bat: 将压缩包利用secureCRT工具中的sfxcl命令发送到linu…
Managing IIS Log File Storage   You can manage the amount of server disk space that Internet Information Services (IIS) log files consume by using compression, remote storage, scripted deletion, and an IIS Log Cleaner Tool. Overview The log files tha…
原文:http://www.iis.net/learn/manage/provisioning-and-managing-iis/managing-iis-log-file-storage Overview IIS日志会消耗大量的硬盘空间,有潜在写满整个硬盘空间的风险. 为了解决这个问题很多用户会选择关闭日志.幸运的是 这里有些其它的选择: 压缩日志文件夹 把日志文件夹转移到远程系统上去 通过script删除老的日志Delete old log files by script. 通过IIS Lo…
crontab 命令 如果发现您的系统里没有这个命令,请安装下面两个软件包. vixie-cron crontabs crontab 是用来让使用者在固定时间或固定间隔执行程序之用,换句话说,也就是类似使用者的时程表.-u user 是指设定指定 user 的时程表,这个前提是你必须要有其权限(比如说是 root)才能够指定他人的时程表.如果不使用 -u user 的话,就是表示设定自己的时程表. 常用参数: crontab   -l   //查看当前用户下的cron任务 crontab -e…
●强制用Wscript.exe执行 SET Wshell=CreateObject("Wscript.Shell") if lcase(right(Wscript.fullName,11)) = "cscript.exe" then Wshell.run "wscript.exe //nologo " & chr(34) & wscript.scriptfullname & chr(34) Wscript.quitelse…
自动创建每周运行一次的计划任务 创建计划任务可用at,schtasks命令,schtasks提供了很多参数 命令schtasks SCHTASKS /Create [/S system [/U username [/P [password]]]] [/RU username [/RP password]] /SC schedule [/MO modifier] [/D day] [/M months] [/I idletime] /TN taskname /TR taskrun [/ST sta…
schtasks  /create 创建任务,下面是常用参数 /tn taskname /tr taskrun /sc schedule    [Minute | Hourly | Daly | Weekly | Monthly | Once | Onstart | Onlogon | Onidle ] 说明: Minute Hourly Daily Weekly Monthly 计划周期时间单位 Once 指定日期时间执行一次 Onstart   每次系统启动时执行,可以指定从哪个日期开始,或…
大部分属于转载和粘贴. 使用命令:schtasks windows 定时任务   使用样例: 每天定时关闭网易云音乐: 每天22:20关闭网易云音乐: schtasks /create /tn "CloseCloudMusic" /tr "taskkill /f /im cloudmusic.exe" /sc daily /st 22:20:00 /ru "system" 查询具体任务信息: Schtasks /Query /TN task_na…