I've found some pages in Google regarding this, but they are either not complete or outdated. Is there a definite guide somewhere? Thanks

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

There is always the help within PowerShell:

PS> import-module bitstransfer
PS> gcm *bits* | ? {$_.Commandtype -eq "cmdlet"}

CommandType Name                  Definition
----------- ----                  ----------
Cmdlet      Add-BitsFile          Add-BitsFile [-BitsJob] <BitsJob[]> [-S...
Cmdlet      Complete-BitsTransfer Complete-BitsTransfer [-BitsJob] <BitsJ...
Cmdlet      Get-BitsTransfer      Get-BitsTransfer [[-Name] <String[]>] [...
Cmdlet      Remove-BitsTransfer   Remove-BitsTransfer [-BitsJob] <BitsJob...
Cmdlet      Resume-BitsTransfer   Resume-BitsTransfer [-BitsJob] <BitsJob...
Cmdlet      Set-BitsTransfer      Set-BitsTransfer [-BitsJob] <BitsJob[]>...
Cmdlet      Start-BitsTransfer    Start-BitsTransfer [-Source] <String[]>...
Cmdlet      Suspend-BitsTransfer  Suspend-BitsTransfer [-BitsJob] <BitsJo...

tells you the commands that are available.

You can then call Get-Help on those. The help entries are pretty helpful, from what I've seen. And don't forget Get-Help ... -Examples for detailed and annotated usage examples. And the cmdlets are named self-explanatory, already.

link|improve this answer
Note to add: You can use Get-Module -ListAvailable to find out what modules you can import. – Joey Oct 21 '09 at 14:23
Thanks for the info! – Nestor Oct 21 '09 at 15:01
feedback

You can try the BITS file transfer Powerpack in case you need some kind of GUI around those BITS Cmdlets.

http://powergui.org/entry.jspa?externalID=2583&categoryID=21

link|improve this answer
+1 Nice job creating this addin! – Nestor Dec 21 '09 at 21:08
feedback

Another option is to look into the JAMS Job Scheduler PowerShell cmdlets for File transfers. It makes it simple to manage transfers across different platforms.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.