PowerShell PowerShell function abrirweb ($numero,$url) { 1..$numero | %{ start $url [System.Console]::Beep(261,500) } } abrirweb 3 http://www.jesusninoc.com 123456789 function abrirweb ($numero,$url){ 1..$numero | %{ start $url [System.Console]::Beep(261,500) }} abrirweb 3 http://www.jesusninoc.com