In Windows 7, the BITSAdmin command has been deprecated in favor of BITS PowerShell cmdlets. What is the PowerShell equivalent of the command bitsadmin /reset /allusers?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

From the available cmdlets and the documentation of them as well as bitsadmin I'd say

Get-BitsTransfer -AllUsers | Remove-BitsTransfer

will do what you want.

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.