forked from Shaners/ShellScripting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSCommands.txt
1099 lines (1098 loc) · 129 KB
/
PSCommands.txt
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
Name
----
Add-ProvisionedAppxPackage
Apply-WindowsUnattend
Begin-WebCommitDelay
End-WebCommitDelay
Get-ProvisionedAppxPackage
Initialize-Volume
Remove-ProvisionedAppxPackage
A:
Add-BCDataCacheExtension
Add-BitLockerKeyProtector
Add-DnsClientNrptRule
Add-DtcClusterTMMapping
Add-InitiatorIdToMaskingSet
Add-NetIPHttpsCertBinding
Add-NetLbfoTeamMember
Add-NetLbfoTeamNic
Add-NetSwitchTeamMember
Add-OdbcDsn
Add-PartitionAccessPath
Add-PhysicalDisk
Add-Printer
Add-PrinterDriver
Add-PrinterPort
Add-TargetPortToMaskingSet
Add-VirtualDiskToMaskingSet
Add-VpnConnection
B:
Backup-BitLockerKeyProtector
Block-SmbShareAccess
C:
cd..
cd\
Clear-BCCache
Clear-BitLockerAutoUnlock
Clear-Disk
Clear-DnsClientCache
Clear-Host
Close-SmbOpenFile
Close-SmbSession
Connect-IscsiTarget
Connect-VirtualDisk
Copy-NetFirewallRule
Copy-NetIPsecMainModeCryptoSet
Copy-NetIPsecMainModeRule
Copy-NetIPsecPhase1AuthSet
Copy-NetIPsecPhase2AuthSet
Copy-NetIPsecQuickModeCryptoSet
Copy-NetIPsecRule
D:
Disable-BC
Disable-BCDowngrading
Disable-BCServeOnBattery
Disable-BitLocker
Disable-BitLockerAutoUnlock
Disable-DAManualEntryPointSelection
Disable-MMAgent
Disable-NetAdapter
Disable-NetAdapterBinding
Disable-NetAdapterChecksumOffload
Disable-NetAdapterEncapsulatedPacketTaskOffload
Disable-NetAdapterIPsecOffload
Disable-NetAdapterLso
Disable-NetAdapterPowerManagement
Disable-NetAdapterQos
Disable-NetAdapterRdma
Disable-NetAdapterRsc
Disable-NetAdapterRss
Disable-NetAdapterSriov
Disable-NetAdapterVmq
Disable-NetDnsTransitionConfiguration
Disable-NetFirewallRule
Disable-NetIPHttpsProfile
Disable-NetIPsecMainModeRule
Disable-NetIPsecRule
Disable-NetNatTransitionConfiguration
Disable-OdbcPerfCounter
Disable-PhysicalDiskIndication
Disable-PSTrace
Disable-PSWSManCombinedTrace
Disable-ScheduledTask
Disable-WdacBidTrace
Disable-WSManTrace
Disconnect-IscsiTarget
Disconnect-VirtualDisk
Dismount-DiskImage
E:
Enable-BCDistributed
Enable-BCDowngrading
Enable-BCHostedClient
Enable-BCHostedServer
Enable-BCLocal
Enable-BCServeOnBattery
Enable-BitLocker
Enable-BitLockerAutoUnlock
Enable-DAManualEntryPointSelection
Enable-MMAgent
Enable-NetAdapter
Enable-NetAdapterBinding
Enable-NetAdapterChecksumOffload
Enable-NetAdapterEncapsulatedPacketTaskOffload
Enable-NetAdapterIPsecOffload
Enable-NetAdapterLso
Enable-NetAdapterPowerManagement
Enable-NetAdapterQos
Enable-NetAdapterRdma
Enable-NetAdapterRsc
Enable-NetAdapterRss
Enable-NetAdapterSriov
Enable-NetAdapterVmq
Enable-NetDnsTransitionConfiguration
Enable-NetFirewallRule
Enable-NetIPHttpsProfile
Enable-NetIPsecMainModeRule
Enable-NetIPsecRule
Enable-NetNatTransitionConfiguration
Enable-OdbcPerfCounter
Enable-PhysicalDiskIndication
Enable-PSTrace
Enable-PSWSManCombinedTrace
Enable-ScheduledTask
Enable-WdacBidTrace
Enable-WSManTrace
Export-BCCachePackage
Export-BCSecretKey
Export-ScheduledTask
F:
Format-Volume
G:
Get-AppxLastError
Get-AppxLog
Get-BCClientConfiguration
Get-BCContentServerConfiguration
Get-BCDataCache
Get-BCDataCacheExtension
Get-BCHashCache
Get-BCHostedCacheServerConfiguration
Get-BCNetworkConfiguration
Get-BCStatus
Get-BitLockerVolume
Get-ClusteredScheduledTask
Get-DAClientExperienceConfiguration
Get-DAConnectionStatus
Get-DAEntryPointTableItem
Get-Disk
Get-DiskImage
Get-DnsClient
Get-DnsClientCache
Get-DnsClientGlobalSetting
Get-DnsClientNrptGlobal
Get-DnsClientNrptPolicy
Get-DnsClientNrptRule
Get-DnsClientServerAddress
Get-Dtc
Get-DtcAdvancedHostSetting
Get-DtcAdvancedSetting
Get-DtcClusterDefault
Get-DtcClusterTMMapping
Get-DtcDefault
Get-DtcLog
Get-DtcNetworkSetting
Get-DtcTransaction
Get-DtcTransactionsStatistics
Get-DtcTransactionsTraceSession
Get-DtcTransactionsTraceSetting
Get-FileIntegrity
Get-InitiatorId
Get-InitiatorPort
Get-IscsiConnection
Get-IscsiSession
Get-IscsiTarget
Get-IscsiTargetPortal
Get-IseSnippet
Get-LogProperties
Get-MaskingSet
Get-MMAgent
Get-NCSIPolicyConfiguration
Get-Net6to4Configuration
Get-NetAdapter
Get-NetAdapterAdvancedProperty
Get-NetAdapterBinding
Get-NetAdapterChecksumOffload
Get-NetAdapterEncapsulatedPacketTaskOffload
Get-NetAdapterHardwareInfo
Get-NetAdapterIPsecOffload
Get-NetAdapterLso
Get-NetAdapterPowerManagement
Get-NetAdapterQos
Get-NetAdapterRdma
Get-NetAdapterRsc
Get-NetAdapterRss
Get-NetAdapterSriov
Get-NetAdapterSriovVf
Get-NetAdapterStatistics
Get-NetAdapterVmq
Get-NetAdapterVMQQueue
Get-NetAdapterVPort
Get-NetConnectionProfile
Get-NetDnsTransitionConfiguration
Get-NetDnsTransitionMonitoring
Get-NetFirewallAddressFilter
Get-NetFirewallApplicationFilter
Get-NetFirewallInterfaceFilter
Get-NetFirewallInterfaceTypeFilter
Get-NetFirewallPortFilter
Get-NetFirewallProfile
Get-NetFirewallRule
Get-NetFirewallSecurityFilter
Get-NetFirewallServiceFilter
Get-NetFirewallSetting
Get-NetIPAddress
Get-NetIPConfiguration
Get-NetIPHttpsConfiguration
Get-NetIPHttpsState
Get-NetIPInterface
Get-NetIPsecDospSetting
Get-NetIPsecMainModeCryptoSet
Get-NetIPsecMainModeRule
Get-NetIPsecMainModeSA
Get-NetIPsecPhase1AuthSet
Get-NetIPsecPhase2AuthSet
Get-NetIPsecQuickModeCryptoSet
Get-NetIPsecQuickModeSA
Get-NetIPsecRule
Get-NetIPv4Protocol
Get-NetIPv6Protocol
Get-NetIsatapConfiguration
Get-NetLbfoTeam
Get-NetLbfoTeamMember
Get-NetLbfoTeamNic
Get-NetNatTransitionConfiguration
Get-NetNatTransitionMonitoring
Get-NetNeighbor
Get-NetOffloadGlobalSetting
Get-NetPrefixPolicy
Get-NetQosPolicy
Get-NetRoute
Get-NetSwitchTeam
Get-NetSwitchTeamMember
Get-NetTCPConnection
Get-NetTCPSetting
Get-NetTeredoConfiguration
Get-NetTeredoState
Get-NetTransportFilter
Get-NetUDPEndpoint
Get-NetUDPSetting
Get-OdbcDriver
Get-OdbcDsn
Get-OdbcPerfCounter
Get-OffloadDataTransferSetting
Get-Partition
Get-PartitionSupportedSize
Get-PhysicalDisk
Get-PrintConfiguration
Get-Printer
Get-PrinterDriver
Get-PrinterPort
Get-PrinterProperty
Get-PrintJob
Get-ResiliencySetting
Get-ScheduledTask
Get-ScheduledTaskInfo
Get-SmbClientConfiguration
Get-SmbClientNetworkInterface
Get-SmbConnection
Get-SmbMapping
Get-SmbMultichannelConnection
Get-SmbMultichannelConstraint
Get-SmbOpenFile
Get-SmbServerConfiguration
Get-SmbServerNetworkInterface
Get-SmbSession
Get-SmbShare
Get-SmbShareAccess
Get-SmbWitnessClient
Get-StorageJob
Get-StoragePool
Get-StorageProvider
Get-StorageReliabilityCounter
Get-StorageSetting
Get-StorageSubSystem
Get-SupportedClusterSizes
Get-SupportedFileSystems
Get-TargetPort
Get-TargetPortal
Get-Verb
Get-VirtualDisk
Get-VirtualDiskSupportedSize
Get-Volume
Get-VolumeCorruptionCount
Get-VolumeScrubPolicy
Get-VpnConnection
Get-WdacBidTrace
Get-WindowsDeveloperLicense
Grant-SmbShareAccess
H:
help
Hide-VirtualDisk
I:
Import-BCCachePackage
Import-BCSecretKey
Import-IseSnippet
ImportSystemModules
Initialize-Disk
Install-Dtc
Invoke-AsWorkflow
J:
K:
L:
Lock-BitLocker
M:
mkdir
more
Mount-DiskImage
Move-SmbWitnessClient
N:
New-DAEntryPointTableItem
New-EapConfiguration
New-IscsiTargetPortal
New-IseSnippet
New-MaskingSet
New-NetAdapterAdvancedProperty
New-NetFirewallRule
New-NetIPAddress
New-NetIPHttpsConfiguration
New-NetIPsecDospSetting
New-NetIPsecMainModeCryptoSet
New-NetIPsecMainModeRule
New-NetIPsecPhase1AuthSet
New-NetIPsecPhase2AuthSet
New-NetIPsecQuickModeCryptoSet
New-NetIPsecRule
New-NetLbfoTeam
New-NetNatTransitionConfiguration
New-NetNeighbor
New-NetQosPolicy
New-NetRoute
New-NetSwitchTeam
New-NetTransportFilter
New-Partition
New-PSWorkflowSession
New-ScheduledTask
New-ScheduledTaskAction
New-ScheduledTaskPrincipal
New-ScheduledTaskSettingsSet
New-ScheduledTaskTrigger
New-SmbMapping
New-SmbMultichannelConstraint
New-SmbShare
New-StoragePool
New-StorageSubsystemVirtualDisk
New-VirtualDisk
New-VirtualDiskClone
New-VirtualDiskSnapshot
O:
Open-NetGPO
Optimize-Volume
oss
P:
Pause
prompt
Publish-BCFileContent
Publish-BCWebContent
Q:
R:
Register-ClusteredScheduledTask
Register-DnsClient
Register-IscsiSession
Register-ScheduledTask
Remove-BCDataCacheExtension
Remove-BitLockerKeyProtector
Remove-DAEntryPointTableItem
Remove-DnsClientNrptRule
Remove-DtcClusterTMMapping
Remove-InitiatorId
Remove-InitiatorIdFromMaskingSet
Remove-IscsiTargetPortal
Remove-MaskingSet
Remove-NetAdapterAdvancedProperty
Remove-NetFirewallRule
Remove-NetIPAddress
Remove-NetIPHttpsCertBinding
Remove-NetIPHttpsConfiguration
Remove-NetIPsecDospSetting
Remove-NetIPsecMainModeCryptoSet
Remove-NetIPsecMainModeRule
Remove-NetIPsecMainModeSA
Remove-NetIPsecPhase1AuthSet
Remove-NetIPsecPhase2AuthSet
Remove-NetIPsecQuickModeCryptoSet
Remove-NetIPsecQuickModeSA
Remove-NetIPsecRule
Remove-NetLbfoTeam
Remove-NetLbfoTeamMember
Remove-NetLbfoTeamNic
Remove-NetNatTransitionConfiguration
Remove-NetNeighbor
Remove-NetQosPolicy
Remove-NetRoute
Remove-NetSwitchTeam
Remove-NetSwitchTeamMember
Remove-NetTransportFilter
Remove-OdbcDsn
Remove-Partition
Remove-PartitionAccessPath
Remove-PhysicalDisk
Remove-Printer
Remove-PrinterDriver
Remove-PrinterPort
Remove-PrintJob
Remove-SmbMapping
Remove-SmbMultichannelConstraint
Remove-SmbShare
Remove-StoragePool
Remove-TargetPortFromMaskingSet
Remove-VirtualDisk
Remove-VirtualDiskFromMaskingSet
Remove-VpnConnection
Rename-DAEntryPointTableItem
Rename-MaskingSet
Rename-NetAdapter
Rename-NetFirewallRule
Rename-NetIPHttpsConfiguration
Rename-NetIPsecMainModeCryptoSet
Rename-NetIPsecMainModeRule
Rename-NetIPsecPhase1AuthSet
Rename-NetIPsecPhase2AuthSet
Rename-NetIPsecQuickModeCryptoSet
Rename-NetIPsecRule
Rename-NetLbfoTeam
Rename-NetSwitchTeam
Rename-Printer
Repair-FileIntegrity
Repair-VirtualDisk
Repair-Volume
Reset-BC
Reset-DAClientExperienceConfiguration
Reset-DAEntryPointTableItem
Reset-DtcLog
Reset-NCSIPolicyConfiguration
Reset-Net6to4Configuration
Reset-NetAdapterAdvancedProperty
Reset-NetDnsTransitionConfiguration
Reset-NetIPHttpsConfiguration
Reset-NetIsatapConfiguration
Reset-NetTeredoConfiguration
Reset-PhysicalDisk
Reset-StorageReliabilityCounter
Resize-Partition
Resize-VirtualDisk
Restart-NetAdapter
Restart-PrintJob
Resume-BitLocker
Resume-PrintJob
Revoke-SmbShareAccess
S:
Save-NetGPO
Set-BCAuthentication
Set-BCCache
Set-BCDataCacheEntryMaxAge
Set-BCMinSMBLatency
Set-BCSecretKey
Set-ClusteredScheduledTask
Set-DAClientExperienceConfiguration
Set-DAEntryPointTableItem
Set-Disk
Set-DnsClient
Set-DnsClientGlobalSetting
Set-DnsClientNrptGlobal
Set-DnsClientNrptRule
Set-DnsClientServerAddress
Set-DtcAdvancedHostSetting
Set-DtcAdvancedSetting
Set-DtcClusterDefault
Set-DtcClusterTMMapping
Set-DtcDefault
Set-DtcLog
Set-DtcNetworkSetting
Set-DtcTransaction
Set-DtcTransactionsTraceSession
Set-DtcTransactionsTraceSetting
Set-FileIntegrity
Set-InitiatorPort
Set-IscsiChapSecret
Set-LogProperties
Set-MMAgent
Set-NCSIPolicyConfiguration
Set-Net6to4Configuration
Set-NetAdapter
Set-NetAdapterAdvancedProperty
Set-NetAdapterBinding
Set-NetAdapterChecksumOffload
Set-NetAdapterEncapsulatedPacketTaskOffload
Set-NetAdapterIPsecOffload
Set-NetAdapterLso
Set-NetAdapterPowerManagement
Set-NetAdapterQos
Set-NetAdapterRdma
Set-NetAdapterRsc
Set-NetAdapterRss
Set-NetAdapterSriov
Set-NetAdapterVmq
Set-NetConnectionProfile
Set-NetDnsTransitionConfiguration
Set-NetFirewallAddressFilter
Set-NetFirewallApplicationFilter
Set-NetFirewallInterfaceFilter
Set-NetFirewallInterfaceTypeFilter
Set-NetFirewallPortFilter
Set-NetFirewallProfile
Set-NetFirewallRule
Set-NetFirewallSecurityFilter
Set-NetFirewallServiceFilter
Set-NetFirewallSetting
Set-NetIPAddress
Set-NetIPHttpsConfiguration
Set-NetIPInterface
Set-NetIPsecDospSetting
Set-NetIPsecMainModeCryptoSet
Set-NetIPsecMainModeRule
Set-NetIPsecPhase1AuthSet
Set-NetIPsecPhase2AuthSet
Set-NetIPsecQuickModeCryptoSet
Set-NetIPsecRule
Set-NetIPv4Protocol
Set-NetIPv6Protocol
Set-NetIsatapConfiguration
Set-NetLbfoTeam
Set-NetLbfoTeamMember
Set-NetLbfoTeamNic
Set-NetNatTransitionConfiguration
Set-NetNeighbor
Set-NetOffloadGlobalSetting
Set-NetQosPolicy
Set-NetRoute
Set-NetTCPSetting
Set-NetTeredoConfiguration
Set-NetUDPSetting
Set-OdbcDriver
Set-OdbcDsn
Set-Partition
Set-PhysicalDisk
Set-PrintConfiguration
Set-Printer
Set-PrinterProperty
Set-ResiliencySetting
Set-ScheduledTask
Set-SmbClientConfiguration
Set-SmbServerConfiguration
Set-SmbShare
Set-StoragePool
Set-StorageSetting
Set-StorageSubSystem
Set-VirtualDisk
Set-Volume
Set-VolumeScrubPolicy
Set-VpnConnection
Set-VpnConnectionProxy
Show-NetFirewallRule
Show-NetIPsecRule
Show-VirtualDisk
Show-WindowsDeveloperLicenseRegistration
Start-Dtc
Start-DtcTransactionsTraceSession
Start-ScheduledTask
Start-Trace
Stop-Dtc
Stop-DtcTransactionsTraceSession
Stop-ScheduledTask
Stop-Trace
Suspend-BitLocker
Suspend-PrintJob
Sync-NetIPsecRule
T:
TabExpansion2
Test-Dtc
U:
Unblock-SmbShareAccess
Uninstall-Dtc
Unlock-BitLocker
Unregister-ClusteredScheduledTask
Unregister-IscsiSession
Unregister-ScheduledTask
Unregister-WindowsDeveloperLicense
Update-Disk
Update-HostStorageCache
Update-IscsiTarget
Update-IscsiTargetPortal
Update-NetIPsecRule
Update-SmbMultichannelConnection
Update-StorageProviderCache
V:
W:
Write-DtcTransactionsTraceSession
X:
Y:
Z:
Add-AppxPackage
Add-AppxProvisionedPackage
Add-BitsFile
Add-CertificateEnrollmentPolicyServer
Add-Computer
Add-Content
Add-History
Add-JobTrigger
Add-KdsRootKey
Add-Member
Add-PSSnapin
Add-Type
Add-WebConfiguration
Add-WebConfigurationLock
Add-WebConfigurationProperty
Add-WindowsDriver
Add-WindowsPackage
Backup-WebConfiguration
Checkpoint-Computer
Clear-Content
Clear-EventLog
Clear-History
Clear-Item
Clear-ItemProperty
Clear-KdsCache
Clear-MsmqOutgoingQueue
Clear-MsmqQueue
Clear-Tpm
Clear-Variable
Clear-WebCentralCertProvider
Clear-WebConfiguration
Clear-WebRequestTracingSetting
Clear-WebRequestTracingSettings
Clear-WindowsCorruptMountPoint
Compare-Object
Complete-BitsTransfer
Complete-DtcDiagnosticTransaction
Complete-Transaction
Confirm-SecureBootUEFI
Connect-PSSession
Connect-WSMan
ConvertFrom-Csv
ConvertFrom-Json
ConvertFrom-SecureString
ConvertFrom-StringData
Convert-Path
ConvertTo-Csv
ConvertTo-Html
ConvertTo-Json
ConvertTo-SecureString
ConvertTo-TpmOwnerAuth
ConvertTo-WebApplication
ConvertTo-Xml
Copy-Item
Copy-ItemProperty
Debug-Process
Disable-ComputerRestore
Disable-JobTrigger
Disable-PSBreakpoint
Disable-PSRemoting
Disable-PSSessionConfiguration
Disable-ScheduledJob
Disable-TpmAutoProvisioning
Disable-WebCentralCertProvider
Disable-WebGlobalModule
Disable-WebRequestTracing
Disable-WindowsErrorReporting
Disable-WindowsOptionalFeature
Disable-WSManCredSSP
Disconnect-PSSession
Disconnect-WSMan
Dismount-WindowsImage
Enable-ComputerRestore
Enable-JobTrigger
Enable-MsmqCertificate
Enable-PSBreakpoint
Enable-PSRemoting
Enable-PSSessionConfiguration
Enable-ScheduledJob
Enable-TpmAutoProvisioning
Enable-WebCentralCertProvider
Enable-WebGlobalModule
Enable-WebRequestTracing
Enable-WindowsErrorReporting
Enable-WindowsOptionalFeature
Enable-WSManCredSSP
Enter-PSSession
Exit-PSSession
Export-Alias
Export-Certificate
Export-Clixml
Export-Console
Export-Counter
Export-Csv
Export-FormatData
Export-ModuleMember
Export-PfxCertificate
Export-PSSession
ForEach-Object
Format-Custom
Format-List
Format-SecureBootUEFI
Format-Table
Format-Wide
Get-Acl
Get-Alias
Get-AppLockerFileInformation
Get-AppLockerPolicy
Get-AppxPackage
Get-AppxPackageManifest
Get-AppxProvisionedPackage
Get-AuthenticodeSignature
Get-BitsTransfer
Get-Certificate
Get-CertificateAutoEnrollmentPolicy
Get-CertificateEnrollmentPolicyServer
Get-CertificateNotificationTask
Get-ChildItem
Get-CimAssociatedInstance
Get-CimClass
Get-CimInstance
Get-CimSession
Get-Command
Get-ComputerRestorePoint
Get-Content
Get-ControlPanelItem
Get-Counter
Get-Credential
Get-Culture
Get-DAPolicyChange
Get-Date
Get-Event
Get-EventLog
Get-EventSubscriber
Get-ExecutionPolicy
Get-FormatData
Get-Help
Get-History
Get-Host
Get-HotFix
Get-Item
Get-ItemProperty
Get-Job
Get-JobTrigger
Get-KdsConfiguration
Get-KdsRootKey
Get-Location
Get-Member
Get-Module
Get-MsmqCertificate
Get-MsmqOutgoingQueue
Get-MsmqQueue
Get-MsmqQueueACL
Get-MsmqQueueManager
Get-MsmqQueueManagerACL
Get-PfxCertificate
Get-PfxData
Get-Process
Get-PSBreakpoint
Get-PSCallStack
Get-PSDrive
Get-PSProvider
Get-PSSession
Get-PSSessionConfiguration
Get-PSSnapin
Get-Random
Get-ScheduledJob
Get-ScheduledJobOption
Get-SecureBootPolicy
Get-SecureBootUEFI
Get-Service
Get-Tpm
Get-TraceSource
Get-Transaction
Get-TroubleshootingPack
Get-TypeData
Get-UICulture
Get-Unique
Get-Variable
Get-WebAppDomain
Get-WebApplication
Get-WebAppPoolState
Get-WebBinding
Get-WebCentralCertProvider
Get-WebConfigFile
Get-WebConfiguration
Get-WebConfigurationBackup
Get-WebConfigurationLocation
Get-WebConfigurationLock
Get-WebConfigurationProperty
Get-WebFilePath
Get-WebGlobalModule
Get-WebHandler
Get-WebItemState
Get-WebManagedModule
Get-WebRequest
Get-Website
Get-WebsiteState
Get-WebURL
Get-WebVirtualDirectory
Get-WinAcceptLanguageFromLanguageListOptOut
Get-WinCultureFromLanguageListOptOut
Get-WinDefaultInputMethodOverride
Get-WindowsDriver
Get-WindowsEdition
Get-WindowsErrorReporting
Get-WindowsImage
Get-WindowsOptionalFeature
Get-WindowsPackage
Get-WinEvent
Get-WinHomeLocation
Get-WinLanguageBarOption
Get-WinSystemLocale
Get-WinUILanguageOverride
Get-WinUserLanguageList
Get-WmiObject
Get-WSManCredSSP
Get-WSManInstance
Group-Object
Import-Alias
Import-Certificate
Import-Clixml
Import-Counter
Import-Csv
Import-LocalizedData
Import-Module
Import-PfxCertificate
Import-PSSession
Import-TpmOwnerAuth
Initialize-Tpm
Invoke-CimMethod
Invoke-Command
Invoke-Expression
Invoke-History
Invoke-Item
Invoke-RestMethod
Invoke-TroubleshootingPack
Invoke-WebRequest
Invoke-WmiMethod
Invoke-WSManAction
Join-DtcDiagnosticResourceManager
Join-Path
Limit-EventLog
Measure-Command
Measure-Object
Mount-WindowsImage
Move-Item
Move-ItemProperty
Move-MsmqMessage
New-Alias
New-AppLockerPolicy
New-CertificateNotificationTask
New-CimInstance
New-CimSession
New-CimSessionOption
New-DtcDiagnosticTransaction
New-Event
New-EventLog
New-Item
New-ItemProperty
New-JobTrigger
New-Module
New-ModuleManifest
New-MsmqMessage
New-MsmqQueue
New-NetIPsecAuthProposal
New-NetIPsecMainModeCryptoProposal
New-NetIPsecQuickModeCryptoProposal
New-Object
New-PSDrive
New-PSSession
New-PSSessionConfigurationFile
New-PSSessionOption
New-PSTransportOption
New-PSWorkflowExecutionOption
New-ScheduledJobOption
New-SelfSignedCertificate
New-Service
New-TimeSpan
New-Variable
New-WebApplication
New-WebAppPool
New-WebBinding
New-WebFtpSite
New-WebGlobalModule
New-WebHandler
New-WebManagedModule
New-WebServiceProxy
New-Website
New-WebVirtualDirectory
New-WinEvent
New-WinUserLanguageList
New-WSManInstance
New-WSManSessionOption
Out-Default
Out-File
Out-GridView
Out-Host
Out-Null
Out-Printer
Out-String
Pop-Location
Push-Location
Read-Host
Receive-DtcDiagnosticTransaction
Receive-Job
Receive-MsmqQueue
Receive-PSSession
Register-CimIndicationEvent
Register-EngineEvent
Register-ObjectEvent
Register-PSSessionConfiguration
Register-ScheduledJob
Register-WmiEvent
Remove-AppxPackage
Remove-AppxProvisionedPackage
Remove-BitsTransfer
Remove-CertificateEnrollmentPolicyServer
Remove-CertificateNotificationTask
Remove-CimInstance
Remove-CimSession
Remove-Computer
Remove-Event
Remove-EventLog
Remove-Item
Remove-ItemProperty
Remove-Job
Remove-JobTrigger
Remove-Module
Remove-MsmqCertificate
Remove-MsmqQueue
Remove-PSBreakpoint
Remove-PSDrive
Remove-PSSession
Remove-PSSnapin
Remove-TypeData
Remove-Variable
Remove-WebApplication
Remove-WebAppPool
Remove-WebBinding
Remove-WebConfigurationBackup
Remove-WebConfigurationLocation
Remove-WebConfigurationLock
Remove-WebConfigurationProperty
Remove-WebGlobalModule
Remove-WebHandler
Remove-WebManagedModule
Remove-Website
Remove-WebVirtualDirectory
Remove-WindowsDriver
Remove-WindowsPackage
Remove-WmiObject
Remove-WSManInstance
Rename-Computer
Rename-Item
Rename-ItemProperty
Rename-WebConfigurationLocation
Repair-WindowsImage
Reset-ComputerMachinePassword
Resolve-DnsName
Resolve-Path
Restart-Computer
Restart-Service
Restart-WebAppPool
Restart-WebItem
Restore-Computer
Restore-WebConfiguration
Resume-BitsTransfer
Resume-Job
Resume-MsmqOutgoingQueue
Resume-Service
Save-Help
Save-WindowsImage
Select-Object
Select-String
Select-WebConfiguration
Select-Xml
Send-DtcDiagnosticTransaction
Send-MailMessage
Send-MsmqQueue
Set-Acl
Set-Alias
Set-AppLockerPolicy
Set-AuthenticodeSignature
Set-BitsTransfer
Set-CertificateAutoEnrollmentPolicy
Set-CimInstance
Set-Content
Set-Culture
Set-Date
Set-ExecutionPolicy
Set-Item
Set-ItemProperty
Set-JobTrigger
Set-KdsConfiguration
Set-Location
Set-MsmqQueue
Set-MsmqQueueACL
Set-MsmqQueueManager
Set-MsmqQueueManagerACL
Set-PSBreakpoint