我第一次使用powershell,我想知道如何以最简单的方法调用多个目标
例如使用curl我可以执行以下操作
curl "http://root:pass@10.21.1.(196,197,198,199,200}/axis-cgi/restart.cgi"
到目前为止,我已创建了一个脚本,可将单个Web请求发送到网址,如下所示
$username = "root"
$password = "pass" | ConvertTo-SecureString -asPlainText -Force
$cred = New-Object
System.Management.Automation.PSCredential($username,$password)
$res = Invoke-WebRequest http://10.21.66.21/axis-cgi/restart.cgi -Credential
$cred
但我想将这个命令发送到大约100个设备,有没有办法做到这一点。
欢迎任何帮助