forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.spelling
1756 lines (1756 loc) · 24.1 KB
/
.spelling
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# markdown-spellcheck spelling configuration file
# Format - lines beginning # are comments
# global dictionary is at the start, file overrides afterwards
# one word per line, to define a file override use ' - filename'
# where filename is relative to this configuration file
-title
0-powershell-crossplatform
0xfeeddeadbeef
100ms
1redone
1.final
2.x
2ae5d07
32-bit
4.final
64-bit
AAATechGuy
about_
about_debuggers
about_jobs
about_Telemetry
about_PSDesiredStateConfiguration
acl
adamdriscoll
add-localgroupmember
add-ons
AddType.cs
adelton
adhoc
aditya
adityapatwardhan
ADOPTERS.md
aetos382
aiello
Aishat452
al-cheb
alepauly
alexandair
alexjordan6
alpha.10
alpha.11
alpha.12
alpha.13
alpha.14
alpha.15
alpha.16
alpha.17
alpha.18
alpha.7
alpha.8
alpha.9
alternatestream
alvarodelvalle
amd64
ananya26-vishnoi
andschwa
anmenaga
api
apis
APIScan
appimage
applocker
appveyor
appx
ArchitectureSensitiveAttribute
args
argumentlist
arm32
arm64
asp.net
ast.cs
assemblyloadcontext
AssemblyInfo
assessibility
AtariDreams
authenticode
authenticodesignature
azdevops
AzFileCopy
AzureFileCopy
azurerm.netcore.preview
azurerm.profile.netcore.preview
azurerm.resources.netcore.preview
backgrounded
backgrounding
backport
beatcracker
bergmeister
beta.1
beta.2
beta.3
beta.4
beta.5
beta.6
beta.7
beta.8
beta.9
beta.406
beta.507
beta2
bgelens
Bhaal22
BinaryFormatter
bjh7242
bnot
bool
bpayette
brcrista
breakpoint
brianbunke
britishben
brotli
brucepay
bugfix
build.json
build.psm1
bulid
buildInfoJson
callmejoebob
CarloToso
catchable
cdxml
celsius
CentOS
CimDscParser
codeql-action
CGManifest
cgmanifest.json
cgmanifest
changelog
changelog.md
changelogs
changeset
changesets
channel9
charltonstanley
charset
checkbox
checksum
chibi
childitem
ChuckieChen945
ChrisLGardner
chrullrich
cimsession
cimsupport
ci.psm1
cgmanifest
classlib
clear-itemproperty
cloudydino
cls
cmake
cmd
cmdlet
cmdletproviderclasses
cmdlets
codebase
codecov.io
codecoverage.zip
codefactor
CodeFormatter
codeowner
codepage
commanddiscovery
CommandInvocationIntrinsics
commandsearch
CommandSearcher
comobject
Compiler.cs
composability
computerinfo
ComRuntimeHelpers.cs
config
connect-pssession
consolehost
consolehostrunspaceinit
consolehostuserinterface
consolelineoutput
contenttype
convertfrom-csv
convertfrom-json
convertfrom-sddlstring
convertfrom-securestring
convertfrom-stringdata
convertto-csv
convertto-html
convertto-json
convertto-securestring
convertto-xml
copy-itemproperty
CopyItem.Tests.ps1
corbob
coreclr
coreconsolehost
corefx
CorePsAssemblyLoadContext.cs
coveralls.exe
coveralls.io.
coveralls.net
CreateFile
CreateFileW
credssp
cron
crontab
crossgen
crossgen'ing
crossplatform
csharp
csmacnz
csphysicallyinstalledmemory
ctrl
CurrentCulture
CustomShellCommands.cs
DamirAinullin
DarylGraves
darquewarrior
darwinjs
DateTime
DateTime.UnixEpoch
daxian-dbw
dayofweek
dchristian3188
ddwr
debughandler
dee-see
defaultRefAssemblies
dependabot
deps
deserialization
deserialize
deserialized
deserializing
dest
dest.txt
dev
devblackops
devcontainer
deviceguard
devlead
devops
dgoldman-msft
Dictionary.TryAdd
diddledan
disable-localuser
disable-psbreakpoint
disable-pstrace
disable-pswsmancombinedtrace
disable-runspacedebug
disable-wsmantrace
disconnect-pssession
displaydataquery
Distribution_Request.md
distro
distros
dkaszews
dll
DllImport
dlls
dlwyatt
dockerbasedbuild
dockerfile
dockerfiles
learn.microsoft.com
doctordns
don'ts
dongbo
dotcover
dotnet
dotnetcore
dotnetmetadata.json
DotnetRutimeMetadata.json
DotnetRuntimeMetadata.json
dottedscopes
downlevel
dropdown
dwtaber
e.g.
ebook
ebooks
ece-jacob-scott
editorconfig
edyoung
enable-localuser
enable-psbreakpoint
enable-pstrace
enable-pswsmancombinedtrace
enable-runspacedebug
enable-wsmantrace
encodings
endian
enter-pshostprocess
enter-pssession
enum
enums
Environment.NewLine
ergo3114
errorrecord
etl
eugenesmlv
EventLogLogProvider
excludeversion
exe
executables
executionpolicy
exit-pshostprocess
exit-pssession
export-binarymilog
export-clixml
export-csv
export-formatdata
export-modulemember
fabricbot.json
failurecode
failurecount
farmerau
fbehrens
felixfbecker
ffeldhaus
ffi
fflaten
File.OpenHandle
filecatalog
filename
filesystem
filesystemprovider
files.wxs
filterhashtable
find-dscresource
find-packageprovider
find-rolecapability
findMissingNotices.ps1
firefox
folderName
foreach
formatfileloading
formatviewbinding
FormatWideCommand
Francisco-Gamino
frontload
fullclr
FunctionInfo
functionprovider
FunctionTable
fxdependent
gabrielsroka
GAC_Arm64
gamified
gc.regions.xml
Generic.SortedList
get-apachemodule
get-apachevhost
get-childitem
get-cimassociatedinstance
get-cimclass
get-ciminstance
get-computerinfo
get-cronjob
get-eventsubscriber
Get-ExperimentalFeature
get-filehash
get-formatdata
get-installedmodule
get-installedscript
get-itemproperty
get-itempropertyvalue
get-localgroup
get-localgroupmember
get-localuser
get-logproperties
get-packageprovider
get-packagesource
get-psbreakpoint
get-pscallstack
get-pshostprocessinfo
get-psprovider
get-psreadlinekeyhandler
get-psreadlineoption
get-psrepository
get-pssession
get-pssessioncapability
get-runspacedebug
get-systemdjournal
get-typedata
get-uiculture
get-winevent
get-wsmaninstance
Get-WSManSupport
GetExceptionForHR
getparentprocess
gettype
Geweldig
GigaScratch
gitcommitid
github
githug
gitter
glachancecmaisonneuve
global.json
globbing
GoogleTest
gregsdennis
GUIs
gzip
hackathons
HashData
HashSet
hashtable
hashtables
hayhay27
helloworld.ps1
helpproviderwithcache
helpproviderwithfullcache
helpsystem
hemant
hemantmahawar
Higinbotham
himura2la
hololens
homebrew
hostifaces
hostname
hotfix
httpbin.org
httpbin's
https
hubuk
hvitved
i3arnon
i.e.
ico
idera
IDictionary
ifdef'ed
iisresetme
ilya
import-binarymilog
import-clixml
import-csv
import-localizeddata
import-packageprovider
import-powershelldatafile
includeide
includeusername
informationrecord
initializers
InitialSessionState.cs
InlineAsTypeCheck
install-packageprovider
IntelliSense
interactivetesting
interop
interoperation
interlocked.read
invoke-cimmethod
Invoke-DSCResource
invoke-restmethod
invoke-wsmanaction
InvokeRestMethodCommand.Common
iot
isazonov
iscore
iscoreclr
isError
isnot
itemtype
itpro
jackdcasey
jameswtruher
Jawz84
jazzdelightsme
jeffbi
jellyfrog
jen
joandrsn
joeltankam
joeyaiello
jokajak
JohnLBevan
josea
joshuacooper
journalctl
jpsnover
json
jsonconfigfileaccessor
JsonSchema.Net
judgement
jumplist
jwmoss
kanjibates
kasper3
katacoda
Kellen-Stuart
kevinmarquette
kevinoid
KevRitchie
keyfileparameter
keyhandler
khansen00
kiazhi
kirkmunro
kittholland
korygill
kpis
krishnayalavarthi
kvprasoon
kwiknick
kwkam
kylesferrazza
labelling
LabhanshAgrawal
lastwritetime
launch.json
ldspits
lee303
Leonhardt
Libera.Chat
libicu
LibraryImport
libpsl
libpsl-native
libunwind8
license.rtf
linux
locationglobber
lockdown
loopback
lossless
louistio
LucaFilipozzi
lukexjeremy
lupino3
lynda.com
lzybkr
m1k0net
M1kep
mababio
macos
macports
maertendmsft
mahawar
mailmap
Markdig.Signed
markdown.yml
manifest.spdx.json
markekraus
marktiedemann
Marusyk
MarvTheRobot
mattifestation
matt9ucci
mcbobke
mcr.microsoft.com
md
meir017
memberresolution
Menagarishvili
messageanalyzer
metadata
metadata.json
miaromero
michaeltlombardi
microsoft
Microsoft.ApplicationInsights
Microsoft.CodeAnalysis.CSharp
Microsoft.CodeAnalysis.NetAnalyzers
microsoft.com
Microsoft.Management
microsoft.management.infrastructure.cimcmdlets
microsoft.management.infrastructure.native
Microsoft.Management.Infrastructure.Runtime.Win
microsoft.net.test.sdk
microsoft.powershell.archive
Microsoft.PowerShell.Commands
microsoft.powershell.commands.diagnostics
microsoft.powershell.commands.management
microsoft.powershell.commands.utility
microsoft.powershell.consolehost
microsoft.powershell.core
microsoft.powershell.coreclr.assemblyloadcontext
microsoft.powershell.coreclr.eventing
microsoft.powershell.diagnostics
microsoft.powershell.localaccounts
microsoft.powershell.management
microsoft.powershell.markdownrender
microsoft.powershell.psreadline
microsoft.powershell.security
microsoft.powershell.utility
Microsoft.Security.Extensions
Microsoft.WSMan
microsoft.wsman.management
microsoft.wsman.runtime
mikeTWC1984
mirichmo
mjanko5
mkdir
mkht
mklement0
ModuleCmdletBase.cs
MohiTheFish
Molkree
move-itemproperty
ms-psrp
msbuild
msftrncs
mshexpression.cs
mshsnapinloadunload
msi
multiline
multipart
mv
mvps
mwrock
myget
namedpipe
nameof
NameObscurerTelemetryInitializer
namespace
nano
nanoserver
NativeCommandProcessor.cs
NativeCultureResolver
nativeexecution
net5.0
netcoreapp5.0
netip.ps1.
netstandard.dll
new-apachevhost
new-ciminstance
new-cimsessionoption
new-cronjob
New-DockerTestBuild
new-guid
new-itemproperty
new-localgroup
new-localuser
new-modulemanifest
new-psrolecapabilityfile
new-pssession
new-pssessionconfigurationfile
new-pssessionoption
new-pstransportoption
new-scriptfileinfo
new-temporaryfile
new-timespan
new-winevent
new-wsmaninstance
new-wsmansessionoption
NextTurn
ngharo
Newtonsoft.Json
NJsonSchema
nohwnd
NoMoreFood
non-22
non-cim
non-https
non-nullable
non-r2
noresume
notcontains
nuget
nuget.config
nuget.exe
nugetfeed
Nullable
numberbytes
numberOfPowershellRefAssemblies
nupkg
oauth
object.ReferenceEquals
offthewoll
oising
omi
omnisharp
OneDrive
oneget.org
OneScripter
opencover
opencover.zip
openssh
openssl
opensuse
oss
OutputType
p1
packagemanagement
PackageVersion
parameshbabu
parameterbinderbase
parameterbindercontroller
parameterbinding
ParenExpression
ParseError.ToString
Path.Join
pathresolution
PathResolvedToMultiple
patochun
patwardhan
paulhigin
pawamoy
payette
perf
perfview
perfview.exe
peter-evans
petseral
PingPathCommand.cs
pinvoke
pinvokes
plaintext
pluggable
pluralsight
poshcode
pougetat
powerbi
powercode
powershell
powershell-unix
powershell.6
powershell.com
PowerShell.Common.props
powershell.core.instrumentation
powershell.exe
powershell.org
powershellcore
powershellgallery
powershellget
powershellmagazine.com
powershellninja
powershellpr0mpt
powershellproperties
ppadmavilasom
pre-build
pre-compiled
pre-defined
pre-generated
pre-installed
pre-parse
pre-release
pre-releases
pre-requisites
prepend
preprocessor
preview.1
preview.2
preview.2.22153.17
preview.3
preview.4
preview.5
preview.5.20279.10
preview.5.20278.13
preview.5.20269.29
preview.5.20268.9
preview.5.20272.6
preview.5.22307.18
preview.6
preview.6.20318.15
preview.6.21355.2
preview.7
preview.7.20356.2
preview.7.20358.6
preview.7.20364.3
preview.7.20366.2
preview.7.20366.15
preview.7.22377.5
preview.4.20258.7
preview.4.20229.10
preview.4.22252.9
preview.8
preview1-24530-04
preview1.22217.1
preview7
ProcessorArchitecture
ProductCode
productversion
program.cs
prototyyppi
providername
proxycommand
ps1
ps1xml
pscore
pscredential
psd1
psdrive
psdriveinfo
pseudoparameterbinder
psgallery
PSGalleryModules
psm1
psobject
psobjects
psoptions.json
psproxyjobs
psreadline
psresourceget
psrp.windows
psscriptanalyzer
pssessionconfiguration
pssnapinloadunload
pssnapins
psversion
psversiontable
PSWindowsPowerShellCompatibility
PublishReadyToRun
pvs-studio
pwd
pwrshplughin.dll
pwsh
pwsh.deps.json
qmfrederik
raghav710
Random.Shared
RandomNoun7
RandomNumberGenerator.Fill
raspbian
rc
rc.1
rc.1.21455.2
rc.1.21458.32
rc.2
rc.2.22477.20
rc.3
rc2-24027
rc3-24011
rcedit
readme
readme.md
readonly
ReadyToRun
rebase
rebase.yml
rebasing
receive-pssession
recurse
reddit
redhat
redirections
redistributable
redistributables
register-argumentcompleter
register-cimindicationevent
register-engineevent
register-objectevent
register-packagesource
register-psrepository
registryprovider
relationlink
releaseTools.psm1
RemoteSessionNamedPipe
remotesigned
remoting
remove-ciminstance
remove-cronjob
remove-itemproperty
remove-localgroup
remove-localgroupmember
remove-localuser
remove-psbreakpoint
remove-psreadlinekeyhandler
remove-pssession
remove-typedata
remove-wsmaninstance
rename-itemproperty
rename-localgroup
rename-localuser
renehernandez
reparse
replicaJunction
repo
reportgenerator
resgen
responseheaders
REST
rest.ps1
restart-apachehttpserver
resx
Rethrow
reynoldsbd
richardszalay
Rin
rjmholt
rkeithhill
rkitover
robo210
ronn
rpalo
rpolley
runas
runspace
runspaceinit
runspaces
runtime
runtimes
Ryan-Hutchison-USAF
SA1026CodeMustNotContainSpaceAfterNewKeywordInImplicitlyTypedArrayAllocation
Saancreed
SafeRegistryHandle
sample-dotnet1
sample-dotnet2
sarithsutha
sarthakmalik
savehelp
sazonov
sba923
schvartzman
schwartzmeyer
scriptblock
securestring
seemethere
select-xml
SemanticChecks
semver
serverless
sessionid
sessionstate
sessionstatecontainer
sessionstateitem
set-ciminstance
set-itemproperty
set-localgroup
set-localuser
set-logproperties
set-packagesource
set-psbreakpoint
set-psdebug
set-psreadlinekeyhandler
set-psreadlineoption
set-psrepository
set-strictmode
set-wsmaninstance
set-wsmanquickconfig
sethvs
setversionvariables
sha256
ShaydeNofziger
shellexecute
shouldbeerrorid
showcommandinfo
Shriram0908
silijon
simonwahlin
singleline
sles15
smes
snapcraft
snapin
snover
sometext
SortedList
source.txt
spongemike2
src
ss64.com
st0le
stackoverflow
stanzilla
start-codecoveragerun
start-pspester
stdin
stevel-msft
StevenLiekens
stevend811
stknohg
strawgate
streamdescribecifeaturescenariodescribecontextitcontextcontextbeforeallafterallbeforeeachaftereachshould
StrictMode
string.split
stringbuilder
stuntguy3000
StyleCop
subfolder
submodule
submodules
sudo
superproject
svg
swarfegagit
SwitchParameter
sxs
sydneyhsmith
symlink
symlinks
syscall
syslog
System.IO.Packaging
System.InvalidOperationException
system.manage
system.management.automation
System.Management.Automation.utils
systemd
SytzeAndr
tabcompletion
tadas
tandasat
tasnimzotder
TargetFramework
test-modulemanifest
test-pssessionconfigurationfile