| external help file | System.Management.Automation.dll-Help.xml |
|---|---|
| Locale | en-US |
| Module Name | Microsoft.PowerShell.Core |
| ms.date | 06/28/2023 |
| online version | https://learn.microsoft.com/powershell/module/microsoft.powershell.core/get-pssnapin?view=powershell-5.1&WT.mc_id=ps-gethelp |
| schema | 2.0.0 |
| title | Get-PSSnapin |
Gets the Windows PowerShell snap-ins on the computer.
Get-PSSnapin [[-Name] <String[]>] [-Registered] [<CommonParameters>]
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 system. This cmdlet lists the snap-ins 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 Framework 2.0. For more information, see
How to Register Cmdlets, Providers, and Host Applications.
Starting in Windows PowerShell 3.0, the core commands that are included in Windows PowerShell are
packaged in modules. The exception is Microsoft.PowerShell.Core, which is a snap-in (PSSnapin).
By default, only the Microsoft.PowerShell.Core snap-in is added to the session. Modules are
imported automatically on first use and you can use the Import-Module cmdlet to import them.
PS C:\> Get-PSSnapin
This command gets the Windows PowerShell snap-ins that are currently loaded in the session. This includes the snap-ins that are installed with Windows PowerShell and those that have been added to the session.
PS C:\> Get-PSSnapin -Registered
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 (DLLs) that have not yet been registered on the system.
PS C:\> Get-PSSnapin -Name smp*
This command gets the Windows PowerShell snap-ins in the current session that have names that begin with smp.
Specifies an array of snap-in names. This cmdlet gets only the specified Windows PowerShell snap-ins. Wildcard characters are permitted.
Type: System.String[]
Parameter Sets: (All)
Aliases:
Required: False
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseIndicates that this cmdlet gets the Windows PowerShell snap-ins that have been registered on the system even if they have not yet been added to the session.
The snap-ins that are installed with Windows PowerShell do not appear in this list.
Without this parameter, Get-PSSnapin gets the Windows PowerShell snap-ins that have been added to
the session.
Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: FalseThis cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
You cannot pipe input to this cmdlet.
Get-PSSnapin returns an object for each snap-in that it gets.
Windows PowerShell includes the following aliases for Get-PSSnapin:
gsnp
Starting in Windows PowerShell 3.0, the core commands that are installed with Windows PowerShell are
packaged in modules. In Windows PowerShell 2.0, and in host programs that create older-style
sessions in later versions of Windows PowerShell, the core commands are packaged in snap-ins
(PSSnapin). The exception is Microsoft.PowerShell.Core, which is always a snap-in. Also,
remote sessions, such as those started by the New-PSSession cmdlet, are older-style sessions that
include core snap-ins.
For information about the CreateDefault2 method that creates newer-style sessions with core modules, see CreateDefault2 Method.