EFTScriptSamples/powershell/Arcus_domain_checker.ps1

5 lines
131 B
PowerShell
Raw Normal View History

2022-09-13 12:38:57 -05:00
$clients_to_check = @('a', 'b')
foreach($client in $clients_to_check){
Start-Process https://$client.arcusapp.globalscape.com
}