Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Powershell Cmdlet.ShouldProcess Method default answer

I have a powershell script in which I have implemented the should process method with a high ConfirmImpact to ensure a prompt occurs.

Prompting is working as expected however the default response when nothing is entered is "Y"

[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [S] Suspend  [?] Help (default is "Y"):

Is there a way to change the default response to "N"? I would like the user to have to explicitly enter Y if they want to apply the script. I've written a pretty heavy handed script and last thing I want is for the script user to just hit enter without verifying what they are applying it to.

I've read the documentation on it and there is no mention of this anywhere.

like image 213
Jessie Avatar asked Oct 16 '22 06:10

Jessie


1 Answers

After further research I have found a way to do this. In order to have a default response set to NO, ShouldContinue Method should be used instead of ShouldProcess.

Reading the documentation for ShouldContinue has a section in the format

ShouldContinue(String, String, Boolean, Boolean, Boolean)

The first boolean is to reference a security impact. True if the operation being confirmed has a security impact. If specified, the default option selected in the selection menu is 'No'.

like image 104
Jessie Avatar answered Oct 20 '22 06:10

Jessie