Windows PowerShell command on Get-command Get-InstalledScript
MyWebUniversity

Windows PowerShell command on Get-command Get-InstalledScript

NAME

Get-InstalledScript

SYNOPSIS

Gets an installed script.

SYNTAX

Get-InstalledScript [[-Name] ] [-MaximumVersion ] [-MinimumVersion ] [-RequiredVersion

] []

DESCRIPTION

The Get-InstalledScript cmdlet gets installed scripts for CurrentUser and AllUsers scopes.

PARAMETERS

-MaximumVersion

Specifies the maximum, or latest, version of a script to get. The MaximumVersion and RequiredVersion parameters are mutually exclusive; you cannot use both parameters in the same command. Required? false Position? named Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false

-MinimumVersion

Specifies the minimum version of a script to get. The MinimumVersion and RequiredVersion parameters are mutually exclusive; you cannot use both parameters in the same command. Required? false Position? named Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false

-Name

Specifies an array of names of scripts to get. Wildcards are accepted. Required? false Position? 0 Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false

-RequiredVersion

Specifies the exact version of a script to get. Required? false Position? named Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).

INPUTS

OUTPUTS

NOTES

Example 1: Get all installed scripts

PS C:\>Get-InstalledScript

Version Name Type Repository Description

------- ---- ---- ---------- -----------

2.5 Required-Script1 Script local1 Description for the

Required-Script1 script

2.5 Required-Script2 Script local1 Description for the

Required-Script2 script

2.5 Required-Script3 Script local1 Description for the

Required-Script3 script

2.0 Script-WithDependencies1 Script local1 Description for the

Script-WithDependencies1 script

This command gets all installed scripts.

Example 2: Get installed scripts by name

PS C:\>Get-InstalledScript -Name "Required-Scri*"

Version Name Type Repository Description

------- ---- ---- ---------- -----------

2.5 Required-Script1 Script local1 Description for the

Required-Script1 script

2.5 Required-Script2 Script local1 Description for the

Required-Script2 script

2.5 Required-Script3 Script local1 Description for the

Required-Script3 script

This command gets scripts where the name begins with Required-Scri.

RELATED LINKS

Online Version: http://go.microsoft.com/fwlink/?LinkId=822324

Install-Script

Uninstall-Script



Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 OurUNIX.com ™