Summary: Determine the source of a particular Windows PowerShell cmdlet.
How can I tell if a Windows PowerShell cmdlet comes from one module or from another module?
Use the Get-Command cmdlet, and select the module property:
Get-Command unblock-file | select name, module