Summary: Learn how to find Windows PowerShell providers that support transactions.
I want to use transactions, but I am not sure if the provider I need to use actually supports transactions. How can I be sure?
Use the Get-PSProvider cmdlet, and filter the capabilities of transactions:
Get-PSProvider | where capabilities -match 'transactions'