forked from PowerShell/PowerShell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.spelling
1096 lines (1043 loc) · 16.7 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
#region Global Dictionary
2ae5d07
acl
ActiveDirectory
aditya
adityapatwardhan
alpha.15
alpha.7
alpha.8
alpha.9
AlternateStream
amd64
analyzing
AppImage
AppVeyor
argumentlist
arm32
arm64
artifact
artifacts
ASP.NET
AssemblyLoadContext
authenticode
authenticodesignature
behavior
behaviors
beta.7
booleans
catalog
cataloged
CentOS
childitem
chucklu
cimsession
cimsupport
cmake
cmd
cmdlet
cmdlets
codecov.io
color
colors
comobject
config
ConsoleHost
ConvertFrom-Json
convertto-xml
CoreCLR
CoreFX
credssp
crontab
crossgen
cs
CsPhysicallyInstalledMemory
debughandler
DevOps
DockerFile
DockerFiles
DotNetCore
DottedScopes
eBook
enum
env
ergo3114
exe
favor
favorite
frontload
FullCLR
functionprovider
Get-Acl
Get-AuthenticodeSignature
Get-ChildItem
Get-ComputerInfo
Get-PSSessionConfiguration
Get-WinEvent
github
hashtable
hashtables
helpproviderwithcache
helpproviderwithfullcache
helpsystem
homebrew
hotfix
httpbin.org
HttpBin's
ifdef'ed
ilya
init
Invoke-RestMethod
Invoke-WebRequest
isnot
json
korygill
labeled
linux-x64
lockfile
macOS
md
Microsoft.PowerShell.Archive
microsoft.powershell.commands.diagnostics
microsoft.powershell.commands.management
microsoft.powershell.commands.utility
microsoft.powershell.consolehost
microsoft.powershell.coreclr.assemblyloadcontext
microsoft.powershell.coreclr.eventing
microsoft.powershell.psreadline
microsoft.powershell.security
microsoft.wsman.management
microsoft.wsman.runtime
MSBuild
MS-PSRP
Multipart
myget
namedpipe
New-PSSessionOption
New-PSTransportOption
notcontains
nuget
NuGet
NUnit
nunit
nupkg
nuspec
OpenCover
OpenSSH
OpenSUSE
PackageManagement
param
parameterized
patwardhan
powershell
PowerShell
PowerShell.Core.Instrumentation
powershell.exe
PowerShellGet
program.cs
ProgramFiles
ProxyCommand
ps1
PSCredential
PSObject
psobjects
psproxyjobs
PSReadline
psrp.windows
PSSessionConfiguration
pwsh
redistributables
Register-EngineEvent
Register-PSSessionConfiguration
registryprovider
remoting
ResGen
resx
RFCs
runas
Runspace
runtimes
sarithsutha
savehelp
sazonov
SecureString
sessionstatecontainer
sessionstateitem
Set-Acl
Set-AuthenticodeSignature
Set-ExecutionPolicy
ShouldBeErrorId
showcommandinfo
Singleline
snapin
ssh
StackOverflow
submodule
submodules
sudo
system.management.automation
TeamCity
thenewstellw
throttlelimit
toolset
toolchain
TraceSource
Unregister-Event
Unregister-PSSessionConfiguration
utils
utils.cs
vscode
walkthrough
WebCmdlets
wget
whitespace
Win32
win7
WinRM
WiX
writingpestertests.md
WSMan
wsmansessionoption.cs
xUnit
#endregion
#region ./tools/install-powershell.readme.md Overrides
- ./tools/install-powershell.readme.md
includeide
sed
#endregion
#region CHANGELOG.md Overrides
- CHANGELOG.md
_
_Jobs
-Command
-Exclude
-File
-Include
-Title
0xfeeddeadbeef
acceptance
alpha.10
alpha.11
alpha.12
alpha.13
alpha.14
alpha.16
alpha.17
alpha.18
args
Bhaal22
behavioral
bergmeister
beta.1
beta.2
beta.3
beta.4
beta.5
beta.6
beta.8
beta.9
binding
bool
CDXML
charset
CI
cleanup
CodeMethod
CodeOwner
codepage
CommandNotFoundException
ContentType
ConvertTo-Html
CoreConsoleHost
crossgen'ing
DarwinJS
dchristian3188
DdWr
deserialization
deserialize
dlwyatt
dotnet
enums
EXE's
ExecutionPolicy
FileCatalog
FilterHashtable
foreach
GetParentProcess
GitCommitId
globbing
HelpersCommon.psm1
Himura2la
honors
hostname
IISResetMe
IncludeUserName
InformationRecord
IoT
iSazonov
IsCore
IsCoreCLR
jeffbi
joandrsn
JsonConfigFileAccessor
KeyFileParameter
KeyHandler
KirkMunro
kittholland
kvprasoon
kwiknick
kylesferrazza
LDSpits
Lee303
libpsl-native
libunwind8
LoadFrom
markekraus
meta
MiaRomero
Microsoft.Management.Infrastructure.Native
Microsoft.PowerShell.LocalAccounts
mklement0
mwrock
nanoserver-insider
non-22
non-CIM
non-R2
OAuth
offthewoll
oising
oneget.org
PetSerAl
powercode
PowershellNinja
PowerShellProperties
preview1-24530-04
ProductVersion
PRs
PSDrive
PseudoParameterBinder
PSReadLine
PSScriptAnalyzer
PSVersion
PVS-Studio
Pwrshplughin.dll
raghav710
Raspbian
rc
rc.2
rc2-24027
rc3-24011
README.md
RelationLink
richardszalay
rkeithhill
SemVer
shebang
ShellExecute
showwindow
startup
startuptype
stdin
StringBuilder
SxS
system.manage
Tadas
TestCase
TheFlyingCorpse
thezim
TimCurwick
timestamp
TimeZone
TPA
Travis
travisty
TTY's
UserAgent
UserData
UserVoice
Utf8
UTF8NoBOM
v0.1.0
v0.2.0
v0.3.0
v0.4.0
v0.5.0
v0.6.0
v6.0.0
ValidateNotNullOrEmpty
WebListener
WebRequest
win7-x86
Windos
WindowsVersion
WSManCredSSP
XPath
Youtube
stuntguy3000
SwarfegaGit
#endregion
#region CODE_OF_CONDUCT.md Overrides
- CODE_OF_CONDUCT.md
microsoft.com
opencode
#endregion
#region demos/Apache/readme.md Overrides
- demos/Apache/readme.md
Get-ApacheModule
Get-ApacheVHost
New-ApacheVHost
Restart-ApacheHTTPserver
#endregion
#region demos/Azure/README.md Overrides
- demos/Azure/README.md
AzureRM.NetCore.Preview
AzureRM.Profile.NetCore.Preview
AzureRM.Resources.NetCore.Preview
ExcludeVersion
ProviderName
#endregion
#region demos/crontab/README.md Overrides
- demos/crontab/README.md
DayOfWeek
Get-CronJob
New-CronJob
Remove-CronJob
u
#endregion
#region demos/DSC/readme.md Overrides
- demos/DSC/readme.md
#endregion
#region demos/python/README.md Overrides
- demos/python/README.md
_script.ps1
_script.ps1.
#endregion
#region demos/rest/README.md Overrides
- demos/rest/README.md
rest.ps1
#endregion
#region demos/SSHRemoting/README.md Overrides
- demos/SSHRemoting/README.md
_config
2kCbnhT2dUE6WCGgVJ8Hyfu1z2wE4lifaJXLO7QJy0Y
com.openssh.sshd
ComputerName
ComputerType
ConfigurationName
Enter-PSSession
HostName
KeyFilePath
KeyPath
launchctl
New-PSSession
NoLogo
NoProfile
openssh-client
openssh-server
PasswordAuthentication
PSCredential
PSSessions
PubkeyAuthentication
RSAAuthentication
ssh.exe
sshd
sshd.exe
sshs
TestUser
UbuntuVM1
UbuntuVM1s
usr
#endregion
#region demos/SystemD/readme.md Overrides
- demos/SystemD/readme.md
Get-SystemDJournal
journalctl
SystemD
#endregion
#region demos/WindowsPowerShellModules/README.md Overrides
- demos/WindowsPowerShellModules/README.md
PowerShellGallery
PSSnapins
WindowsPSModulePath
#endregion
#region docker/README.md Overrides
- docker/README.md
andschwa's
CurrentUser
hub.docker.com
microsoft
NanoServer-Insider
nanoserver-insider-powershell
#endregion
#region docs/BREAKINGCHANGES.md Overrides
- docs/BREAKINGCHANGES.md
7-bit
CoreFX
honored
non-Windows
psd1
runbooks
runspace
v1
v2
WMI-based
#endregion
#region docs/building/internals.md Overrides
- docs/building/internals.md
_arm
_arm64
Catalog
flavor
libpsl
MSBuild
nuget.exe
plugin
powershell-unix
src
v141
#endregion
#region docs/building/macos.md Overrides
- docs/building/macos.md
preview3
#endregion
#region docs/cmdlet-example/command-line-simple-example.md Overrides
- docs/cmdlet-example/command-line-simple-example.md
aka
classlib
dotnet
netstandard.dll
wsl
#endregion
#region docs/cmdlet-example/visual-studio-simple-example.md Overrides
- docs/cmdlet-example/visual-studio-simple-example.md
dropdown
v3
#endregion
#region docs/community/governance.md Overrides
- docs/community/governance.md
Aiello
AngelCalvo
BrucePay
Calvo
daxian-dbw
Dongbo
DON'Ts
Hemant
HemantMahawar
JamesWTruher
joeyaiello
jpsnover
khansen00
lzybkr
Mahawar
Payette
PRs
Snover
SteveL-MSFT
Truher
#endregion
#region docs/debugging/README.md Overrides
- docs/debugging/README.md
CmdletProviderClasses
CommandDiscovery
CommandSearch
ConsoleHostRunspaceInit
ConsoleHostUserInterface
ConsoleLineOutput
corehost
DisplayDataQuery
FileSystemProvider
FormatFileLoading
FormatViewBinding
LocationGlobber
MemberResolution
MshSnapinLoadUnload
OmniSharp
ParameterBinderBase
ParameterBinderController
ParameterBinding
PathResolution
PSDriveInfo
PSSnapInLoadUnload
RunspaceInit
SessionState
TypeConversion
TypeMatch
XTerm
#endregion
#region docs/dev-process/breaking-change-contract.md Overrides
- docs/dev-process/breaking-change-contract.md
cd
cdxml
int
p1
#endregion
#region docs/dev-process/coding-guidelines.md Overrides
- docs/dev-process/coding-guidelines.md
interop
PaulHigin
SMEs
TravisEz13
uppercase
#endregion
#region docs/FAQ.md Overrides
- docs/FAQ.md
PoshCode
SS64.com
TypeGen
v6.0.0
#endregion
#region docs/git/submodules.md Overrides
- docs/git/submodules.md
GoogleTest
superproject
#endregion
#region docs/host-powershell/README.md Overrides
- docs/host-powershell/README.md
0-powershell
CorePsAssemblyLoadContext.cs
Kerberos-based
NTLM-based
post-6
preview1-002106-00
sample-dotnet1
sample-dotnet2
#endregion
#region docs/installation/linux.md Overrides
- docs/installation/linux.md
compat-openssl10
dockerfile
libc6
libcurl
libcurl3
libgcc1
libgssapi-krb5-2
libicu
libicu52
libicu55
libicu57
liblttng-ust0
libssl1.0.0
libssl1.0.2
libstdc
libunwind
libunwind8
libuuid1
openssl-libs
OpenSUSE
zlib1g
zypper
#endregion
#region docs/installation/windows.md Overrides
- docs/installation/windows.md
Install-PowerShellRemoting
pwrshplugin.dll
System32
Win8
windir
#endregion
#region docs/KNOWNISSUES.md Overrides
- docs/KNOWNISSUES.md
cp
globbing
pipelining
psl-omi-provider
Register-WmiEvent
System.Management.Automation.SemanticVersion
System.Timers.Timer
#endregion
#region docs/learning-powershell/create-powershell-scripts.md Overrides
- docs/learning-powershell/create-powershell-scripts.md
NetIP.ps1.
RemoteSigned
#endregion
#region docs/learning-powershell/debugging-from-commandline.md Overrides
- docs/learning-powershell/debugging-from-commandline.md
_Debuggers
celsius
Set-PSBreakpoint
test.ps1
#endregion
#region docs/learning-powershell/powershell-beginners-guide.md Overrides
- docs/learning-powershell/powershell-beginners-guide.md
dir
jen
LastWriteTime
#endregion
#region docs/learning-powershell/README.md Overrides
- docs/learning-powershell/README.md
Lynda.com
Pluralsight
PowerShell.com
PowerShellMagazine.com
ScriptCenter
TechNet
#endregion
#region docs/learning-powershell/using-vscode.md Overrides
- docs/learning-powershell/using-vscode.md
helloworld.ps1
launch.json
OSs
#endregion
#region docs/learning-powershell/working-with-powershell-objects.md Overrides
- docs/learning-powershell/working-with-powershell-objects.md
ForEach-Object
#endregion
#region docs/maintainers/issue-management.md Overrides
- docs/maintainers/issue-management.md
Microsoft.PowerShell.Core
Microsoft.PowerShell.Management
Microsoft.PowerShell.Utility
omi
#endregion
#region docs/maintainers/pull-request-process.md Overrides
- docs/maintainers/pull-request-process.md
ci-system
#endregion
#region docs/maintainers/README.md Overrides
- docs/maintainers/README.md
andschwa
daxian-dbw
Dongbo
mirichmo
Schwartzmeyer
Sergei
TravisEz13
Vorobev
vors
#endregion
#region docs/maintainers/releasing.md Overrides
- docs/maintainers/releasing.md
2012r2
CHANGELOG.md
Dockerfiles
downlevel
Effing
PowerShellCore
Ronn
Toolset
v6
#endregion
#region docs/testing-guidelines/PowerShellCoreTestStatus.md Overrides
- docs/testing-guidelines/PowerShellCoreTestStatus.md
Add-LocalGroupMember
add-on
adhoc
Clear-ItemProperty
Connect-PSSession
Connect-WSMan
ConvertFrom-Csv
ConvertFrom-SddlString
ConvertFrom-SecureString
ConvertFrom-StringData
ConvertTo-Csv
ConvertTo-Json
ConvertTo-SecureString
ConvertTo-Xml
Copy-ItemProperty
Debug-Runspace
Disable-LocalUser
Disable-PSBreakpoint
Disable-PSSessionConfiguration
Disable-PSTrace
Disable-PSWSManCombinedTrace
Disable-RunspaceDebug
Disable-WSManCredSSP
Disable-WSManTrace
Disconnect-PSSession
Disconnect-WSMan
Enable-LocalUser
Enable-PSBreakpoint
Enable-PSSessionConfiguration
Enable-PSTrace
Enable-PSWSManCombinedTrace
Enable-RunspaceDebug
Enable-WSManCredSSP
Enable-WSManTrace
Enter-PSHostProcess
Exit-PSHostProcess
Exit-PSSession
Export-BinaryMiLog
Export-Clixml
Export-Csv
Export-FormatData
Export-ModuleMember
Find-DscResource
Find-PackageProvider
Find-RoleCapability
Get-CimAssociatedInstance
Get-CimClass
Get-CimInstance
Get-CimSession
Get-EventSubscriber
Get-ExecutionPolicy
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-PSDrive
Get-PSHostProcessInfo
Get-PSProvider
Get-PSReadlineKeyHandler
Get-PSReadlineOption
Get-PSRepository
Get-PSSession
Get-PSSessionCapability
Get-Runspace
Get-RunspaceDebug
Get-TimeZone
Get-TypeData
Get-UICulture
Get-WSManCredSSP
Get-WSManInstance
Import-BinaryMiLog
Import-Clixml
Import-Csv
Import-LocalizedData
Import-PackageProvider
Import-PowerShellDataFile
Install-PackageProvider
Invoke-CimMethod
Invoke-WSManAction
Move-ItemProperty
New-CimInstance
New-CimSession
New-CimSessionOption
New-FileCatalog
New-Guid
New-ItemProperty
New-LocalGroup
New-LocalUser
New-ModuleManifest
New-PSDrive
New-PSRoleCapabilityFile
New-PSSessionConfigurationFile
New-ScriptFileInfo
New-TemporaryFile
New-WinEvent
New-WSManInstance
New-WSManSessionOption
Receive-PSSession
Register-ArgumentCompleter
Register-CimIndicationEvent
Register-ObjectEvent
Register-PackageSource
Register-PSRepository
Remove-CimInstance
Remove-CimSession
Remove-ItemProperty
Remove-LocalGroup
Remove-LocalGroupMember
Remove-LocalUser
Remove-PSBreakpoint
Remove-PSDrive
Remove-PSReadlineKeyHandler
Remove-PSSession
Remove-TypeData
Remove-WSManInstance
Rename-ItemProperty
Rename-LocalGroup
Rename-LocalUser
Select-xml
Set-CimInstance
Set-ItemProperty
Set-LocalGroup
Set-LocalUser
Set-LogProperties
Set-PackageSource
Set-PSDebug
Set-PSReadlineKeyHandler
Set-PSReadlineOption
Set-PSRepository
Set-PSSessionConfiguration
Set-StrictMode
Set-TimeZone
Set-WSManInstance
Set-WSManQuickConfig
Test-FileCatalog
Test-ModuleManifest
Test-PSSessionConfigurationFile
Test-ScriptFileInfo
Test-WSMan
Unregister-PackageSource
Unregister-PSRepository
Update-FormatData
Update-ModuleManifest
Update-ScriptFileInfo
Update-TypeData
#endregion
#region docs/testing-guidelines/testing-guidelines.md Overrides
- docs/testing-guidelines/testing-guidelines.md
100ms
Api
build.psm1
DotNet
Interop
MessageAnalyzer
Microsoft.PowerShell.Core
Microsoft.PowerShell.Diagnostics
Microsoft.PowerShell.Management
Microsoft.PowerShell.Security
Microsoft.PowerShell.Utility
NativeExecution
TabCompletion
#endregion
#region docs/testing-guidelines/TestRoadmap.md Overrides
- docs/testing-guidelines/TestRoadmap.md
corefx
DotCover
Downlevel
KPIs
loopback
MVPs
OpenCover
org
PowerBI
Syslog
#endregion
#region docs/testing-guidelines/WritingPesterTests.md Overrides
- docs/testing-guidelines/WritingPesterTests.md
ErrorRecord
FQErrorId
FullyQualifiedErrorId
HelpersCommon.psm1
nGet-ContentOut-String
nGet-MultiLineString
PSDefaultParameterValues-skip
ShouldShouldIt
StreamDescribeCIFeatureScenarioDescribeContextItContextContextBeforeAllAfterAllBeforeEachAfterEachshould
TestDrive
throw-testcasesItMockDescribe
#endregion
#region README.md Overrides
- README.md
Gitter
microsoft.com
msi
omnisharp-vscode
opencode
pkg
tgz
UserVoice
#endregion
#region src/libpsl-native/README.md Overrides
- src/libpsl-native/README.md
Ansi
C#'s
codepage
libpsl-native
#endregion
#region src/Microsoft.PowerShell.PSReadLine/en-US/PSReadline.md Overrides
- src/Microsoft.PowerShell.PSReadLine/en-US/PSReadline.md
_history.txt
_PSReadline
50ms
AddToHistoryHandler
AppData
BackgroundColor
BellStyle
BriefDescription