-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathen-US.json
194 lines (194 loc) · 5.06 KB
/
en-US.json
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"options": [
{
"name": "-PSConsoleFile",
"next": 0,
"tip": [
"U: -PSConsoleFile <file>\n",
"Loads the specified Windows PowerShell console file.\n",
"To create a console file, use Export-Console in Windows PowerShell."
]
},
{
"name": "-Version",
"alias": [
"-v"
],
"next": 0,
"tip": [
"U: -Version <version>\n",
"Starts the specified version of Windows PowerShell.\n",
"Provide a version number as an argument, such as \"-version 2.0\"."
]
},
{
"name": "-NoLogo",
"tip": [
"Hides the copyright banner at startup."
]
},
{
"name": "-NoExit",
"tip": [
"Does not exit after running startup commands."
]
},
{
"name": "-Sta",
"tip": [
"Starts the shell using a single-threaded apartment.\n",
"Single-threaded apartment (STA) is the default setting."
]
},
{
"name": "-Mta",
"tip": [
"Starts the shell using a multi-threaded apartment."
]
},
{
"name": "-NoProfile",
"tip": [
"Does not load Windows PowerShell profiles."
]
},
{
"name": "-NonInteractive",
"tip": [
"Does not present an interactive prompt to the user."
]
},
{
"name": "-InputFormat",
"tip": [
"U: -InputFormat <string>\n",
"Describes the format of data sent to Windows PowerShell.\n",
"Valid values are \"Text\" (text strings) or \"XML\" (serialized CLIXML format)."
],
"next": [
{
"name": "Text"
},
{
"name": "XML"
}
]
},
{
"name": "-OutputFormat",
"tip": [
"U: -OutputFormat <string>\n",
"Specifies how output from Windows PowerShell is formatted.\n",
"Valid values are \"Text\" (text strings) or \"XML\" (serialized CLIXML format)."
],
"next": [
{
"name": "Text"
},
{
"name": "XML"
}
]
},
{
"name": "-WindowStyle",
"tip": [
"U: -WindowStyle <style>\n",
"Sets the display style of the Windows PowerShell window."
],
"next": [
{
"name": "Normal",
"tip": [
"Normal window"
]
},
{
"name": "Hidden",
"tip": [
"Hidden window"
]
},
{
"name": "Minimized",
"tip": [
"Minimized window"
]
},
{
"name": "Maximized",
"tip": [
"Maximized window"
]
}
]
},
{
"name": "-EncodedCommand",
"next": 0,
"tip": [
"U: -EncodedCommand <Base64EncodedCommand>\n",
"Accepts a command as a base-64 encoded string.\n",
"Use this parameter to submit commands to Windows PowerShell that require complex quoting or braces."
]
},
{
"name": "-ConfigurationName",
"next": 0,
"tip": [
"U: -ConfigurationName <string>\n",
"Specifies the configuration endpoint that runs Windows PowerShell.\n",
"This can be any endpoint registered on the local computer, including the default Windows PowerShell remote endpoint or a custom endpoint with specific user role capabilities."
]
},
{
"name": "-File",
"next": 0,
"tip": [
"U: -File <filePath> <args>\n",
"Runs the specified script in the local scope (dot-sourced), so that the functions and variables created in the script are available in the current session.\n",
"Provide the script file path and any arguments.\n",
"File must be the last parameter in the command, as all characters following the File parameter name are interpreted as the script file path followed by script arguments."
]
},
{
"name": "-ExecutionPolicy",
"next": 0,
"tip": [
"U: -ExecutionPolicy <ExecutionPolicy>\n",
"Sets the default execution policy for the current session and saves it in the $env:PSExecutionPolicyPreference environment variable.\n",
"This parameter does not change the execution policy set in the Windows PowerShell registry."
]
},
{
"name": "-Command",
"next": 0,
"tip": [
"U: -Command <-|string|scriptBlock>\n",
"Executes the specified command (and any parameters) as if they were typed at the Windows PowerShell command prompt, then exits unless NoExit is specified.\n",
"The value of Command can be \"-\", a string, or a script block."
]
}
],
"common_options": [
{
"name": "--help",
"alias": [
"-h",
"-?",
"/?"
],
"tip": [
"Show help."
]
}
],
"info": {
"completion_info": {
"url": "https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh?view=powershell-5.1",
"description": [
"Windows PowerShell CLI. (powershell.exe)"
]
}
}
}