Automatización, PowerShell, Web scraping PowerShell $url="https://www.youtube.com/results?search_query=no+dolls" $result = Invoke-WebRequest $url ($result.Links.href | Select-String "watch" | Group-Object).Name | %{"https://www.youtube.com"+$_} 123 $url="https://www.youtube.com/results?search_query=no+dolls"$result = Invoke-WebRequest $url($result.Links.href | Select-String "watch" | Group-Object).Name | %{"https://www.youtube.com"+$_}