Search found 2 matches

by trondhindenes
Mon Jun 04, 2012 10:37 pm
Forum: General
Topic: Documentation on JSON data - specifically torrent status
Replies: 8
Views: 13998

Re: Documentation on JSON data - specifically torrent status

here's what I've found (some combinations as well, you'll have to look at status combined with other properties):

if ($torrent.status -eq 6){$torrent.status = "Seeding"}
if ($torrent.status -eq 4){$torrent.status = "Downloading"}
if ($torrent.status -eq 3){$torrent.status = "Queued"}
if ($torrent ...
by trondhindenes
Thu May 31, 2012 1:25 pm
Forum: General
Topic: PowerShell module for Transmission
Replies: 0
Views: 1671

PowerShell module for Transmission

Guys, I just wanted to let you know I've created a PowerShell module for controlloing Transmission. It supports pipelining, so that you can for instance run

Get-Transmissiontorrent | where {$_.percentDone -eq 100} | remove-transmissionTorrent

I don't plan on writing any long tutorial or how-to ...