# Read all lines (URLs) from dq.txt $urls = Get-Content -Path dq.txt # Loop through each URL and open it in the default browser foreach ($url in $urls) { Start-Process $url }