Created
September 11, 2021 18:57
-
-
Save avipars/a67e86c51752eea0493a27420fd460a1 to your computer and use it in GitHub Desktop.
Powershell Link Opener
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$links = Get-Content "D:\links.txt" | |
#each link should be in it's own line | |
foreach($item in $links){ | |
start chrome $item | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment