Advertisement
kyoshiharu

Torrent to Magnet Powershell

Sep 22nd, 2018
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $input1 = Get-ChildItem -filter *.torrent
  2. $regex = 'magnet:\?xt=urn:btih:[a-zA-Z0-9]*'
  3. cmd /c .\transmission-show.exe -m param($input1) | Set-Clipboard
  4. Get-Clipboard | select-string -Pattern $regex -AllMatches | % { $_.Matches } | % { $_.Value } | Set-Clipboard
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement