1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
$web = iwr "https://www.jesusninoc.com/security/page/3/" $array = @( 'https://www.jesusninoc.com' 'https://www.linkedin.com/in/jesuspowershell/' ) foreach($enlace in ($web.Links.href | group | select name).name) { if(!$array.Contains($enlace)) { $enlace } } |