EFTScriptSamples/powershell/Arcus_domain_checker.ps1

5 lines
131 B
PowerShell

$clients_to_check = @('a', 'b')
foreach($client in $clients_to_check){
Start-Process https://$client.arcusapp.globalscape.com
}