Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

Find PowerShell Providers that Support Transactions

$
0
0

Summary: Learn how to find Windows PowerShell providers that support transactions.

Hey, Scripting Guy! Question 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?

Hey, Scripting Guy! Answer Use the Get-PSProvider cmdlet, and filter the capabilities of transactions:

Get-PSProvider | where capabilities -match 'transactions'


Viewing all articles
Browse latest Browse all 3333

Trending Articles