File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ static SpecialVars()
92
92
internal const string ProgressPreference = "ProgressPreference" ;
93
93
internal const string InformationPreference = "InformationPreference" ;
94
94
internal const string ErrorView = "ErrorView" ;
95
+ internal const string PSNativeCommandUseErrorActionPreference = "PSNativeCommandUseErrorActionPreference" ;
95
96
96
97
internal static readonly string [ ] PreferenceVariables = new string [ ]
97
98
{
@@ -103,7 +104,8 @@ static SpecialVars()
103
104
ConfirmPreference ,
104
105
ProgressPreference ,
105
106
InformationPreference ,
106
- ErrorView
107
+ ErrorView ,
108
+ PSNativeCommandUseErrorActionPreference ,
107
109
} ;
108
110
109
111
internal static readonly Type [ ] PreferenceVariableTypes = new Type [ ]
@@ -117,6 +119,7 @@ static SpecialVars()
117
119
/* ProgressPreference */ typeof ( Enum ) ,
118
120
/* InformationPreference */ typeof ( ActionPreference ) ,
119
121
/* ErrorView */ typeof ( Enum ) , //ErrorView type not available on PS3
122
+ /* PSNativeCommandUseErrorActionPreference */ typeof ( bool ) ,
120
123
} ;
121
124
122
125
internal enum AutomaticVariable
You can’t perform that action at this time.
0 commit comments