上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 90 下一页
  2014年9月26日
摘要: 自动打开www.baidu.com,并搜索关键字“abcd” 1 #定义函数:等待页面打开 2 function WaitForLoad($ie) 3 { 4 sleep 2 5 do {Sleep -Mi 200} 6 while ($ie.busy) 7 } 8 9 $url="www.... 阅读全文
posted @ 2014-09-26 14:45 momingliu11 阅读(1811) 评论(0) 推荐(0) 编辑
  2014年9月25日
摘要: 1 $p = "D:\PSScript"2 3 gci $p -Exclude "UpdateLog" #排除子目录"UpdateLog",但是后面不能接着使用 -Recurse参数,否则-Exclude参数失效4 gci $p -Exclude "说明.txt" -Recurse #排除文件"说明... 阅读全文
posted @ 2014-09-25 16:35 momingliu11 阅读(2017) 评论(0) 推荐(0) 编辑
摘要: #下载PowerShell说明文档1 $link = 'http://download.microsoft.com/download/3/2/6/326DF7A1-EE5B-491B-9130-F9AA9C23C29A/PowerShell%202%200%20Language%20Specific... 阅读全文
posted @ 2014-09-25 11:49 momingliu11 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 方法一:1 #禁用滚动条2 $ProgressPreference='silentlycontinue'3 Invoke-WebRequest "www.163.com" -UseBasicParsing参考:http://www.pstips.net/usebasicparsing-in-invo... 阅读全文
posted @ 2014-09-25 10:08 momingliu11 阅读(580) 评论(0) 推荐(0) 编辑
  2014年9月24日
摘要: mmc.exe services.msc /a /computer=172.16.224.15 阅读全文
posted @ 2014-09-24 16:15 momingliu11 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1.已新建好Windows服务监视器:2.新建恢复: 注:恢复目标需要为监视器目标的子集3.使用命令行方式:运行PS脚本(脚本位于目标计算机本地):运行VBS脚本:4.设置完成 阅读全文
posted @ 2014-09-24 14:14 momingliu11 阅读(716) 评论(0) 推荐(0) 编辑
摘要: 将明文转换为密文1 #将明文转换为密文2 $storage = "d:\pass.txt"3 $mysecret = 'mypassword.'4 5 $mysecret | 6 ConvertTo-SecureString -AsPlainText -Force |7 ConvertFro... 阅读全文
posted @ 2014-09-24 09:44 momingliu11 阅读(3373) 评论(0) 推荐(0) 编辑
  2014年9月23日
摘要: 如果spooler服务未运行则启动sc query spooler |find "STATE" |find "RUNNING" || net start spooler 阅读全文
posted @ 2014-09-23 13:40 momingliu11 阅读(539) 评论(0) 推荐(0) 编辑
  2014年9月22日
摘要: 1 #查看站点test01下所有的MIME类型: 2 Get-WebConfiguration -PSPath MACHINE/WEBROOT/APPHOST/test01 -Filter system.webServer/staticContent |select -ExpandProperty... 阅读全文
posted @ 2014-09-22 17:50 momingliu11 阅读(2761) 评论(0) 推荐(0) 编辑
摘要: #获取所有IIS功能列表:get-webconfiguration -filter /system.webserver#查看目录浏览功能的配置信息:Get-WebConfiguration -filter /system.webServer/directoryBrowse -PSPath 'IIS:... 阅读全文
posted @ 2014-09-22 17:30 momingliu11 阅读(1305) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 90 下一页