上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 94 下一页
  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 阅读(2118) 评论(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 阅读(392) 评论(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 阅读(598) 评论(0) 推荐(0)
  2014年9月24日
摘要: mmc.exe services.msc /a /computer=172.16.224.15 阅读全文
posted @ 2014-09-24 16:15 momingliu11 阅读(250) 评论(0) 推荐(0)
摘要: 1.已新建好Windows服务监视器:2.新建恢复: 注:恢复目标需要为监视器目标的子集3.使用命令行方式:运行PS脚本(脚本位于目标计算机本地):运行VBS脚本:4.设置完成 阅读全文
posted @ 2014-09-24 14:14 momingliu11 阅读(744) 评论(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 阅读(3426) 评论(0) 推荐(0)
  2014年9月23日
摘要: 如果spooler服务未运行则启动sc query spooler |find "STATE" |find "RUNNING" || net start spooler 阅读全文
posted @ 2014-09-23 13:40 momingliu11 阅读(554) 评论(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 阅读(2782) 评论(0) 推荐(0)
摘要: #获取所有IIS功能列表:get-webconfiguration -filter /system.webserver#查看目录浏览功能的配置信息:Get-WebConfiguration -filter /system.webServer/directoryBrowse -PSPath 'IIS:... 阅读全文
posted @ 2014-09-22 17:30 momingliu11 阅读(1352) 评论(0) 推荐(0)
摘要: 设置、查看身份验证方式 1 #导航到某站点下: 2 cd IIS:\Sites\DemoSite\DemoApp 3 4 #启用站点test01下的Windows身份验证 5 Set-WebConfigurationProperty -filter /system.webServer/securi... 阅读全文
posted @ 2014-09-22 17:01 momingliu11 阅读(2467) 评论(0) 推荐(0)
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 94 下一页