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

PowerTip: Where Did that PowerShell Cmdlet Come From?

$
0
0

Summary: Determine the source of a particular Windows PowerShell cmdlet.

Hey, Scripting Guy! Question How can I tell if a Windows PowerShell cmdlet comes from one module or from another module?

Hey, Scripting Guy! Answer Use the Get-Command cmdlet, and select the module property:

Get-Command unblock-file | select name, module


Viewing all articles
Browse latest Browse all 3333

Trending Articles