-
Notifications
You must be signed in to change notification settings - Fork 182
/
astro.config.mjs
357 lines (356 loc) · 30.1 KB
/
astro.config.mjs
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
import { defineConfig } from 'astro/config';
import sitemap from "@astrojs/sitemap";
import mdx from "@astrojs/mdx";
import rehypeMermaid from 'rehype-mermaid';
import remarkCustomHeaderId from 'remark-custom-header-id';
import { mermaidConfig } from 'choco-astro/src/scripts/util/mermaid-config';
export default defineConfig({
site: 'https://docs.chocolatey.org',
vite: {
optimizeDeps: {
exclude: ['fsevents']
}
},
server: {
port: 5086,
host: true
},
markdown: {
syntaxHighlight: false, // Temporarily disable syntax highlighting and rely on Prism.js via choco-theme
remarkPlugins: [
remarkCustomHeaderId,
],
rehypePlugins: [
[rehypeMermaid, {
mermaidConfig: mermaidConfig
}]
]
},
prefetch: {
prefetchAll: true
},
integrations: [mdx(), sitemap()],
redirects: {
'/docs/release-notes-agent': '/en-us/agent/release-notes/',
'/en-us/quick-deployment/azure/client-setup': '/en-us/c4b-environments/azure/client-setup/',
'/en-us/quick-deployment/azure/': '/en-us/c4b-environments/azure/',
'/en-us/quick-deployment/azure/packages': '/en-us/c4b-environments/azure/packages/',
'/en-us/quick-deployment/azure/rdp': '/en-us/c4b-environments/azure/rdp/',
'/en-us/guides/organizations/quick-start-guide/certificate-renewal': '/en-us/c4b-environments/quick-start-environment/certificate-renewal/',
'/docs/chocolatey-for-business-quick-start-guide': '/en-us/c4b-environments/quick-start-environment/chocolatey-for-business-quick-start-guide/',
'/en-us/guides/organizations/quick-start-guide/chocolatey-for-business-quick-start-guide': '/en-us/c4b-environments/quick-start-environment/chocolatey-for-business-quick-start-guide/',
'/en-us/c4b-environments/quick-deployment/v1/firewall-changes': '/en-us/c4b-environments/quick-start-environment/firewall-rules/',
'/en-us/guides/organizations/quick-start-guide': '/en-us/c4b-environments/quick-start-environment/',
'/en-us/quick-deployment': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/release-notes': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/setup/': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/setup/desktop-readme': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/setup/ssl-setup': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/setup/client-setup': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/setup/internet-setup': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/setup/upgrade-license': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/v1/': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/v1/setup': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/v1/desktop-readme': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/v1/ssl-setup': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/v1/client-setup': '/en-us/c4b-environments/quick-start-environment/qde-deprecation/',
'/en-us/c4b-environments/quick-deployment/setup/upgrade-nexus-qde': '/en-us/c4b-environments/quick-start-environment/upgrade-nexus/',
'/docs/add-ccmgroup': '/en-us/central-management/chococcm/functions/addccmgroup/',
'/docs/add-ccmgroup-member': '/en-us/central-management/chococcm/functions/addccmgroupmember/',
'/docs/connect-ccmserver': '/en-us/central-management/chococcm/functions/connectccmserver/',
'/docs/disable-ccmdeployment': '/en-us/central-management/chococcm/functions/disableccmdeployment/',
'/docs/export-ccmdeployment': '/en-us/central-management/chococcm/functions/exportccmdeployment/',
'/docs/export-ccmdeployment-report': '/en-us/central-management/chococcm/functions/exportccmdeploymentreport/',
'/docs/export-ccmoutdated-software-report': '/en-us/central-management/chococcm/functions/exportccmoutdatedsoftwarereport/',
'/docs/get-ccmcomputer': '/en-us/central-management/chococcm/functions/getccmcomputer/',
'/docs/get-ccmdeployment': '/en-us/central-management/chococcm/functions/getccmdeployment/',
'/docs/get-ccmgroup': '/en-us/central-management/chococcm/functions/getccmgroup/',
'/docs/get-ccmgroup-member': '/en-us/central-management/chococcm/functions/getccmgroupmember/',
'/docs/get-ccmoutdated-software': '/en-us/central-management/chococcm/functions/getccmoutdatedsoftware/',
'/docs/get-ccmoutdated-software-member': '/en-us/central-management/chococcm/functions/getccmoutdatedsoftwaremember/',
'/docs/get-ccmoutdated-software-report': '/en-us/central-management/chococcm/functions/getccmoutdatedsoftwarereport/',
'/docs/get-ccmoutdated-software-report-detail': '/en-us/central-management/chococcm/functions/getccmoutdatedsoftwarereportdetail/',
'/docs/get-ccmrole': '/en-us/central-management/chococcm/functions/getccmrole/',
'/docs/get-ccmsoftware': '/en-us/central-management/chococcm/functions/getccmsoftware/',
'/docs/get-deployment-result': '/en-us/central-management/chococcm/functions/getdeploymentresult/',
'/docs/import-pdqdeploy-package': '/en-us/central-management/chococcm/functions/importpdqdeploypackage/',
'/docs/move-ccmdeployment-to-ready': '/en-us/central-management/chococcm/functions/moveccmdeploymenttoready/',
'/docs/new-ccmdeployment': '/en-us/central-management/chococcm/functions/newccmdeployment/',
'/docs/new-ccmdeployment-step': '/en-us/central-management/chococcm/functions/newccmdeploymentstep/',
'/docs/new-ccmoutdated-software-report': '/en-us/central-management/chococcm/functions/newccmoutdatedsoftwarereport/',
'/docs/remove-ccmdeployment': '/en-us/central-management/chococcm/functions/removeccmdeployment/',
'/docs/remove-ccmdeployment-step': '/en-us/central-management/chococcm/functions/removeccmdeploymentstep/',
'/docs/remove-ccmgroup': '/en-us/central-management/chococcm/functions/removeccmgroup/',
'/docs/remove-ccmgroup-member': '/en-us/central-management/chococcm/functions/removeccmgroupmember/',
'/docs/remove-ccmstale-deployment': '/en-us/central-management/chococcm/functions/removeccmstaledeployment/',
'/docs/set-ccmdeployment-step': '/en-us/central-management/chococcm/functions/setccmdeploymentstep/',
'/docs/set-ccmgroup': '/en-us/central-management/chococcm/functions/setccmgroup/',
'/docs/set-ccmnotification-status': '/en-us/central-management/chococcm/functions/setccmnotificationstatus/',
'/docs/start-ccmdeployment': '/en-us/central-management/chococcm/functions/startccmdeployment/',
'/docs/stop-ccmdeployment': '/en-us/central-management/chococcm/functions/stopccmdeployment/',
'/docs/choco-ccmfunction-reference': '/en-us/central-management/chococcm/functions/',
'/docs/central-management': '/en-us/central-management/',
'/docs/release-notes-central-management': '/en-us/central-management/release-notes/',
'/docs/central-management-setup-client': '/en-us/central-management/setup/client/',
'/docs/central-management-setup-database': '/en-us/central-management/setup/database/',
'/docs/central-management-setup': '/en-us/central-management/setup/',
'/docs/central-management-setup-service': '/en-us/central-management/setup/service/',
'/docs/central-management-setup-upgrade': '/en-us/central-management/setup/upgrade/',
'/docs/central-management-setup-web': '/en-us/central-management/setup/website/',
'/docs/central-management-api': '/en-us/central-management/usage/api/',
'/docs/commandsrule': '/en-us/choco/commands/rule/',
'/docs/commands-rule': '/en-us/choco/commands/rule/',
'/en-us/central-management/usage/examples/deployments': '/en-us/central-management/usage/examples/deployment-plans/',
'/en-us/central-management/usage/website/sensitive-variables': '/en-us/central-management/usage/website/administration/sensitive-variables/',
'/en-us/central-management/usage/website/encryption-passphrase': '/en-us/central-management/usage/website/administration/settings/encryption-passphrase/',
'/en-us/central-management/usage/website/administration/settings/audit-retention': '/en-us/central-management/usage/website/administration/settings/retention/',
'/en-us/central-management/usage/website/administration/settings/stale-computer-deletion': '/en-us/central-management/usage/website/administration/settings/retention/',
'/docs/central-management-computers': '/en-us/central-management/usage/website/computers/',
'/en-us/central-management/usage/computers': '/en-us/central-management/usage/website/computers/',
'/docs/central-management-deployments': '/en-us/central-management/usage/website/deployments/',
'/en-us/central-management/usage/deployments': '/en-us/central-management/usage/website/deployments/',
'/docs/central-management-groups': '/en-us/central-management/usage/website/groups/',
'/en-us/central-management/usage/groups': '/en-us/central-management/usage/website/groups/',
'/docs/central-management-reports': '/en-us/central-management/usage/website/reports/',
'/en-us/central-management/usage/reports': '/en-us/central-management/usage/website/reports/',
'/docs/central-management-software': '/en-us/central-management/usage/website/software/',
'/en-us/central-management/usage/software': '/en-us/central-management/usage/website/software/',
'/docs/commandscache': '/en-us/choco/commands/cache/',
'/docs/commands-cache': '/en-us/choco/commands/cache/',
'/docs/commandsconfig': '/en-us/choco/commands/config/',
'/docs/commands-config': '/en-us/choco/commands/config/',
'/docs/commandsdownload': '/en-us/choco/commands/download/',
'/docs/commands-download': '/en-us/choco/commands/download/',
'/docs/commandsexport': '/en-us/choco/commands/export/',
'/docs/commands-export': '/en-us/choco/commands/export/',
'/docs/commandsfeature': '/en-us/choco/commands/feature/',
'/docs/commands-feature': '/en-us/choco/commands/feature/',
'/docs/commandsfeatures': '/en-us/choco/commands/features/',
'/docs/commands-features': '/en-us/choco/commands/features/',
'/docs/commandsfind': '/en-us/choco/commands/find/',
'/docs/commands-find': '/en-us/choco/commands/find/',
'/docs/commandshelp': '/en-us/choco/commands/help/',
'/docs/commands-help': '/en-us/choco/commands/help/',
'/docs/commandsreference': '/en-us/choco/commands/',
'/docs/commands-reference': '/en-us/choco/commands/',
'/docs/commandsinfo': '/en-us/choco/commands/info/',
'/docs/commands-info': '/en-us/choco/commands/info/',
'/docs/commandsinstall': '/en-us/choco/commands/install/',
'/docs/commands-install': '/en-us/choco/commands/install/',
'/docs/commandslist': '/en-us/choco/commands/list/',
'/docs/commands-list': '/en-us/choco/commands/list/',
'/docs/commandsoptimize': '/en-us/choco/commands/optimize/',
'/docs/commands-optimize': '/en-us/choco/commands/optimize/',
'/docs/commandsoutdated': '/en-us/choco/commands/outdated/',
'/docs/commands-outdated': '/en-us/choco/commands/outdated/',
'/docs/commandspin': '/en-us/choco/commands/pin/',
'/docs/commands-pin': '/en-us/choco/commands/pin/',
'/docs/commandssearch': '/en-us/choco/commands/search/',
'/docs/commands-search': '/en-us/choco/commands/search/',
'/docs/commandssetapikey': '/en-us/choco/commands/setapikey/',
'/docs/commands-setapikey': '/en-us/choco/commands/setapikey/',
'/docs/commandssource': '/en-us/choco/commands/source/',
'/docs/commands-source': '/en-us/choco/commands/source/',
'/docs/commandssources': '/en-us/choco/commands/sources/',
'/docs/commands-sources': '/en-us/choco/commands/sources/',
'/docs/commandssupport': '/en-us/choco/commands/support/',
'/docs/commands-support': '/en-us/choco/commands/support/',
'/docs/commandssync': '/en-us/choco/commands/sync/',
'/docs/commands-sync': '/en-us/choco/commands/sync/',
'/docs/commandssynchronize': '/en-us/choco/commands/synchronize/',
'/docs/commands-synchronize': '/en-us/choco/commands/synchronize/',
'/docs/commandsuninstall': '/en-us/choco/commands/uninstall/',
'/docs/commands-uninstall': '/en-us/choco/commands/uninstall/',
'/docs/commandsunpackself': '/en-us/choco/commands/unpackself/',
'/docs/commands-unpackself': '/en-us/choco/commands/unpackself/',
'/docs/commandsupgrade': '/en-us/choco/commands/upgrade/',
'/docs/commands-upgrade': '/en-us/choco/commands/upgrade/',
'/docs/release-notes-choco-cli': '/en-us/choco/release-notes/',
'/docs/installation': '/en-us/choco/setup/',
'/docs/install': '/en-us/choco/setup/',
'/en-us/choco/installation': '/en-us/choco/setup/',
'/docs/uninstallation': '/en-us/choco/uninstallation/',
'/docs/chocolatey-gui-overview': '/en-us/chocolatey-gui/',
'/docs/chocolatey-gui-known-issues': '/en-us/chocolatey-gui/known-issues/',
'/docs/release-notes-chocolatey-gui': '/en-us/chocolatey-gui/release-notes/',
'/en-us/chocolatey-gui/setup/installation/chocolateygui': '/en-us/chocolatey-gui/setup/installation/',
'/en-us/chocolatey-gui/setup/installation/chocolatey-gui': '/en-us/chocolatey-gui/setup/installation/',
'/en-us/chocolatey-gui/setup/uninstallation/chocolatey-gui': '/en-us/chocolatey-gui/setup/uninstallation/',
'/docs/chocolatey-install-ps1': '/en-us/chocolatey-install-ps1/',
'/docs/chocolatey-story': '/en-us/chocolatey-story/',
'/docs/chocolatey-vs-ninite': '/en-us/chocolatey-vs-ninite/',
'/docs/community-packages-disclaimer': '/en-us/community-repository/community-packages-disclaimer/',
'/docs/how-to-deprecate-a-chocolatey-package': '/en-us/community-repository/maintainers/deprecate-a-chocolatey-package/',
'/docs/package-maintainer-handover': '/en-us/community-repository/maintainers/package-maintainer-handover/',
'/docs/moderation': '/en-us/community-repository/moderation/',
'/docs/package-triage-process': '/en-us/community-repository/users/package-triage-process/',
'/community-repository/users/package-triage-process#are-you-a-software-vendor': '/en-us/community-repository/users/software-vendor/',
'/docs/chocolatey-configuration': '/en-us/configuration/',
'/docs/automatic-packages': '/en-us/create/automatic-packages/',
'/docs/commandsapikey': '/en-us/create/commands/api-key/',
'/docs/commands-apikey': '/en-us/create/commands/api-key/',
'/docs/commandsconvert': '/en-us/create/commands/convert/',
'/docs/commands-convert': '/en-us/create/commands/convert/',
'/docs/commandsnew': '/en-us/create/commands/new/',
'/docs/commands-new': '/en-us/create/commands/new/',
'/docs/commandspack': '/en-us/create/commands/pack/',
'/docs/commands-pack': '/en-us/create/commands/pack/',
'/docs/commandspush': '/en-us/create/commands/push/',
'/docs/commands-push': '/en-us/create/commands/push/',
'/docs/commandstemplate': '/en-us/create/commands/template/',
'/docs/commands-template': '/en-us/create/commands/template/',
'/docs/commandstemplates': '/en-us/create/commands/templates/',
'/docs/commands-templates': '/en-us/create/commands/templates/',
'/docs/createpackagesquickstart': '/en-us/create/create-packages-quick-start/',
'/docs/create-packages-quick-start': '/en-us/create/create-packages-quick-start/',
'/docs/create-packages': '/en-us/create/create-packages/',
'/docs/CreatePackages': '/en-us/create/create-packages/',
'/docs/helpers-format-file-size': '/en-us/create/functions/format-filesize/',
'/docs/helpersformatfilesize': '/en-us/create/functions/format-filesize/',
'/docs/helpers-get-checksum-valid': '/en-us/create/functions/get-checksumvalid/',
'/docs/helpersgetchecksumvalid': '/en-us/create/functions/get-checksumvalid/',
'/docs/helpers-get-chocolatey-config-value': '/en-us/create/functions/get-chocolateyconfigvalue/',
'/docs/helpersgetchocolateyconfigvalue': '/en-us/create/functions/get-chocolateyconfigvalue/',
'/docs/helpers-get-chocolatey-path': '/en-us/create/functions/get-chocolateypath/',
'/docs/helpersgetchocolateypath': '/en-us/create/functions/get-chocolateypath/',
'/docs/helpers-get-chocolatey-unzip': '/en-us/create/functions/get-chocolateyunzip/',
'/docs/helpersgetchocolateyunzip': '/en-us/create/functions/get-chocolateyunzip/',
'/docs/helpers-get-chocolatey-web-file': '/en-us/create/functions/get-chocolateywebfile/',
'/docs/helpersgetchocolateywebfile': '/en-us/create/functions/get-chocolateywebfile/',
'/docs/helpers-get-environment-variable': '/en-us/create/cmdlets/get-environmentvariable/',
'/docs/helpersgetenvironmentvariable': '/en-us/create/cmdlets/get-environmentvariable/',
'/docs/helpers-get-environment-variable-names': '/en-us/create/cmdlets/get-environmentvariablenames/',
'/docs/helpersgetenvironmentvariablenames': '/en-us/create/cmdlets/get-environmentvariablenames/',
'/docs/helpers-get-ftp-file': '/en-us/create/functions/get-ftpfile/',
'/docs/helpersgetftpfile': '/en-us/create/functions/get-ftpfile/',
'/docs/helpers-get-os-architecture-width': '/en-us/create/functions/get-osarchitecturewidth/',
'/docs/helpersgetosarchitecturewidth': '/en-us/create/functions/get-osarchitecturewidth/',
'/docs/helpers-get-o-s-architecture-width': '/en-us/create/functions/get-osarchitecturewidth/',
'/docs/helpers-get-package-parameters': '/en-us/create/functions/get-packageparameters/',
'/docs/helpersgetpackageparameters': '/en-us/create/functions/get-packageparameters/',
'/docs/helpers-get-packageparameters': '/en-us/create/functions/get-packageparameters/',
'/docs/helpers-get-tools-location': '/en-us/create/functions/get-toolslocation/',
'/docs/helpersgettoolslocation': '/en-us/create/functions/get-toolslocation/',
'/docs/helpers-get-uac-enabled': '/en-us/create/functions/get-uacenabled/',
'/docs/helpersgetuacenabled': '/en-us/create/functions/get-uacenabled/',
'/docs/helpers-get-uninstall-registry-key': '/en-us/create/functions/get-uninstallregistrykey/',
'/docs/helpersgetuninstallregistrykey': '/en-us/create/functions/get-uninstallregistrykey/',
'/docs/helpers-get-virus-check-valid': '/en-us/create/functions/get-viruscheckvalid/',
'/docs/helpersgetviruscheckvalid': '/en-us/create/functions/get-viruscheckvalid/',
'/docs/helpers-get-web-file': '/en-us/create/functions/get-webfile/',
'/docs/helpersgetwebfile': '/en-us/create/functions/get-webfile/',
'/docs/helpers-get-web-file-name': '/en-us/create/functions/get-webfilename/',
'/docs/helpersgetwebfilename': '/en-us/create/functions/get-webfilename/',
'/docs/helpers-get-web-headers': '/en-us/create/functions/get-webheaders/',
'/docs/helpersgetwebheaders': '/en-us/create/functions/get-webheaders/',
'/docs/helpers-reference': '/en-us/create/functions/',
'/docs/HelpersReference': '/en-us/create/functions/',
'/docs/helpers-install-bin-file': '/en-us/create/functions/install-binfile/',
'/docs/helpersinstallbinfile': '/en-us/create/functions/install-binfile/',
'/docs/helpers-install-chocolatey-environment-variable': '/en-us/create/functions/install-chocolateyenvironmentvariable/',
'/docs/helpersinstallchocolateyenvironmentvariable': '/en-us/create/functions/install-chocolateyenvironmentvariable/',
'/docs/helpers-install-chocolatey-explorer-menu-item': '/en-us/create/functions/install-chocolateyexplorermenuitem/',
'/docs/helpersinstallchocolateyexplorermenuitem': '/en-us/create/functions/install-chocolateyexplorermenuitem/',
'/docs/helpers-install-chocolatey-file-association': '/en-us/create/functions/install-chocolateyfileassociation/',
'/docs/helpersinstallchocolateyfileassociation': '/en-us/create/functions/install-chocolateyfileassociation/',
'/docs/helpers-install-chocolatey-install-package': '/en-us/create/functions/install-chocolateyinstallpackage/',
'/docs/helpersinstallchocolateyinstallpackage': '/en-us/create/functions/install-chocolateyinstallpackage/',
'/docs/helpers-install-chocolatey-package': '/en-us/create/functions/install-chocolateypackage/',
'/docs/helpersinstallchocolateypackage': '/en-us/create/functions/install-chocolateypackage/',
'/docs/helpers-install-chocolatey-path': '/en-us/create/cmdlets/install-chocolateyPath/',
'/docs/helpersinstallchocolateypath': '/en-us/create/cmdlets/install-chocolateyPath/',
'/docs/helpers-install-chocolatey-pinned-task-bar-item': '/en-us/create/functions/install-chocolateypinnedtaskbaritem/',
'/docs/helpersinstallchocolateypinnedtaskbaritem': '/en-us/create/functions/install-chocolateypinnedtaskbaritem/',
'/docs/helpers-install-chocolatey-powershell-command': '/en-us/create/functions/install-chocolateypowershellcommand/',
'/docs/helpersinstallchocolateypowershellcommand': '/en-us/create/functions/install-chocolateypowershellcommand/',
'/docs/helpers-install-chocolatey-shortcut': '/en-us/create/functions/install-chocolateyshortcut/',
'/docs/helpersinstallchocolateyshortcut': '/en-us/create/functions/install-chocolateyshortcut/',
'/docs/helpers-install-chocolatey-vsix-package': '/en-us/create/functions/install-chocolateyvsixpackage/',
'/docs/helpersinstallchocolateyvsixpackage': '/en-us/create/functions/install-chocolateyvsixpackage/',
'/docs/helpers-install-chocolatey-windows-service': '/en-us/create/functions/install-chocolateywindowsservice/',
'/docs/helpers-install-chocolatey-zip-package': '/en-us/create/functions/install-chocolateyzippackage/',
'/docs/helpersinstallchocolateyzippackage': '/en-us/create/functions/install-chocolateyzippackage/',
'/docs/helpers-install-vsix': '/en-us/create/functions/install-vsix/',
'/docs/helpersinstallvsix': '/en-us/create/functions/install-vsix/',
'/docs/helpers-set-environment-variable': '/en-us/create/cmdlets/set-environmentvariable/',
'/docs/helperssetenvironmentvariable': '/en-us/create/cmdlets/set-environmentvariable/',
'/docs/helpers-set-power-shell-exit-code': '/en-us/create/functions/set-powershellexitcode/',
'/docs/helperssetpowershellexitcode': '/en-us/create/functions/set-powershellexitcode/',
'/docs/helpers-start-chocolatey-process-as-admin': '/en-us/create/functions/start-chocolateyprocessasadmin/',
'/docs/helpersstartchocolateyprocessasadmin': '/en-us/create/functions/start-chocolateyprocessasadmin/',
'/docs/helpers-start-chocolatey-windows-service': '/en-us/create/functions/start-chocolateywindowsservice/',
'/docs/helpers-stop-chocolatey-windows-service': '/en-us/create/functions/stop-chocolateywindowsservice/',
'/docs/helpers-test-process-admin-rights': '/en-us/create/cmdlets/test-processadminrights/',
'/docs/helperstestprocessadminrights': '/en-us/create/cmdlets/test-processadminrights/',
'/docs/helpers-uninstall-bin-file': '/en-us/create/functions/uninstall-binfile/',
'/docs/helpersuninstallbinfile': '/en-us/create/functions/uninstall-binfile/',
'/docs/helpers-uninstall-chocolatey-environment-variable': '/en-us/create/functions/uninstall-chocolateyenvironmentvariable/',
'/docs/helpersuninstallchocolateyenvironmentvariable': '/en-us/create/functions/uninstall-chocolateyenvironmentvariable/',
'/docs/helpers-uninstall-chocolatey-package': '/en-us/create/functions/uninstall-chocolateypackage/',
'/docs/helpersuninstallchocolateypackage': '/en-us/create/functions/uninstall-chocolateypackage/',
'/docs/helpers-uninstall-chocolatey-windows-service': '/en-us/create/functions/uninstall-chocolateywindowsservice/',
'/docs/helpers-uninstall-chocolatey-zip-package': '/en-us/create/functions/uninstall-chocolateyzippackage/',
'/docs/helpersuninstallchocolateyzippackage': '/en-us/create/functions/uninstall-chocolateyzippackage/',
'/docs/helpers-update-session-environment': '/en-us/create/cmdlets/update-sessionenvironment/',
'/docs/helpersupdatesessionenvironment': '/en-us/create/cmdlets/update-sessionenvironment/',
'/docs/helpers-write-function-call-log-message': '/en-us/create/functions/write-functioncalllogmessage/',
'/docs/helperswritefunctioncalllogmessage': '/en-us/create/functions/write-functioncalllogmessage/',
'/docs/package-dependencies': '/en-us/create/package-dependencies/',
'/docs/PackageDependencies': '/en-us/create/package-dependencies/',
'/docs/default-chocolatey-install-reasoning': '/en-us/default-chocolatey-install-reasoning/',
'/docs/chocolatey-faqs': '/en-us/faqs/',
'/docs/features-branding': '/en-us/features/branding/',
'/docs/features-chocolatey-central-management': '/en-us/features/chocolatey-central-management/',
'/docs/how-to-create-extensions': '/en-us/features/extensions/',
'/docs/how-to-host-feed': '/en-us/features/host-packages/',
'/docs/features-install-directory-override': '/en-us/features/install-directory-override/',
'/docs/features-infrastructure-automation': '/en-us/features/integrations/',
'/docs/features-package-audit': '/en-us/features/package-audit/',
'/docs/features-create-packages-from-installers': '/en-us/features/package-builder/',
'/docs/features-automatically-recompile-packages': '/en-us/features/package-internalizer/',
'/docs/features-package-reducer': '/en-us/features/package-reducer/',
'/docs/features-synchronize': '/en-us/features/package-synchronization/',
'/docs/features-package-throttle': '/en-us/features/package-throttle/',
'/docs/features-private-cdn': '/en-us/features/private-cdn/',
'/docs/features-agent-service': '/en-us/features/self-service-anywhere/',
'/docs/features-shim': '/en-us/features/shim/',
'/docs/features-virus-check': '/en-us/features/virus-check/',
'/docs/getting-started': '/en-us/getting-started/',
'/docs/gettingstarted': '/en-us/getting-started/',
'/docs/how-to-create-custom-package-templates': '/en-us/guides/create/create-custom-package-templates/',
'/docs/how-to-mount-an-iso-in-chocolatey-package': '/en-us/guides/create/mount-an-iso-in-chocolatey-package/',
'/docs/how-to-parse-package-parameters-argument': '/en-us/guides/create/parse-packageparameters-argument/',
'/docs/how-to-recompile-packages': '/en-us/guides/create/recompile-packages/',
'/docs/how-to-setup-internal-package-repository': '/en-us/guides/organizations/automate-package-internalization/',
'/docs/how-to-setup-offline-installation': '/en-us/guides/organizations/organizational-deployment-guide/',
'/docs/how-to-set-up-chocolatey-server': '/en-us/guides/organizations/set-up-chocolatey-server/',
'/docs/how-to-change-cache': '/en-us/guides/usage/change-cache/',
'/docs/development-environment-setup': '/en-us/guides/usage/development-environment-setup/',
'/docs/how-to-install-upgrade-package-without-scripts': '/en-us/guides/usage/install-upgrade-package-without-scripts/',
'/docs/proxy-settings-for-chocolatey': '/en-us/guides/usage/proxy-settings-for-chocolatey/',
'/docs/hosting-chocolatey-packages-on-myget': '/en-us/hosting-chocolatey-packages-on-myget/',
'/docs/history': '/en-us/information/history/',
'/docs/presentations': '/en-us/information/learning-resources/presentations/',
'/docs/resources': '/en-us/information/learning-resources/resources/',
'/docs/videos': '/en-us/information/learning-resources/videos/',
'/docs/legal': '/en-us/information/legal/',
'/docs/release-notes': '/en-us/information/release-notes/floss/',
'/docs/release-notes-licensed': '/en-us/information/release-notes/licensed/',
'/docs/security': '/en-us/information/security/',
'/docs/release-notes-extension': '/en-us/licensed-extension/release-notes/',
'/docs/installation-licensed': '/en-us/licensed-extension/setup/',
'/docs/logo-use-policy': '/en-us/logo-use-policy/',
'/docs/migrate-old-chocolatey-directory-to-programdata': '/en-us/migrate-old-chocolatey-directory-to-programdata/',
'/docs/packaging-next': '/en-us/packaging-next/',
'/docs/roadmap': '/en-us/roadmap/',
'/docs/troubleshooting': '/en-us/troubleshooting/',
'/docs/why': '/en-us/why/',
'/en-us/create/functions/get-environmentvariable': '/en-us/create/cmdlets/get-environmentvariable/',
'/en-us/create/functions/get-environmentvariablenames': '/en-us/create/cmdlets/get-environmentvariablenames/',
'/en-us/create/functions/install-chocolateypath': '/en-us/create/cmdlets/install-chocolateyPath/',
'/en-us/create/functions/set-environmentvariable': '/en-us/create/cmdlets/set-environmentvariable/',
'/en-us/create/functions/test-processadminrights': '/en-us/create/cmdlets/test-processadminrights/',
'/en-us/create/functions/update-sessionenvironment': '/en-us/create/cmdlets/update-sessionenvironment/',
}
});