在cmd下执行powershell进入shell模式:
Windows下的命令都可以执行如:
date ping ipconfig shutdown -r ipconfig | select-string -pattern 255 ipconfig | findstr "Address"
1、执行脚本准备:
Get-ExecutionPolicy
你可以选择使用的执行策略有:
Restricted - 脚本不能运行。
RemoteSigned - 本地创建的脚本可以运行,但从网上下载的脚本不能运行(除非它们拥有由受信任的发布者签署的数字签名)。
AllSigned – 仅当脚本由受信任的发布者签名才能运行。
Unrestricted – 脚本执行不受限制,不管来自哪里,也不管它们是否有签名。
你可以使用下面的cmdlet命令设置PowerShell的执行策略:
Set-ExecutionPolicy <policy name>
Set-ExecutionPolicy RemoteSigned
2、如何执行脚本:
C:\Scripts\Script.ps1
OR
.\Script.ps1
OR
powershell devicelist.ps1
3、常用脚本:
while (1) { date >>a.log sleep 2 ping baidu.com >>a.log } for($i=0; $i -lt 100;$i=$i+1) {Write-Host $i echo "ee" } do { Write-Host $i $i++ } while ($i -le 5)
4、执行python脚本:
$i = 1 while (1) { date >>20171103.log echo "$i">>20171103.log $i++ python devicelist.py sleep 10 }
-le -gt -eq
http://www.powershellpro.com/powershell-tutorial-introduction/logic-using-loops/
http://www.splaybow.com/powershell-2.html
http://zh.wikipedia.org/wiki/Windows_PowerShell#.E6.8A.80.E8.A1.93.E5.9F.BA.E7.A4.8E
时间: 2024-11-06 22:51:43