Powershell mutex parameters use instances

Source: Internet
Author: User

Powershell mutex parameters use instances

This article mainly introduces how to use Powershell mutex parameters. This article provides two sample codes to illustrate how to use mutex parameters. For more information, see

Sometimes Powershell functions need to be mutually exclusive, so that users can only select either of them.

To create a set of mutually exclusive parameters for the script, you can mark them with different attributes and ensure their uniqueness (assuming that the parameter type cannot be automatically recognized ).

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

Function Test-ParameterSet

{

[CmdletBinding (defaparameparametersetname = 'number')]

Param

(

[Int]

[Parameter (ParameterSetName = 'number', Position = 0)]

$ Id,

 

[String]

[Parameter (ParameterSetName = 'text', Position = 0)]

$ Name

)

 

$ PSCmdlet. ParameterSetName

$ PSBoundParameters

}

The preceding function has two parameters:-id and-name. You can use only one of them, and neither of them can be used. The example also shows how to obtain user input parameters.

Multiple mutex parameters can be distinguished by "ParameterSetName" (including set parameters)

In fact, you can also assign multiple parameters and one parameter, that is, a fixed parameter and an optional parameter.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

Function Test-ParameterSet

{

[CmdletBinding (defaparameparametersetname = 'noncredential')]

Param

(

$ Id,

 

[Parameter (ParameterSetName = 'localonly', Mandatory = $ false)]

$ LocalAction,

 

[Parameter (ParameterSetName = 'credential', Mandatory = $ true)]

[Parameter (ParameterSetName = 'noncredential', Mandatory = $ false)]

$ ComputerName,

 

[Parameter (ParameterSetName = 'credential', Mandatory = $ false)]

$ Credential

)

 

$ PSCmdlet. ParameterSetName

$ PSBoundParameters

 

If ($ PSBoundParameters. ContainsKey ('computername '))

{

Write-Warning 'remote Call! '

}

}

The Test-ParameterSet function tells you that-ComputerName is optional when "NonCredential" is used. When you use the "-Credential" parameter, "-ComputerName" becomes a required parameter, if the "-LocalAction" parameter is used,-ComputerName and-Credential cannot be used.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.