PowerShell Logo Small

Get-PSSnapin



This is the built-in help made by Microsoft for the command 'Get-PSSnapin', in PowerShell version 2 - as retrieved from Windows version 'Microsoft® Windows Vista™ Ultimate ' PowerShell help files on 2016-06-23.

For PowerShell version 3 and up, where you have Update-Help, this command was run just before creating the web pages from the help files.

SYNOPSIS

Gets the Windows PowerShell snap-ins on the computer.

SYNTAX


Get-PSSnapin [[-Name] <string[]>] [-Registered] [<CommonParameters>]



Search powershellhelp.space

DESCRIPTION


The Get-PSSnapin cmdlet gets the Windows PowerShell snap-ins that have been added to the current session or that have been registered on the syst
em. The snap-ins are listed in the order in which they are detected.

Get-PSSnapin gets only registered snap-ins. To register a Windows PowerShell snap-in, use the InstallUtil tool included with the Microsoft .NET F
ramework 2.0. For more information, see "How to Register Cmdlets, Providers, and Host Applications" in the MSDN (Microsoft Developer Network) lib
rary at http://go.microsoft.com/fwlink/?LinkId=143619.



<

RELATED LINKS

Online version: http://go.microsoft.com/fwlink/?LinkID=113330
Add-PSSnapin
Remove-PSSnapin

REMARKS

<

Examples


-------------------------- EXAMPLE 1 --------------------------

C:\PS>get-PSSnapIn



Description
-----------
This command gets the Windows PowerShell snap-ins that are currently loaded in the session. This includes the snap-ins that are installed with Wi
ndows PowerShell and those that have been added to the session.








-------------------------- EXAMPLE 2 --------------------------

C:\PS>get-PSSnapIn -registered



Description
-----------
This command gets the Windows PowerShell snap-ins that have been registered on the computer, including those that have already been added to the
session. The output does not include snap-ins that are installed with Windows PowerShell or Windows PowerShell snap-in dynamic-link libraries (DL
Ls) that have not yet been registered on the system.








-------------------------- EXAMPLE 3 --------------------------

C:\PS>get-PSSnapIn smp*



Description
-----------
This command gets the Windows PowerShell snap-ins in the current session that have names that begin with "smp".