Created
November 30, 2012 09:53
-
-
Save sepich/4174861 to your computer and use it in GitHub Desktop.
akelpad powershell
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;----------------------------------------------; | |
; Coder plugin syntax file ; | |
; Powershell by i@sepa.spb.ru ; | |
; v30.11.12 ; | |
;----------------------------------------------; | |
;Colors | |
; Color need to be in #RRGGBB format. | |
; If color equal to zero, then color ignored. | |
; | |
;Font styles | |
; 0 ignored. | |
; 1 normal. | |
; 2 bold. | |
; 3 italic. | |
; 4 bold italic. | |
; | |
;For comfort file viewing/editing set tab size to 8 or higher. | |
Files: | |
;========== | |
;File types | |
;========== | |
*.ps1 | |
;----------------------------------------------; | |
; HighLight ; | |
;----------------------------------------------; | |
;Flags (sum of the members) | |
; 1 case sensitive. | |
; 2 word is a composition of characters ("Words:" section only). Example: "0123456789" - highlight words that contain only digits. | |
; 4 quote end required ("Quotes:" section only). | |
; 8 quote start string is ignored and last meet delimiter used as quote start ("Quotes:" section only). | |
; 16 quote end string is ignored and first meet delimiter used as quote end ("Quotes:" section only). | |
; 32 don't highlight quote start ("Quotes:" section only). | |
; 64 don't highlight quote end ("Quotes:" section only). | |
; 128 don't catch and don't highlight quote start ("Quotes:" section only). | |
; 256 don't catch and don't highlight quote end ("Quotes:" section only). | |
; 512 quote start, delimiter or word located at line start. | |
; 1024 quote end, delimiter or word located at line end. | |
; 2048 quote start is surrounded with delimiters ("Quotes:" section only). | |
; 4096 quote end is surrounded with delimiters ("Quotes:" section only). | |
; 8192 quote doesn't contain delimiters ("Quotes:" section only). | |
; 16384 only quote start string is catched ("Quotes:" section only). | |
Font: | |
;================================================================= | |
;FontStyle FontSize FaceName | |
;================================================================= | |
${HighLight_FontStyle} ${HighLight_FontSize} ${HighLight_FaceName} | |
Colors: | |
;============================================================================================================================================================================================================================================================================================================================================================================================================================= | |
;BasicTextColor BasicBkColor SelTextColor SelBkColor LineTextColor LineBkColor LineBorderColor AltTextColor AltBkColor AltBorderColor ColumnColor MarkerColor CaretColor UrlColor ActiveUrlColor VisitUrlColor | |
;============================================================================================================================================================================================================================================================================================================================================================================================================================= | |
${HighLight_BasicTextColor} ${HighLight_BasicBkColor} ${HighLight_SelTextColor} ${HighLight_SelBkColor} ${HighLight_LineTextColor} ${HighLight_LineBkColor} ${HighLight_LineBorderColor} ${HighLight_AltTextColor} ${HighLight_AltBkColor} ${HighLight_AltBorderColor} ${HighLight_ColumnColor} ${HighLight_MarkerColor} ${HighLight_CaretColor} ${HighLight_UrlColor} ${HighLight_ActiveUrlColor} ${HighLight_VisitUrlColor} | |
BkImage: | |
;================================================== | |
;BkImageFile BkImageAlpha | |
;================================================== | |
${HighLight_BkImageFile} ${HighLight_BkImageAlpha} | |
AutoMark: | |
;==================================================================================================================== | |
;AutoMarkFlags AutoMarkFontStyle AutoMarkTextColor AutoMarkBkColor | |
;==================================================================================================================== | |
${HighLight_AutoMarkFlags} ${HighLight_AutoMarkFontStyle} ${HighLight_AutoMarkTextColor} ${HighLight_AutoMarkBkColor} | |
Quotes: | |
;====================================================================== | |
;Flags Font Color Color Quote Quote Escape Quote Quote | |
; style text bkgrnd start end char include exclude | |
;====================================================================== | |
;5=1+4 | |
5 1 ${STR} 0 `"` `"` "`" "" "" | |
;5=1+4 | |
5 1 ${STR} 0 "'" "'" "`" "" "" | |
;5=1+4 heredoc | |
5 1 ${STR} 0 '@"' '"@' "`" "" "" | |
;1=1 | |
1 3 ${COMM} 0 "#" "" "" "" "" | |
1 1 ${TYPE} 0 "[" "]" "" "" "" | |
;401=1+16+128+256 | |
401 2 ${VAR} 0 "$" "" "" "" "" | |
QuotesRE: | |
;========================================================================================= | |
;Flags Pattern \BackRef=(FontStyle,ColorText,ColorBk) \BackRef=... | |
;========================================================================================= | |
;0 `(")([^"\\]*(\\.[^"\\]*)*)(")` `\1=(0,${DEL1},0) \2=(3,${STR},0) \4=(0,${DEL1},0)` | |
Delimiters: | |
;====================================== | |
;Flags Font Color Color Char(s) | |
; style text bkgrnd | |
;====================================== | |
1 0 0 0 " " | |
1 0 0 0 " " | |
1 0 ${VAR} 0 $ | |
1 0 ${DEL1} 0 ( | |
1 0 ${DEL1} 0 ) | |
1 0 ${DEL2} 0 { | |
1 0 ${DEL2} 0 } | |
1 0 ${DEL2} 0 . | |
1 0 ${DEL2} 0 , | |
1 0 ${DEL2} 0 : | |
1 0 ${DEL2} 0 ; | |
1 0 ${DEL2} 0 ! | |
1 0 ${DEL2} 0 ~ | |
1 0 ${DEL2} 0 | | |
1 0 ${DEL2} 0 = | |
;1 0 ${DEL2} 0 - | |
1 0 ${DEL2} 0 * | |
1 0 ${DEL2} 0 + | |
1 0 ${DEL2} 0 / | |
1 0 ${DEL2} 0 < | |
1 0 ${DEL2} 0 > | |
1 0 ${DEL2} 0 & | |
1 0 ${DEL2} 0 ^ | |
1 0 ${DEL2} 0 [ | |
1 0 ${DEL2} 0 ] | |
Words: | |
;=================================== | |
;Flags Font Color Color Word | |
; style text bkgrnd | |
;=================================== | |
;3=1+2 | |
3 0 ${NUM} 0 "0123456789" | |
;--Conditional-- | |
0 0 ${IF} 0 break | |
0 0 ${IF} 0 continue | |
0 0 ${IF} 0 do | |
0 0 ${IF} 0 else | |
0 0 ${IF} 0 for | |
0 0 ${IF} 0 goto | |
0 0 ${IF} 0 if | |
0 0 ${IF} 0 while | |
0 0 ${IF} 0 return | |
0 0 ${IF} 0 case | |
0 0 ${IF} 0 default | |
0 0 ${IF} 0 switch | |
0 0 ${IF} 0 try | |
0 0 ${IF} 0 catch | |
0 0 ${IF} 0 finally | |
0 0 ${IF} 0 throw | |
0 0 ${IF} 0 function | |
0 0 ${IF} 0 param | |
;--Cmdlets-- | |
0 2 ${OP} 0 % | |
0 2 ${OP} 0 ? | |
0 2 ${OP} 0 ac | |
0 2 ${OP} 0 Add-ProvisionedAppxPackage | |
0 2 ${OP} 0 Add-VMToCluster | |
0 2 ${OP} 0 Add-WindowsFeature | |
0 2 ${OP} 0 Apply-WindowsUnattend | |
0 2 ${OP} 0 asnp | |
0 2 ${OP} 0 blsmba | |
0 2 ${OP} 0 cat | |
0 2 ${OP} 0 cd | |
0 2 ${OP} 0 chdir | |
0 2 ${OP} 0 clc | |
0 2 ${OP} 0 clear | |
0 2 ${OP} 0 clhy | |
0 2 ${OP} 0 cli | |
0 2 ${OP} 0 clp | |
0 2 ${OP} 0 cls | |
0 2 ${OP} 0 clv | |
0 2 ${OP} 0 cnsn | |
0 2 ${OP} 0 compare | |
0 2 ${OP} 0 copy | |
0 2 ${OP} 0 cp | |
0 2 ${OP} 0 cpi | |
0 2 ${OP} 0 cpp | |
0 2 ${OP} 0 cssmbo | |
0 2 ${OP} 0 cssmbse | |
0 2 ${OP} 0 cvpa | |
0 2 ${OP} 0 dbp | |
0 2 ${OP} 0 del | |
0 2 ${OP} 0 diff | |
0 2 ${OP} 0 dir | |
0 2 ${OP} 0 dnsn | |
0 2 ${OP} 0 ebp | |
0 2 ${OP} 0 echo | |
0 2 ${OP} 0 epal | |
0 2 ${OP} 0 epcsv | |
0 2 ${OP} 0 epsn | |
0 2 ${OP} 0 erase | |
0 2 ${OP} 0 etsn | |
0 2 ${OP} 0 Export-DnsServerTrustAnchor | |
0 2 ${OP} 0 exsn | |
0 2 ${OP} 0 fc | |
0 2 ${OP} 0 fl | |
0 2 ${OP} 0 ft | |
0 2 ${OP} 0 fw | |
0 2 ${OP} 0 gal | |
0 2 ${OP} 0 gbp | |
0 2 ${OP} 0 gc | |
0 2 ${OP} 0 gcai | |
0 2 ${OP} 0 gci | |
0 2 ${OP} 0 gcim | |
0 2 ${OP} 0 gcls | |
0 2 ${OP} 0 gcm | |
0 2 ${OP} 0 gcms | |
0 2 ${OP} 0 gcs | |
0 2 ${OP} 0 gdr | |
0 2 ${OP} 0 Get-GPPermissions | |
0 2 ${OP} 0 Get-ProvisionedAppxPackage | |
0 2 ${OP} 0 ghy | |
0 2 ${OP} 0 gi | |
0 2 ${OP} 0 gip | |
0 2 ${OP} 0 gjb | |
0 2 ${OP} 0 gl | |
0 2 ${OP} 0 gm | |
0 2 ${OP} 0 gmo | |
0 2 ${OP} 0 gp | |
0 2 ${OP} 0 gps | |
0 2 ${OP} 0 group | |
0 2 ${OP} 0 grsmba | |
0 2 ${OP} 0 gsmba | |
0 2 ${OP} 0 gsmbc | |
0 2 ${OP} 0 gsmbcc | |
0 2 ${OP} 0 gsmbcn | |
0 2 ${OP} 0 gsmbm | |
0 2 ${OP} 0 gsmbmc | |
0 2 ${OP} 0 gsmbo | |
0 2 ${OP} 0 gsmbs | |
0 2 ${OP} 0 gsmbsc | |
0 2 ${OP} 0 gsmbse | |
0 2 ${OP} 0 gsmbsn | |
0 2 ${OP} 0 gsmbt | |
0 2 ${OP} 0 gsmbw | |
0 2 ${OP} 0 gsn | |
0 2 ${OP} 0 gsnp | |
0 2 ${OP} 0 gsv | |
0 2 ${OP} 0 gu | |
0 2 ${OP} 0 gv | |
0 2 ${OP} 0 gwmi | |
0 2 ${OP} 0 h | |
0 2 ${OP} 0 history | |
0 2 ${OP} 0 icim | |
0 2 ${OP} 0 icm | |
0 2 ${OP} 0 iex | |
0 2 ${OP} 0 ihy | |
0 2 ${OP} 0 ii | |
0 2 ${OP} 0 Initialize-Volume | |
0 2 ${OP} 0 ipal | |
0 2 ${OP} 0 ipcsv | |
0 2 ${OP} 0 ipmo | |
0 2 ${OP} 0 ipsn | |
0 2 ${OP} 0 irm | |
0 2 ${OP} 0 ise | |
0 2 ${OP} 0 iwmi | |
0 2 ${OP} 0 iwr | |
0 2 ${OP} 0 kill | |
0 2 ${OP} 0 lp | |
0 2 ${OP} 0 ls | |
0 2 ${OP} 0 man | |
0 2 ${OP} 0 md | |
0 2 ${OP} 0 measure | |
0 2 ${OP} 0 mi | |
0 2 ${OP} 0 mount | |
0 2 ${OP} 0 move | |
0 2 ${OP} 0 mp | |
0 2 ${OP} 0 msmbw | |
0 2 ${OP} 0 mv | |
0 2 ${OP} 0 nal | |
0 2 ${OP} 0 ncim | |
0 2 ${OP} 0 ncms | |
0 2 ${OP} 0 ncso | |
0 2 ${OP} 0 ndr | |
0 2 ${OP} 0 ni | |
0 2 ${OP} 0 nmo | |
0 2 ${OP} 0 npssc | |
0 2 ${OP} 0 nsmbm | |
0 2 ${OP} 0 nsmbs | |
0 2 ${OP} 0 nsmbt | |
0 2 ${OP} 0 nsn | |
0 2 ${OP} 0 nv | |
0 2 ${OP} 0 nwsn | |
0 2 ${OP} 0 ogv | |
0 2 ${OP} 0 oh | |
0 2 ${OP} 0 popd | |
0 2 ${OP} 0 ps | |
0 2 ${OP} 0 pushd | |
0 2 ${OP} 0 pwd | |
0 2 ${OP} 0 r | |
0 2 ${OP} 0 rbp | |
0 2 ${OP} 0 rcie | |
0 2 ${OP} 0 rcim | |
0 2 ${OP} 0 rcjb | |
0 2 ${OP} 0 rcms | |
0 2 ${OP} 0 rcsn | |
0 2 ${OP} 0 rd | |
0 2 ${OP} 0 rdr | |
0 2 ${OP} 0 Remove-ProvisionedAppxPackage | |
0 2 ${OP} 0 Remove-VMFromCluster | |
0 2 ${OP} 0 Remove-WindowsFeature | |
0 2 ${OP} 0 ren | |
0 2 ${OP} 0 ri | |
0 2 ${OP} 0 rjb | |
0 2 ${OP} 0 rksmba | |
0 2 ${OP} 0 rm | |
0 2 ${OP} 0 rmdir | |
0 2 ${OP} 0 rmo | |
0 2 ${OP} 0 rni | |
0 2 ${OP} 0 rnp | |
0 2 ${OP} 0 rp | |
0 2 ${OP} 0 rsmbm | |
0 2 ${OP} 0 rsmbs | |
0 2 ${OP} 0 rsmbt | |
0 2 ${OP} 0 rsn | |
0 2 ${OP} 0 rsnp | |
0 2 ${OP} 0 rujb | |
0 2 ${OP} 0 rv | |
0 2 ${OP} 0 rvpa | |
0 2 ${OP} 0 rwmi | |
0 2 ${OP} 0 sajb | |
0 2 ${OP} 0 sal | |
0 2 ${OP} 0 saps | |
0 2 ${OP} 0 sasv | |
0 2 ${OP} 0 sbp | |
0 2 ${OP} 0 sc | |
0 2 ${OP} 0 scim | |
0 2 ${OP} 0 select | |
0 2 ${OP} 0 set | |
0 2 ${OP} 0 Set-GPPermissions | |
0 2 ${OP} 0 shcm | |
0 2 ${OP} 0 si | |
0 2 ${OP} 0 sl | |
0 2 ${OP} 0 sleep | |
0 2 ${OP} 0 sls | |
0 2 ${OP} 0 sort | |
0 2 ${OP} 0 sp | |
0 2 ${OP} 0 spjb | |
0 2 ${OP} 0 spps | |
0 2 ${OP} 0 spsv | |
0 2 ${OP} 0 ssmbcc | |
0 2 ${OP} 0 ssmbs | |
0 2 ${OP} 0 ssmbsc | |
0 2 ${OP} 0 start | |
0 2 ${OP} 0 sujb | |
0 2 ${OP} 0 sv | |
0 2 ${OP} 0 swmi | |
0 2 ${OP} 0 tee | |
0 2 ${OP} 0 trcm | |
0 2 ${OP} 0 type | |
0 2 ${OP} 0 udsmbmc | |
0 2 ${OP} 0 ulsmba | |
0 2 ${OP} 0 where | |
0 2 ${OP} 0 wjb | |
0 2 ${OP} 0 write | |
0 2 ${OP} 0 Add-ProvisionedAppxPackage | |
0 2 ${OP} 0 Add-VMToCluster | |
0 2 ${OP} 0 Add-WindowsFeature | |
0 2 ${OP} 0 Apply-WindowsUnattend | |
0 2 ${OP} 0 Export-DnsServerTrustAnchor | |
0 2 ${OP} 0 Get-GPPermissions | |
0 2 ${OP} 0 Get-ProvisionedAppxPackage | |
0 2 ${OP} 0 Initialize-Volume | |
0 2 ${OP} 0 Remove-ProvisionedAppxPackage | |
0 2 ${OP} 0 Remove-VMFromCluster | |
0 2 ${OP} 0 Remove-WindowsFeature | |
0 2 ${OP} 0 Set-GPPermissions | |
0 2 ${OP} 0 Add-BCDataCacheExtension | |
0 2 ${OP} 0 Add-BitLockerKeyProtector | |
0 2 ${OP} 0 Add-DAAppServer | |
0 2 ${OP} 0 Add-DAClient | |
0 2 ${OP} 0 Add-DAClientDnsConfiguration | |
0 2 ${OP} 0 Add-DAEntryPoint | |
0 2 ${OP} 0 Add-DAMgmtServer | |
0 2 ${OP} 0 Add-DhcpServerInDC | |
0 2 ${OP} 0 Add-DhcpServerv4Class | |
0 2 ${OP} 0 Add-DhcpServerv4ExclusionRange | |
0 2 ${OP} 0 Add-DhcpServerv4Failover | |
0 2 ${OP} 0 Add-DhcpServerv4FailoverScope | |
0 2 ${OP} 0 Add-DhcpServerv4Filter | |
0 2 ${OP} 0 Add-DhcpServerv4Lease | |
0 2 ${OP} 0 Add-DhcpServerv4OptionDefinition | |
0 2 ${OP} 0 Add-DhcpServerv4Policy | |
0 2 ${OP} 0 Add-DhcpServerv4PolicyIPRange | |
0 2 ${OP} 0 Add-DhcpServerv4Reservation | |
0 2 ${OP} 0 Add-DhcpServerv4Scope | |
0 2 ${OP} 0 Add-DhcpServerv4Superscope | |
0 2 ${OP} 0 Add-DhcpServerv6Class | |
0 2 ${OP} 0 Add-DhcpServerv6ExclusionRange | |
0 2 ${OP} 0 Add-DhcpServerv6Lease | |
0 2 ${OP} 0 Add-DhcpServerv6OptionDefinition | |
0 2 ${OP} 0 Add-DhcpServerv6Reservation | |
0 2 ${OP} 0 Add-DhcpServerv6Scope | |
0 2 ${OP} 0 Add-DnsClientNrptRule | |
0 2 ${OP} 0 Add-DnsServerConditionalForwarderZone | |
0 2 ${OP} 0 Add-DnsServerDirectoryPartition | |
0 2 ${OP} 0 Add-DnsServerForwarder | |
0 2 ${OP} 0 Add-DnsServerPrimaryZone | |
0 2 ${OP} 0 Add-DnsServerResourceRecord | |
0 2 ${OP} 0 Add-DnsServerResourceRecordA | |
0 2 ${OP} 0 Add-DnsServerResourceRecordAAAA | |
0 2 ${OP} 0 Add-DnsServerResourceRecordCName | |
0 2 ${OP} 0 Add-DnsServerResourceRecordDnsKey | |
0 2 ${OP} 0 Add-DnsServerResourceRecordDS | |
0 2 ${OP} 0 Add-DnsServerResourceRecordMX | |
0 2 ${OP} 0 Add-DnsServerResourceRecordPtr | |
0 2 ${OP} 0 Add-DnsServerRootHint | |
0 2 ${OP} 0 Add-DnsServerSecondaryZone | |
0 2 ${OP} 0 Add-DnsServerSigningKey | |
0 2 ${OP} 0 Add-DnsServerStubZone | |
0 2 ${OP} 0 Add-DnsServerTrustAnchor | |
0 2 ${OP} 0 Add-DnsServerZoneDelegation | |
0 2 ${OP} 0 Add-DtcClusterTMMapping | |
0 2 ${OP} 0 Add-EventHandler | |
0 2 ${OP} 0 Add-InitiatorIdToMaskingSet | |
0 2 ${OP} 0 Add-NetIPHttpsCertBinding | |
0 2 ${OP} 0 Add-NetLbfoTeamMember | |
0 2 ${OP} 0 Add-NetLbfoTeamNic | |
0 2 ${OP} 0 Add-NetSwitchTeamMember | |
0 2 ${OP} 0 Add-OdbcDsn | |
0 2 ${OP} 0 Add-PartitionAccessPath | |
0 2 ${OP} 0 Add-PhysicalDisk | |
0 2 ${OP} 0 Add-Printer | |
0 2 ${OP} 0 Add-PrinterDriver | |
0 2 ${OP} 0 Add-PrinterPort | |
0 2 ${OP} 0 Add-RDServer | |
0 2 ${OP} 0 Add-RDSessionHost | |
0 2 ${OP} 0 Add-RDVirtualDesktopToCollection | |
0 2 ${OP} 0 Add-RemoteAccessLoadBalancerNode | |
0 2 ${OP} 0 Add-RemoteAccessRadius | |
0 2 ${OP} 0 Add-TargetPortToMaskingSet | |
0 2 ${OP} 0 Add-VirtualDiskToMaskingSet | |
0 2 ${OP} 0 Add-VpnConnection | |
0 2 ${OP} 0 Add-VpnIPAddressRange | |
0 2 ${OP} 0 Add-VpnS2SInterface | |
0 2 ${OP} 0 Backup-BitLockerKeyProtector | |
0 2 ${OP} 0 Backup-DhcpServer | |
0 2 ${OP} 0 Block-SmbShareAccess | |
0 2 ${OP} 0 Clear-BCCache | |
0 2 ${OP} 0 Clear-BitLockerAutoUnlock | |
0 2 ${OP} 0 Clear-Disk | |
0 2 ${OP} 0 Clear-DnsClientCache | |
0 2 ${OP} 0 Clear-DnsServerCache | |
0 2 ${OP} 0 Clear-DnsServerStatistics | |
0 2 ${OP} 0 Clear-Host | |
0 2 ${OP} 0 Clear-RemoteAccessInboxAccountingStore | |
0 2 ${OP} 0 Clear-VpnS2SInterfaceStatistics | |
0 2 ${OP} 0 Close-SmbOpenFile | |
0 2 ${OP} 0 Close-SmbSession | |
0 2 ${OP} 0 Connect-IscsiTarget | |
0 2 ${OP} 0 Connect-VirtualDisk | |
0 2 ${OP} 0 Connect-VpnS2SInterface | |
0 2 ${OP} 0 ConvertTo-DnsServerPrimaryZone | |
0 2 ${OP} 0 ConvertTo-DnsServerSecondaryZone | |
0 2 ${OP} 0 Copy-NetFirewallRule | |
0 2 ${OP} 0 Copy-NetIPsecMainModeCryptoSet | |
0 2 ${OP} 0 Copy-NetIPsecMainModeRule | |
0 2 ${OP} 0 Copy-NetIPsecPhase1AuthSet | |
0 2 ${OP} 0 Copy-NetIPsecPhase2AuthSet | |
0 2 ${OP} 0 Copy-NetIPsecQuickModeCryptoSet | |
0 2 ${OP} 0 Copy-NetIPsecRule | |
0 2 ${OP} 0 Disable-BC | |
0 2 ${OP} 0 Disable-BCDowngrading | |
0 2 ${OP} 0 Disable-BCServeOnBattery | |
0 2 ${OP} 0 Disable-BitLocker | |
0 2 ${OP} 0 Disable-BitLockerAutoUnlock | |
0 2 ${OP} 0 Disable-DAManualEntryPointSelection | |
0 2 ${OP} 0 Disable-DAMultiSite | |
0 2 ${OP} 0 Disable-DAOtpAuthentication | |
0 2 ${OP} 0 Disable-DedupVolume | |
0 2 ${OP} 0 Disable-DnsServerSigningKeyRollover | |
0 2 ${OP} 0 Disable-MMAgent | |
0 2 ${OP} 0 Disable-NetAdapter | |
0 2 ${OP} 0 Disable-NetAdapterBinding | |
0 2 ${OP} 0 Disable-NetAdapterChecksumOffload | |
0 2 ${OP} 0 Disable-NetAdapterEncapsulatedPacketTaskOffload | |
0 2 ${OP} 0 Disable-NetAdapterIPsecOffload | |
0 2 ${OP} 0 Disable-NetAdapterLso | |
0 2 ${OP} 0 Disable-NetAdapterPowerManagement | |
0 2 ${OP} 0 Disable-NetAdapterQos | |
0 2 ${OP} 0 Disable-NetAdapterRdma | |
0 2 ${OP} 0 Disable-NetAdapterRsc | |
0 2 ${OP} 0 Disable-NetAdapterRss | |
0 2 ${OP} 0 Disable-NetAdapterSriov | |
0 2 ${OP} 0 Disable-NetAdapterVmq | |
0 2 ${OP} 0 Disable-NetDnsTransitionConfiguration | |
0 2 ${OP} 0 Disable-NetFirewallRule | |
0 2 ${OP} 0 Disable-NetIPHttpsProfile | |
0 2 ${OP} 0 Disable-NetIPsecMainModeRule | |
0 2 ${OP} 0 Disable-NetIPsecRule | |
0 2 ${OP} 0 Disable-NetNatTransitionConfiguration | |
0 2 ${OP} 0 Disable-OdbcPerfCounter | |
0 2 ${OP} 0 Disable-PhysicalDiskIndication | |
0 2 ${OP} 0 Disable-PSTrace | |
0 2 ${OP} 0 Disable-PSWSManCombinedTrace | |
0 2 ${OP} 0 Disable-RDVirtualDesktopADMachineAccountReuse | |
0 2 ${OP} 0 Disable-ScheduledTask | |
0 2 ${OP} 0 Disable-ServerManagerStandardUserRemoting | |
0 2 ${OP} 0 Disable-WdacBidTrace | |
0 2 ${OP} 0 Disable-WSManTrace | |
0 2 ${OP} 0 Disconnect-IscsiTarget | |
0 2 ${OP} 0 Disconnect-NfsSession | |
0 2 ${OP} 0 Disconnect-RDUser | |
0 2 ${OP} 0 Disconnect-VirtualDisk | |
0 2 ${OP} 0 Disconnect-VpnS2SInterface | |
0 2 ${OP} 0 Disconnect-VpnUser | |
0 2 ${OP} 0 Dismount-DiskImage | |
0 2 ${OP} 0 elevateprocess | |
0 2 ${OP} 0 Enable-BCDistributed | |
0 2 ${OP} 0 Enable-BCDowngrading | |
0 2 ${OP} 0 Enable-BCHostedClient | |
0 2 ${OP} 0 Enable-BCHostedServer | |
0 2 ${OP} 0 Enable-BCLocal | |
0 2 ${OP} 0 Enable-BCServeOnBattery | |
0 2 ${OP} 0 Enable-BitLocker | |
0 2 ${OP} 0 Enable-BitLockerAutoUnlock | |
0 2 ${OP} 0 Enable-DAManualEntryPointSelection | |
0 2 ${OP} 0 Enable-DAMultiSite | |
0 2 ${OP} 0 Enable-DAOtpAuthentication | |
0 2 ${OP} 0 Enable-DedupVolume | |
0 2 ${OP} 0 Enable-DnsServerSigningKeyRollover | |
0 2 ${OP} 0 Enable-MMAgent | |
0 2 ${OP} 0 Enable-NetAdapter | |
0 2 ${OP} 0 Enable-NetAdapterBinding | |
0 2 ${OP} 0 Enable-NetAdapterChecksumOffload | |
0 2 ${OP} 0 Enable-NetAdapterEncapsulatedPacketTaskOffload | |
0 2 ${OP} 0 Enable-NetAdapterIPsecOffload | |
0 2 ${OP} 0 Enable-NetAdapterLso | |
0 2 ${OP} 0 Enable-NetAdapterPowerManagement | |
0 2 ${OP} 0 Enable-NetAdapterQos | |
0 2 ${OP} 0 Enable-NetAdapterRdma | |
0 2 ${OP} 0 Enable-NetAdapterRsc | |
0 2 ${OP} 0 Enable-NetAdapterRss | |
0 2 ${OP} 0 Enable-NetAdapterSriov | |
0 2 ${OP} 0 Enable-NetAdapterVmq | |
0 2 ${OP} 0 Enable-NetDnsTransitionConfiguration | |
0 2 ${OP} 0 Enable-NetFirewallRule | |
0 2 ${OP} 0 Enable-NetIPHttpsProfile | |
0 2 ${OP} 0 Enable-NetIPsecMainModeRule | |
0 2 ${OP} 0 Enable-NetIPsecRule | |
0 2 ${OP} 0 Enable-NetNatTransitionConfiguration | |
0 2 ${OP} 0 Enable-OdbcPerfCounter | |
0 2 ${OP} 0 Enable-PhysicalDiskIndication | |
0 2 ${OP} 0 Enable-PSTrace | |
0 2 ${OP} 0 Enable-PSWSManCombinedTrace | |
0 2 ${OP} 0 Enable-RDVirtualDesktopADMachineAccountReuse | |
0 2 ${OP} 0 Enable-ScheduledTask | |
0 2 ${OP} 0 Enable-ServerManagerStandardUserRemoting | |
0 2 ${OP} 0 Enable-WdacBidTrace | |
0 2 ${OP} 0 Enable-WSManTrace | |
0 2 ${OP} 0 Export-BCCachePackage | |
0 2 ${OP} 0 Export-BCSecretKey | |
0 2 ${OP} 0 Export-DhcpServer | |
0 2 ${OP} 0 Export-DnsServerDnsSecPublicKey | |
0 2 ${OP} 0 Export-DnsServerZone | |
0 2 ${OP} 0 Export-RDPersonalVirtualDesktopAssignment | |
0 2 ${OP} 0 Export-ScheduledTask | |
0 2 ${OP} 0 Format-Volume | |
0 2 ${OP} 0 Get-AppxLastError | |
0 2 ${OP} 0 Get-AppxLog | |
0 2 ${OP} 0 Get-BCClientConfiguration | |
0 2 ${OP} 0 Get-BCContentServerConfiguration | |
0 2 ${OP} 0 Get-BCDataCache | |
0 2 ${OP} 0 Get-BCDataCacheExtension | |
0 2 ${OP} 0 Get-BCHashCache | |
0 2 ${OP} 0 Get-BCHostedCacheServerConfiguration | |
0 2 ${OP} 0 Get-BCNetworkConfiguration | |
0 2 ${OP} 0 Get-BCStatus | |
0 2 ${OP} 0 Get-BitLockerVolume | |
0 2 ${OP} 0 Get-ClusteredScheduledTask | |
0 2 ${OP} 0 Get-CounterSample | |
0 2 ${OP} 0 Get-DAAppServer | |
0 2 ${OP} 0 Get-DAClient | |
0 2 ${OP} 0 Get-DAClientDnsConfiguration | |
0 2 ${OP} 0 Get-DAClientExperienceConfiguration | |
0 2 ${OP} 0 Get-DAConnectionStatus | |
0 2 ${OP} 0 Get-DAEntryPoint | |
0 2 ${OP} 0 Get-DAEntryPointDC | |
0 2 ${OP} 0 Get-DAEntryPointTableItem | |
0 2 ${OP} 0 Get-DAMgmtServer | |
0 2 ${OP} 0 Get-DAMultiSite | |
0 2 ${OP} 0 Get-DANetworkLocationServer | |
0 2 ${OP} 0 Get-DAOtpAuthentication | |
0 2 ${OP} 0 Get-DAServer | |
0 2 ${OP} 0 Get-DedupJob | |
0 2 ${OP} 0 Get-DedupMetadata | |
0 2 ${OP} 0 Get-DedupSchedule | |
0 2 ${OP} 0 Get-DedupStatus | |
0 2 ${OP} 0 Get-DedupVolume | |
0 2 ${OP} 0 Get-DfsnAccess | |
0 2 ${OP} 0 Get-DfsnFolder | |
0 2 ${OP} 0 Get-DfsnFolderTarget | |
0 2 ${OP} 0 Get-DfsnRoot | |
0 2 ${OP} 0 Get-DfsnRootTarget | |
0 2 ${OP} 0 Get-DfsnServerConfiguration | |
0 2 ${OP} 0 Get-DhcpServerAuditLog | |
0 2 ${OP} 0 Get-DhcpServerDatabase | |
0 2 ${OP} 0 Get-DhcpServerInDC | |
0 2 ${OP} 0 Get-DhcpServerSetting | |
0 2 ${OP} 0 Get-DhcpServerv4Binding | |
0 2 ${OP} 0 Get-DhcpServerv4Class | |
0 2 ${OP} 0 Get-DhcpServerv4DnsSetting | |
0 2 ${OP} 0 Get-DhcpServerv4ExclusionRange | |
0 2 ${OP} 0 Get-DhcpServerv4Failover | |
0 2 ${OP} 0 Get-DhcpServerv4Filter | |
0 2 ${OP} 0 Get-DhcpServerv4FilterList | |
0 2 ${OP} 0 Get-DhcpServerv4FreeIPAddress | |
0 2 ${OP} 0 Get-DhcpServerv4Lease | |
0 2 ${OP} 0 Get-DhcpServerv4OptionDefinition | |
0 2 ${OP} 0 Get-DhcpServerv4OptionValue | |
0 2 ${OP} 0 Get-DhcpServerv4Policy | |
0 2 ${OP} 0 Get-DhcpServerv4PolicyIPRange | |
0 2 ${OP} 0 Get-DhcpServerv4Reservation | |
0 2 ${OP} 0 Get-DhcpServerv4Scope | |
0 2 ${OP} 0 Get-DhcpServerv4ScopeStatistics | |
0 2 ${OP} 0 Get-DhcpServerv4Statistics | |
0 2 ${OP} 0 Get-DhcpServerv4Superscope | |
0 2 ${OP} 0 Get-DhcpServerv6Binding | |
0 2 ${OP} 0 Get-DhcpServerv6Class | |
0 2 ${OP} 0 Get-DhcpServerv6DnsSetting | |
0 2 ${OP} 0 Get-DhcpServerv6ExclusionRange | |
0 2 ${OP} 0 Get-DhcpServerv6FreeIPAddress | |
0 2 ${OP} 0 Get-DhcpServerv6Lease | |
0 2 ${OP} 0 Get-DhcpServerv6OptionDefinition | |
0 2 ${OP} 0 Get-DhcpServerv6OptionValue | |
0 2 ${OP} 0 Get-DhcpServerv6Reservation | |
0 2 ${OP} 0 Get-DhcpServerv6Scope | |
0 2 ${OP} 0 Get-DhcpServerv6ScopeStatistics | |
0 2 ${OP} 0 Get-DhcpServerv6StatelessStatistics | |
0 2 ${OP} 0 Get-DhcpServerv6StatelessStore | |
0 2 ${OP} 0 Get-DhcpServerv6Statistics | |
0 2 ${OP} 0 Get-DhcpServerVersion | |
0 2 ${OP} 0 Get-Disk | |
0 2 ${OP} 0 Get-DiskImage | |
0 2 ${OP} 0 Get-DnsClient | |
0 2 ${OP} 0 Get-DnsClientCache | |
0 2 ${OP} 0 Get-DnsClientGlobalSetting | |
0 2 ${OP} 0 Get-DnsClientNrptGlobal | |
0 2 ${OP} 0 Get-DnsClientNrptPolicy | |
0 2 ${OP} 0 Get-DnsClientNrptRule | |
0 2 ${OP} 0 Get-DnsClientServerAddress | |
0 2 ${OP} 0 Get-DnsServer | |
0 2 ${OP} 0 Get-DnsServerCache | |
0 2 ${OP} 0 Get-DnsServerDiagnostics | |
0 2 ${OP} 0 Get-DnsServerDirectoryPartition | |
0 2 ${OP} 0 Get-DnsServerDnsSecZoneSetting | |
0 2 ${OP} 0 Get-DnsServerDsSetting | |
0 2 ${OP} 0 Get-DnsServerEDns | |
0 2 ${OP} 0 Get-DnsServerForwarder | |
0 2 ${OP} 0 Get-DnsServerGlobalNameZone | |
0 2 ${OP} 0 Get-DnsServerGlobalQueryBlockList | |
0 2 ${OP} 0 Get-DnsServerRecursion | |
0 2 ${OP} 0 Get-DnsServerResourceRecord | |
0 2 ${OP} 0 Get-DnsServerRootHint | |
0 2 ${OP} 0 Get-DnsServerScavenging | |
0 2 ${OP} 0 Get-DnsServerSetting | |
0 2 ${OP} 0 Get-DnsServerSigningKey | |
0 2 ${OP} 0 Get-DnsServerStatistics | |
0 2 ${OP} 0 Get-DnsServerTrustAnchor | |
0 2 ${OP} 0 Get-DnsServerTrustPoint | |
0 2 ${OP} 0 Get-DnsServerZone | |
0 2 ${OP} 0 Get-DnsServerZoneAging | |
0 2 ${OP} 0 Get-DnsServerZoneDelegation | |
0 2 ${OP} 0 Get-Dtc | |
0 2 ${OP} 0 Get-DtcAdvancedHostSetting | |
0 2 ${OP} 0 Get-DtcAdvancedSetting | |
0 2 ${OP} 0 Get-DtcClusterDefault | |
0 2 ${OP} 0 Get-DtcClusterTMMapping | |
0 2 ${OP} 0 Get-DtcDefault | |
0 2 ${OP} 0 Get-DtcLog | |
0 2 ${OP} 0 Get-DtcNetworkSetting | |
0 2 ${OP} 0 Get-DtcTransaction | |
0 2 ${OP} 0 Get-DtcTransactionsStatistics | |
0 2 ${OP} 0 Get-DtcTransactionsTraceSession | |
0 2 ${OP} 0 Get-DtcTransactionsTraceSetting | |
0 2 ${OP} 0 Get-FileIntegrity | |
0 2 ${OP} 0 Get-InitiatorId | |
0 2 ${OP} 0 Get-InitiatorPort | |
0 2 ${OP} 0 Get-IscsiConnection | |
0 2 ${OP} 0 Get-IscsiSession | |
0 2 ${OP} 0 Get-IscsiTarget | |
0 2 ${OP} 0 Get-IscsiTargetPortal | |
0 2 ${OP} 0 Get-IseSnippet | |
0 2 ${OP} 0 Get-LogProperties | |
0 2 ${OP} 0 Get-MaskingSet | |
0 2 ${OP} 0 Get-MMAgent | |
0 2 ${OP} 0 Get-NCSIPolicyConfiguration | |
0 2 ${OP} 0 Get-Net6to4Configuration | |
0 2 ${OP} 0 Get-NetAdapter | |
0 2 ${OP} 0 Get-NetAdapterAdvancedProperty | |
0 2 ${OP} 0 Get-NetAdapterBinding | |
0 2 ${OP} 0 Get-NetAdapterChecksumOffload | |
0 2 ${OP} 0 Get-NetAdapterEncapsulatedPacketTaskOffload | |
0 2 ${OP} 0 Get-NetAdapterHardwareInfo | |
0 2 ${OP} 0 Get-NetAdapterIPsecOffload | |
0 2 ${OP} 0 Get-NetAdapterLso | |
0 2 ${OP} 0 Get-NetAdapterPowerManagement | |
0 2 ${OP} 0 Get-NetAdapterQos | |
0 2 ${OP} 0 Get-NetAdapterRdma | |
0 2 ${OP} 0 Get-NetAdapterRsc | |
0 2 ${OP} 0 Get-NetAdapterRss | |
0 2 ${OP} 0 Get-NetAdapterSriov | |
0 2 ${OP} 0 Get-NetAdapterSriovVf | |
0 2 ${OP} 0 Get-NetAdapterStatistics | |
0 2 ${OP} 0 Get-NetAdapterVmq | |
0 2 ${OP} 0 Get-NetAdapterVMQQueue | |
0 2 ${OP} 0 Get-NetAdapterVPort | |
0 2 ${OP} 0 Get-NetConnectionProfile | |
0 2 ${OP} 0 Get-NetDnsTransitionConfiguration | |
0 2 ${OP} 0 Get-NetDnsTransitionMonitoring | |
0 2 ${OP} 0 Get-NetFirewallAddressFilter | |
0 2 ${OP} 0 Get-NetFirewallApplicationFilter | |
0 2 ${OP} 0 Get-NetFirewallInterfaceFilter | |
0 2 ${OP} 0 Get-NetFirewallInterfaceTypeFilter | |
0 2 ${OP} 0 Get-NetFirewallPortFilter | |
0 2 ${OP} 0 Get-NetFirewallProfile | |
0 2 ${OP} 0 Get-NetFirewallRule | |
0 2 ${OP} 0 Get-NetFirewallSecurityFilter | |
0 2 ${OP} 0 Get-NetFirewallServiceFilter | |
0 2 ${OP} 0 Get-NetFirewallSetting | |
0 2 ${OP} 0 Get-NetIPAddress | |
0 2 ${OP} 0 Get-NetIPConfiguration | |
0 2 ${OP} 0 Get-NetIPHttpsConfiguration | |
0 2 ${OP} 0 Get-NetIPHttpsState | |
0 2 ${OP} 0 Get-NetIPInterface | |
0 2 ${OP} 0 Get-NetIPsecDospSetting | |
0 2 ${OP} 0 Get-NetIPsecMainModeCryptoSet | |
0 2 ${OP} 0 Get-NetIPsecMainModeRule | |
0 2 ${OP} 0 Get-NetIPsecMainModeSA | |
0 2 ${OP} 0 Get-NetIPsecPhase1AuthSet | |
0 2 ${OP} 0 Get-NetIPsecPhase2AuthSet | |
0 2 ${OP} 0 Get-NetIPsecQuickModeCryptoSet | |
0 2 ${OP} 0 Get-NetIPsecQuickModeSA | |
0 2 ${OP} 0 Get-NetIPsecRule | |
0 2 ${OP} 0 Get-NetIPv4Protocol | |
0 2 ${OP} 0 Get-NetIPv6Protocol | |
0 2 ${OP} 0 Get-NetIsatapConfiguration | |
0 2 ${OP} 0 Get-NetLbfoTeam | |
0 2 ${OP} 0 Get-NetLbfoTeamMember | |
0 2 ${OP} 0 Get-NetLbfoTeamNic | |
0 2 ${OP} 0 Get-NetNatTransitionConfiguration | |
0 2 ${OP} 0 Get-NetNatTransitionMonitoring | |
0 2 ${OP} 0 Get-NetNeighbor | |
0 2 ${OP} 0 Get-NetOffloadGlobalSetting | |
0 2 ${OP} 0 Get-NetPrefixPolicy | |
0 2 ${OP} 0 Get-NetQosPolicy | |
0 2 ${OP} 0 Get-NetRoute | |
0 2 ${OP} 0 Get-NetSwitchTeam | |
0 2 ${OP} 0 Get-NetSwitchTeamMember | |
0 2 ${OP} 0 Get-NetTCPConnection | |
0 2 ${OP} 0 Get-NetTCPSetting | |
0 2 ${OP} 0 Get-NetTeredoConfiguration | |
0 2 ${OP} 0 Get-NetTeredoState | |
0 2 ${OP} 0 Get-NetTransportFilter | |
0 2 ${OP} 0 Get-NetUDPEndpoint | |
0 2 ${OP} 0 Get-NetUDPSetting | |
0 2 ${OP} 0 Get-NetVirtualizationCustomerRoute | |
0 2 ${OP} 0 Get-NetVirtualizationGlobal | |
0 2 ${OP} 0 Get-NetVirtualizationLookupRecord | |
0 2 ${OP} 0 Get-NetVirtualizationProviderAddress | |
0 2 ${OP} 0 Get-NetVirtualizationProviderRoute | |
0 2 ${OP} 0 Get-NfsClientConfiguration | |
0 2 ${OP} 0 Get-NfsClientgroup | |
0 2 ${OP} 0 Get-NfsClientLock | |
0 2 ${OP} 0 Get-NfsMappingStore | |
0 2 ${OP} 0 Get-NfsMountedClient | |
0 2 ${OP} 0 Get-NfsNetgroupStore | |
0 2 ${OP} 0 Get-NfsOpenFile | |
0 2 ${OP} 0 Get-NfsServerConfiguration | |
0 2 ${OP} 0 Get-NfsSession | |
0 2 ${OP} 0 Get-NfsShare | |
0 2 ${OP} 0 Get-NfsSharePermission | |
0 2 ${OP} 0 Get-NfsStatistics | |
0 2 ${OP} 0 Get-OdbcDriver | |
0 2 ${OP} 0 Get-OdbcDsn | |
0 2 ${OP} 0 Get-OdbcPerfCounter | |
0 2 ${OP} 0 Get-OffloadDataTransferSetting | |
0 2 ${OP} 0 Get-Partition | |
0 2 ${OP} 0 Get-PartitionSupportedSize | |
0 2 ${OP} 0 Get-PerformanceCollector | |
0 2 ${OP} 0 Get-PhysicalDisk | |
0 2 ${OP} 0 Get-PrintConfiguration | |
0 2 ${OP} 0 Get-Printer | |
0 2 ${OP} 0 Get-PrinterDriver | |
0 2 ${OP} 0 Get-PrinterPort | |
0 2 ${OP} 0 Get-PrinterProperty | |
0 2 ${OP} 0 Get-PrintJob | |
0 2 ${OP} 0 Get-RDAvailableApp | |
0 2 ${OP} 0 Get-RDCertificate | |
0 2 ${OP} 0 Get-RDConnectionBrokerHighAvailability | |
0 2 ${OP} 0 Get-RDDeploymentGatewayConfiguration | |
0 2 ${OP} 0 Get-RDFileTypeAssociation | |
0 2 ${OP} 0 Get-RDLicenseConfiguration | |
0 2 ${OP} 0 Get-RDPersonalVirtualDesktopAssignment | |
0 2 ${OP} 0 Get-RDPersonalVirtualDesktopPatchSchedule | |
0 2 ${OP} 0 Get-RDRemoteApp | |
0 2 ${OP} 0 Get-RDRemoteDesktop | |
0 2 ${OP} 0 Get-RDServer | |
0 2 ${OP} 0 Get-RDSessionCollection | |
0 2 ${OP} 0 Get-RDSessionCollectionConfiguration | |
0 2 ${OP} 0 Get-RDSessionHost | |
0 2 ${OP} 0 Get-RDUserSession | |
0 2 ${OP} 0 Get-RDVirtualDesktop | |
0 2 ${OP} 0 Get-RDVirtualDesktopCollection | |
0 2 ${OP} 0 Get-RDVirtualDesktopCollectionConfiguration | |
0 2 ${OP} 0 Get-RDVirtualDesktopCollectionJobStatus | |
0 2 ${OP} 0 Get-RDVirtualDesktopConcurrency | |
0 2 ${OP} 0 Get-RDVirtualDesktopIdleCount | |
0 2 ${OP} 0 Get-RDVirtualDesktopTemplateExportPath | |
0 2 ${OP} 0 Get-RDWorkspace | |
0 2 ${OP} 0 Get-RemoteAccess | |
0 2 ${OP} 0 Get-RemoteAccessAccounting | |
0 2 ${OP} 0 Get-RemoteAccessConnectionStatistics | |
0 2 ${OP} 0 Get-RemoteAccessConnectionStatisticsSummary | |
0 2 ${OP} 0 Get-RemoteAccessHealth | |
0 2 ${OP} 0 Get-RemoteAccessLoadBalancer | |
0 2 ${OP} 0 Get-RemoteAccessRadius | |
0 2 ${OP} 0 Get-RemoteAccessUserActivity | |
0 2 ${OP} 0 Get-ResiliencySetting | |
0 2 ${OP} 0 Get-ScheduledTask | |
0 2 ${OP} 0 Get-ScheduledTaskInfo | |
0 2 ${OP} 0 Get-ServerBpaResult | |
0 2 ${OP} 0 Get-ServerClusterName | |
0 2 ${OP} 0 Get-ServerEvent | |
0 2 ${OP} 0 Get-ServerFeature | |
0 2 ${OP} 0 Get-ServerInventory | |
0 2 ${OP} 0 Get-ServerService | |
0 2 ${OP} 0 Get-SmbClientConfiguration | |
0 2 ${OP} 0 Get-SmbClientNetworkInterface | |
0 2 ${OP} 0 Get-SmbConnection | |
0 2 ${OP} 0 Get-SmbMapping | |
0 2 ${OP} 0 Get-SmbMultichannelConnection | |
0 2 ${OP} 0 Get-SmbMultichannelConstraint | |
0 2 ${OP} 0 Get-SmbOpenFile | |
0 2 ${OP} 0 Get-SmbServerConfiguration | |
0 2 ${OP} 0 Get-SmbServerNetworkInterface | |
0 2 ${OP} 0 Get-SmbSession | |
0 2 ${OP} 0 Get-SmbShare | |
0 2 ${OP} 0 Get-SmbShareAccess | |
0 2 ${OP} 0 Get-SmbWitnessClient | |
0 2 ${OP} 0 Get-StorageJob | |
0 2 ${OP} 0 Get-StoragePool | |
0 2 ${OP} 0 Get-StorageProvider | |
0 2 ${OP} 0 Get-StorageReliabilityCounter | |
0 2 ${OP} 0 Get-StorageSetting | |
0 2 ${OP} 0 Get-StorageSubSystem | |
0 2 ${OP} 0 Get-SupportedClusterSizes | |
0 2 ${OP} 0 Get-SupportedFileSystems | |
0 2 ${OP} 0 Get-TargetPort | |
0 2 ${OP} 0 Get-TargetPortal | |
0 2 ${OP} 0 Get-Verb | |
0 2 ${OP} 0 Get-VirtualDisk | |
0 2 ${OP} 0 Get-VirtualDiskSupportedSize | |
0 2 ${OP} 0 Get-Volume | |
0 2 ${OP} 0 Get-VolumeCorruptionCount | |
0 2 ${OP} 0 Get-VolumeScrubPolicy | |
0 2 ${OP} 0 Get-VpnAuthProtocol | |
0 2 ${OP} 0 Get-VpnConnection | |
0 2 ${OP} 0 Get-VpnS2SInterface | |
0 2 ${OP} 0 Get-VpnS2SInterfaceStatistics | |
0 2 ${OP} 0 Get-VpnServerIPsecConfiguration | |
0 2 ${OP} 0 Get-WdacBidTrace | |
0 2 ${OP} 0 Get-WindowsDeveloperLicense | |
0 2 ${OP} 0 Get-WindowsFeature | |
0 2 ${OP} 0 Grant-DfsnAccess | |
0 2 ${OP} 0 Grant-NfsSharePermission | |
0 2 ${OP} 0 Grant-RDOUAccess | |
0 2 ${OP} 0 Grant-SmbShareAccess | |
0 2 ${OP} 0 help | |
0 2 ${OP} 0 Hide-VirtualDisk | |
0 2 ${OP} 0 Import-BCCachePackage | |
0 2 ${OP} 0 Import-BCSecretKey | |
0 2 ${OP} 0 Import-Csv | |
0 2 ${OP} 0 Import-DhcpServer | |
0 2 ${OP} 0 Import-DnsServerResourceRecordDS | |
0 2 ${OP} 0 Import-DnsServerRootHint | |
0 2 ${OP} 0 Import-DnsServerTrustAnchor | |
0 2 ${OP} 0 Import-IseSnippet | |
0 2 ${OP} 0 Import-RDPersonalVirtualDesktopAssignment | |
0 2 ${OP} 0 ImportSystemModules | |
0 2 ${OP} 0 Initialize-Disk | |
0 2 ${OP} 0 Install-Dtc | |
0 2 ${OP} 0 Install-RemoteAccess | |
0 2 ${OP} 0 Install-WindowsFeature | |
0 2 ${OP} 0 Invoke-AsWorkflow | |
0 2 ${OP} 0 Invoke-DhcpServerv4FailoverReplication | |
0 2 ${OP} 0 Invoke-DnsServerSigningKeyRollover | |
0 2 ${OP} 0 Invoke-DnsServerZoneSign | |
0 2 ${OP} 0 Invoke-DnsServerZoneUnsign | |
0 2 ${OP} 0 Invoke-RDUserLogoff | |
0 2 ${OP} 0 Lock-BitLocker | |
0 2 ${OP} 0 Measure-DedupFileMetadata | |
0 2 ${OP} 0 mkdir | |
0 2 ${OP} 0 more | |
0 2 ${OP} 0 Mount-DiskImage | |
0 2 ${OP} 0 Move-DfsnFolder | |
0 2 ${OP} 0 Move-RDVirtualDesktop | |
0 2 ${OP} 0 Move-SmbWitnessClient | |
0 2 ${OP} 0 New-Button | |
0 2 ${OP} 0 New-CheckBox | |
0 2 ${OP} 0 New-DAEntryPointTableItem | |
0 2 ${OP} 0 New-DedupSchedule | |
0 2 ${OP} 0 New-DfsnFolder | |
0 2 ${OP} 0 New-DfsnFolderTarget | |
0 2 ${OP} 0 New-DfsnRoot | |
0 2 ${OP} 0 New-DfsnRootTarget | |
0 2 ${OP} 0 New-EapConfiguration | |
0 2 ${OP} 0 New-GroupBox | |
0 2 ${OP} 0 New-IscsiTargetPortal | |
0 2 ${OP} 0 New-IseSnippet | |
0 2 ${OP} 0 New-Label | |
0 2 ${OP} 0 New-ListBox | |
0 2 ${OP} 0 New-MaskingSet | |
0 2 ${OP} 0 New-NetAdapterAdvancedProperty | |
0 2 ${OP} 0 New-NetFirewallRule | |
0 2 ${OP} 0 New-NetIPAddress | |
0 2 ${OP} 0 New-NetIPHttpsConfiguration | |
0 2 ${OP} 0 New-NetIPsecDospSetting | |
0 2 ${OP} 0 New-NetIPsecMainModeCryptoSet | |
0 2 ${OP} 0 New-NetIPsecMainModeRule | |
0 2 ${OP} 0 New-NetIPsecPhase1AuthSet | |
0 2 ${OP} 0 New-NetIPsecPhase2AuthSet | |
0 2 ${OP} 0 New-NetIPsecQuickModeCryptoSet | |
0 2 ${OP} 0 New-NetIPsecRule | |
0 2 ${OP} 0 New-NetLbfoTeam | |
0 2 ${OP} 0 New-NetNatTransitionConfiguration | |
0 2 ${OP} 0 New-NetNeighbor | |
0 2 ${OP} 0 New-NetQosPolicy | |
0 2 ${OP} 0 New-NetRoute | |
0 2 ${OP} 0 New-NetSwitchTeam | |
0 2 ${OP} 0 New-NetTransportFilter | |
0 2 ${OP} 0 New-NetVirtualizationCustomerRoute | |
0 2 ${OP} 0 New-NetVirtualizationLookupRecord | |
0 2 ${OP} 0 New-NetVirtualizationProviderAddress | |
0 2 ${OP} 0 New-NetVirtualizationProviderRoute | |
0 2 ${OP} 0 New-NfsClientgroup | |
0 2 ${OP} 0 New-NfsShare | |
0 2 ${OP} 0 New-Panel | |
0 2 ${OP} 0 New-Partition | |
0 2 ${OP} 0 New-PSWorkflowSession | |
0 2 ${OP} 0 New-RDCertificate | |
0 2 ${OP} 0 New-RDPersonalVirtualDesktopPatchSchedule | |
0 2 ${OP} 0 New-RDRemoteApp | |
0 2 ${OP} 0 New-RDSessionCollection | |
0 2 ${OP} 0 New-RDSessionDeployment | |
0 2 ${OP} 0 New-RDVirtualDesktopCollection | |
0 2 ${OP} 0 New-RDVirtualDesktopDeployment | |
0 2 ${OP} 0 New-ScheduledTask | |
0 2 ${OP} 0 New-ScheduledTaskAction | |
0 2 ${OP} 0 New-ScheduledTaskPrincipal | |
0 2 ${OP} 0 New-ScheduledTaskSettingsSet | |
0 2 ${OP} 0 New-ScheduledTaskTrigger | |
0 2 ${OP} 0 New-SmbMapping | |
0 2 ${OP} 0 New-SmbMultichannelConstraint | |
0 2 ${OP} 0 New-SmbShare | |
0 2 ${OP} 0 New-StoragePool | |
0 2 ${OP} 0 New-StorageSubsystemVirtualDisk | |
0 2 ${OP} 0 New-TabControl | |
0 2 ${OP} 0 New-TabPage | |
0 2 ${OP} 0 New-TextBox | |
0 2 ${OP} 0 New-TrackBar | |
0 2 ${OP} 0 New-TreeNode | |
0 2 ${OP} 0 New-TreeView | |
0 2 ${OP} 0 New-VirtualDisk | |
0 2 ${OP} 0 New-VirtualDiskClone | |
0 2 ${OP} 0 New-VirtualDiskSnapshot | |
0 2 ${OP} 0 Open-NetGPO | |
0 2 ${OP} 0 Optimize-Volume | |
0 2 ${OP} 0 oss | |
0 2 ${OP} 0 Pause | |
0 2 ${OP} 0 prompt | |
0 2 ${OP} 0 Publish-BCFileContent | |
0 2 ${OP} 0 Publish-BCWebContent | |
0 2 ${OP} 0 Register-ClusteredScheduledTask | |
0 2 ${OP} 0 Register-DnsClient | |
0 2 ${OP} 0 Register-DnsServerDirectoryPartition | |
0 2 ${OP} 0 Register-IscsiSession | |
0 2 ${OP} 0 Register-ScheduledTask | |
0 2 ${OP} 0 Remove-BCDataCacheExtension | |
0 2 ${OP} 0 Remove-BitLockerKeyProtector | |
0 2 ${OP} 0 Remove-DAAppServer | |
0 2 ${OP} 0 Remove-DAClient | |
0 2 ${OP} 0 Remove-DAClientDnsConfiguration | |
0 2 ${OP} 0 Remove-DAEntryPoint | |
0 2 ${OP} 0 Remove-DAEntryPointTableItem | |
0 2 ${OP} 0 Remove-DAMgmtServer | |
0 2 ${OP} 0 Remove-DedupSchedule | |
0 2 ${OP} 0 Remove-DfsnAccess | |
0 2 ${OP} 0 Remove-DfsnFolder | |
0 2 ${OP} 0 Remove-DfsnFolderTarget | |
0 2 ${OP} 0 Remove-DfsnRoot | |
0 2 ${OP} 0 Remove-DfsnRootTarget | |
0 2 ${OP} 0 Remove-DhcpServerInDC | |
0 2 ${OP} 0 Remove-DhcpServerv4Class | |
0 2 ${OP} 0 Remove-DhcpServerv4ExclusionRange | |
0 2 ${OP} 0 Remove-DhcpServerv4Failover | |
0 2 ${OP} 0 Remove-DhcpServerv4FailoverScope | |
0 2 ${OP} 0 Remove-DhcpServerv4Filter | |
0 2 ${OP} 0 Remove-DhcpServerv4Lease | |
0 2 ${OP} 0 Remove-DhcpServerv4OptionDefinition | |
0 2 ${OP} 0 Remove-DhcpServerv4OptionValue | |
0 2 ${OP} 0 Remove-DhcpServerv4Policy | |
0 2 ${OP} 0 Remove-DhcpServerv4PolicyIPRange | |
0 2 ${OP} 0 Remove-DhcpServerv4Reservation | |
0 2 ${OP} 0 Remove-DhcpServerv4Scope | |
0 2 ${OP} 0 Remove-DhcpServerv4Superscope | |
0 2 ${OP} 0 Remove-DhcpServerv6Class | |
0 2 ${OP} 0 Remove-DhcpServerv6ExclusionRange | |
0 2 ${OP} 0 Remove-DhcpServerv6Lease | |
0 2 ${OP} 0 Remove-DhcpServerv6OptionDefinition | |
0 2 ${OP} 0 Remove-DhcpServerv6OptionValue | |
0 2 ${OP} 0 Remove-DhcpServerv6Reservation | |
0 2 ${OP} 0 Remove-DhcpServerv6Scope | |
0 2 ${OP} 0 Remove-DnsClientNrptRule | |
0 2 ${OP} 0 Remove-DnsServerDirectoryPartition | |
0 2 ${OP} 0 Remove-DnsServerForwarder | |
0 2 ${OP} 0 Remove-DnsServerResourceRecord | |
0 2 ${OP} 0 Remove-DnsServerRootHint | |
0 2 ${OP} 0 Remove-DnsServerSigningKey | |
0 2 ${OP} 0 Remove-DnsServerTrustAnchor | |
0 2 ${OP} 0 Remove-DnsServerZone | |
0 2 ${OP} 0 Remove-DnsServerZoneDelegation | |
0 2 ${OP} 0 Remove-DtcClusterTMMapping | |
0 2 ${OP} 0 Remove-InitiatorId | |
0 2 ${OP} 0 Remove-InitiatorIdFromMaskingSet | |
0 2 ${OP} 0 Remove-IscsiTargetPortal | |
0 2 ${OP} 0 Remove-MaskingSet | |
0 2 ${OP} 0 Remove-NetAdapterAdvancedProperty | |
0 2 ${OP} 0 Remove-NetFirewallRule | |
0 2 ${OP} 0 Remove-NetIPAddress | |
0 2 ${OP} 0 Remove-NetIPHttpsCertBinding | |
0 2 ${OP} 0 Remove-NetIPHttpsConfiguration | |
0 2 ${OP} 0 Remove-NetIPsecDospSetting | |
0 2 ${OP} 0 Remove-NetIPsecMainModeCryptoSet | |
0 2 ${OP} 0 Remove-NetIPsecMainModeRule | |
0 2 ${OP} 0 Remove-NetIPsecMainModeSA | |
0 2 ${OP} 0 Remove-NetIPsecPhase1AuthSet | |
0 2 ${OP} 0 Remove-NetIPsecPhase2AuthSet | |
0 2 ${OP} 0 Remove-NetIPsecQuickModeCryptoSet | |
0 2 ${OP} 0 Remove-NetIPsecQuickModeSA | |
0 2 ${OP} 0 Remove-NetIPsecRule | |
0 2 ${OP} 0 Remove-NetLbfoTeam | |
0 2 ${OP} 0 Remove-NetLbfoTeamMember | |
0 2 ${OP} 0 Remove-NetLbfoTeamNic | |
0 2 ${OP} 0 Remove-NetNatTransitionConfiguration | |
0 2 ${OP} 0 Remove-NetNeighbor | |
0 2 ${OP} 0 Remove-NetQosPolicy | |
0 2 ${OP} 0 Remove-NetRoute | |
0 2 ${OP} 0 Remove-NetSwitchTeam | |
0 2 ${OP} 0 Remove-NetSwitchTeamMember | |
0 2 ${OP} 0 Remove-NetTransportFilter | |
0 2 ${OP} 0 Remove-NetVirtualizationCustomerRoute | |
0 2 ${OP} 0 Remove-NetVirtualizationLookupRecord | |
0 2 ${OP} 0 Remove-NetVirtualizationProviderAddress | |
0 2 ${OP} 0 Remove-NetVirtualizationProviderRoute | |
0 2 ${OP} 0 Remove-NfsClientgroup | |
0 2 ${OP} 0 Remove-NfsShare | |
0 2 ${OP} 0 Remove-OdbcDsn | |
0 2 ${OP} 0 Remove-Partition | |
0 2 ${OP} 0 Remove-PartitionAccessPath | |
0 2 ${OP} 0 Remove-PhysicalDisk | |
0 2 ${OP} 0 Remove-Printer | |
0 2 ${OP} 0 Remove-PrinterDriver | |
0 2 ${OP} 0 Remove-PrinterPort | |
0 2 ${OP} 0 Remove-PrintJob | |
0 2 ${OP} 0 Remove-RDPersonalVirtualDesktopAssignment | |
0 2 ${OP} 0 Remove-RDPersonalVirtualDesktopPatchSchedule | |
0 2 ${OP} 0 Remove-RDRemoteApp | |
0 2 ${OP} 0 Remove-RDServer | |
0 2 ${OP} 0 Remove-RDSessionCollection | |
0 2 ${OP} 0 Remove-RDSessionHost | |
0 2 ${OP} 0 Remove-RDVirtualDesktopCollection | |
0 2 ${OP} 0 Remove-RDVirtualDesktopFromCollection | |
0 2 ${OP} 0 Remove-RemoteAccessLoadBalancerNode | |
0 2 ${OP} 0 Remove-RemoteAccessRadius | |
0 2 ${OP} 0 Remove-ServerPerformanceLog | |
0 2 ${OP} 0 Remove-SmbMapping | |
0 2 ${OP} 0 Remove-SmbMultichannelConstraint | |
0 2 ${OP} 0 Remove-SmbShare | |
0 2 ${OP} 0 Remove-StoragePool | |
0 2 ${OP} 0 Remove-TargetPortFromMaskingSet | |
0 2 ${OP} 0 Remove-VirtualDisk | |
0 2 ${OP} 0 Remove-VirtualDiskFromMaskingSet | |
0 2 ${OP} 0 Remove-VpnConnection | |
0 2 ${OP} 0 Remove-VpnIPAddressRange | |
0 2 ${OP} 0 Remove-VpnS2SInterface | |
0 2 ${OP} 0 Rename-DAEntryPointTableItem | |
0 2 ${OP} 0 Rename-MaskingSet | |
0 2 ${OP} 0 Rename-NetAdapter | |
0 2 ${OP} 0 Rename-NetFirewallRule | |
0 2 ${OP} 0 Rename-NetIPHttpsConfiguration | |
0 2 ${OP} 0 Rename-NetIPsecMainModeCryptoSet | |
0 2 ${OP} 0 Rename-NetIPsecMainModeRule | |
0 2 ${OP} 0 Rename-NetIPsecPhase1AuthSet | |
0 2 ${OP} 0 Rename-NetIPsecPhase2AuthSet | |
0 2 ${OP} 0 Rename-NetIPsecQuickModeCryptoSet | |
0 2 ${OP} 0 Rename-NetIPsecRule | |
0 2 ${OP} 0 Rename-NetLbfoTeam | |
0 2 ${OP} 0 Rename-NetSwitchTeam | |
0 2 ${OP} 0 Rename-NfsClientgroup | |
0 2 ${OP} 0 Rename-Printer | |
0 2 ${OP} 0 Repair-FileIntegrity | |
0 2 ${OP} 0 Repair-VirtualDisk | |
0 2 ${OP} 0 Repair-Volume | |
0 2 ${OP} 0 Reset-BC | |
0 2 ${OP} 0 Reset-DAClientExperienceConfiguration | |
0 2 ${OP} 0 Reset-DAEntryPointTableItem | |
0 2 ${OP} 0 Reset-DnsServerZoneKeyMasterRole | |
0 2 ${OP} 0 Reset-DtcLog | |
0 2 ${OP} 0 Reset-NCSIPolicyConfiguration | |
0 2 ${OP} 0 Reset-Net6to4Configuration | |
0 2 ${OP} 0 Reset-NetAdapterAdvancedProperty | |
0 2 ${OP} 0 Reset-NetDnsTransitionConfiguration | |
0 2 ${OP} 0 Reset-NetIPHttpsConfiguration | |
0 2 ${OP} 0 Reset-NetIsatapConfiguration | |
0 2 ${OP} 0 Reset-NetTeredoConfiguration | |
0 2 ${OP} 0 Reset-NfsStatistics | |
0 2 ${OP} 0 Reset-PhysicalDisk | |
0 2 ${OP} 0 Reset-StorageReliabilityCounter | |
0 2 ${OP} 0 Resize-Partition | |
0 2 ${OP} 0 Resize-VirtualDisk | |
0 2 ${OP} 0 Resolve-NfsMappedIdentity | |
0 2 ${OP} 0 Restart-NetAdapter | |
0 2 ${OP} 0 Restart-PrintJob | |
0 2 ${OP} 0 Restore-DhcpServer | |
0 2 ${OP} 0 Restore-DnsServerPrimaryZone | |
0 2 ${OP} 0 Restore-DnsServerSecondaryZone | |
0 2 ${OP} 0 Resume-BitLocker | |
0 2 ${OP} 0 Resume-DnsServerZone | |
0 2 ${OP} 0 Resume-PrintJob | |
0 2 ${OP} 0 Revoke-DfsnAccess | |
0 2 ${OP} 0 Revoke-NfsClientLock | |
0 2 ${OP} 0 Revoke-NfsMountedClient | |
0 2 ${OP} 0 Revoke-NfsOpenFile | |
0 2 ${OP} 0 Revoke-NfsSharePermission | |
0 2 ${OP} 0 Revoke-SmbShareAccess | |
0 2 ${OP} 0 Save-NetGPO | |
0 2 ${OP} 0 Search-Wmi | |
0 2 ${OP} 0 Send-RDUserMessage | |
0 2 ${OP} 0 Set-BCAuthentication | |
0 2 ${OP} 0 Set-BCCache | |
0 2 ${OP} 0 Set-BCDataCacheEntryMaxAge | |
0 2 ${OP} 0 Set-BCMinSMBLatency | |
0 2 ${OP} 0 Set-BCSecretKey | |
0 2 ${OP} 0 Set-ClusteredScheduledTask | |
0 2 ${OP} 0 Set-DAAppServerConnection | |
0 2 ${OP} 0 Set-DAClient | |
0 2 ${OP} 0 Set-DAClientDnsConfiguration | |
0 2 ${OP} 0 Set-DAClientExperienceConfiguration | |
0 2 ${OP} 0 Set-DAEntryPoint | |
0 2 ${OP} 0 Set-DAEntryPointDC | |
0 2 ${OP} 0 Set-DAEntryPointTableItem | |
0 2 ${OP} 0 Set-DAMultiSite | |
0 2 ${OP} 0 Set-DANetworkLocationServer | |
0 2 ${OP} 0 Set-DAOtpAuthentication | |
0 2 ${OP} 0 Set-DAServer | |
0 2 ${OP} 0 Set-DedupSchedule | |
0 2 ${OP} 0 Set-DedupVolume | |
0 2 ${OP} 0 Set-DfsnFolder | |
0 2 ${OP} 0 Set-DfsnFolderTarget | |
0 2 ${OP} 0 Set-DfsnRoot | |
0 2 ${OP} 0 Set-DfsnRootTarget | |
0 2 ${OP} 0 Set-DfsnServerConfiguration | |
0 2 ${OP} 0 Set-DhcpServerAuditLog | |
0 2 ${OP} 0 Set-DhcpServerDatabase | |
0 2 ${OP} 0 Set-DhcpServerSetting | |
0 2 ${OP} 0 Set-DhcpServerv4Binding | |
0 2 ${OP} 0 Set-DhcpServerv4Class | |
0 2 ${OP} 0 Set-DhcpServerv4DnsSetting | |
0 2 ${OP} 0 Set-DhcpServerv4Failover | |
0 2 ${OP} 0 Set-DhcpServerv4FilterList | |
0 2 ${OP} 0 Set-DhcpServerv4OptionDefinition | |
0 2 ${OP} 0 Set-DhcpServerv4OptionValue | |
0 2 ${OP} 0 Set-DhcpServerv4Policy | |
0 2 ${OP} 0 Set-DhcpServerv4Reservation | |
0 2 ${OP} 0 Set-DhcpServerv4Scope | |
0 2 ${OP} 0 Set-DhcpServerv6Binding | |
0 2 ${OP} 0 Set-DhcpServerv6Class | |
0 2 ${OP} 0 Set-DhcpServerv6DnsSetting | |
0 2 ${OP} 0 Set-DhcpServerv6OptionDefinition | |
0 2 ${OP} 0 Set-DhcpServerv6OptionValue | |
0 2 ${OP} 0 Set-DhcpServerv6Reservation | |
0 2 ${OP} 0 Set-DhcpServerv6Scope | |
0 2 ${OP} 0 Set-DhcpServerv6StatelessStore | |
0 2 ${OP} 0 Set-Disk | |
0 2 ${OP} 0 Set-DnsClient | |
0 2 ${OP} 0 Set-DnsClientGlobalSetting | |
0 2 ${OP} 0 Set-DnsClientNrptGlobal | |
0 2 ${OP} 0 Set-DnsClientNrptRule | |
0 2 ${OP} 0 Set-DnsClientServerAddress | |
0 2 ${OP} 0 Set-DnsServer | |
0 2 ${OP} 0 Set-DnsServerCache | |
0 2 ${OP} 0 Set-DnsServerConditionalForwarderZone | |
0 2 ${OP} 0 Set-DnsServerDiagnostics | |
0 2 ${OP} 0 Set-DnsServerDnsSecZoneSetting | |
0 2 ${OP} 0 Set-DnsServerDsSetting | |
0 2 ${OP} 0 Set-DnsServerEDns | |
0 2 ${OP} 0 Set-DnsServerForwarder | |
0 2 ${OP} 0 Set-DnsServerGlobalNameZone | |
0 2 ${OP} 0 Set-DnsServerGlobalQueryBlockList | |
0 2 ${OP} 0 Set-DnsServerPrimaryZone | |
0 2 ${OP} 0 Set-DnsServerRecursion | |
0 2 ${OP} 0 Set-DnsServerResourceRecord | |
0 2 ${OP} 0 Set-DnsServerResourceRecordAging | |
0 2 ${OP} 0 Set-DnsServerRootHint | |
0 2 ${OP} 0 Set-DnsServerScavenging | |
0 2 ${OP} 0 Set-DnsServerSecondaryZone | |
0 2 ${OP} 0 Set-DnsServerSetting | |
0 2 ${OP} 0 Set-DnsServerSigningKey | |
0 2 ${OP} 0 Set-DnsServerStubZone | |
0 2 ${OP} 0 Set-DnsServerZoneAging | |
0 2 ${OP} 0 Set-DnsServerZoneDelegation | |
0 2 ${OP} 0 Set-DtcAdvancedHostSetting | |
0 2 ${OP} 0 Set-DtcAdvancedSetting | |
0 2 ${OP} 0 Set-DtcClusterDefault | |
0 2 ${OP} 0 Set-DtcClusterTMMapping | |
0 2 ${OP} 0 Set-DtcDefault | |
0 2 ${OP} 0 Set-DtcLog | |
0 2 ${OP} 0 Set-DtcNetworkSetting | |
0 2 ${OP} 0 Set-DtcTransaction | |
0 2 ${OP} 0 Set-DtcTransactionsTraceSession | |
0 2 ${OP} 0 Set-DtcTransactionsTraceSetting | |
0 2 ${OP} 0 Set-FileIntegrity | |
0 2 ${OP} 0 Set-InitiatorPort | |
0 2 ${OP} 0 Set-IscsiChapSecret | |
0 2 ${OP} 0 Set-LogProperties | |
0 2 ${OP} 0 Set-MMAgent | |
0 2 ${OP} 0 Set-NCSIPolicyConfiguration | |
0 2 ${OP} 0 Set-Net6to4Configuration | |
0 2 ${OP} 0 Set-NetAdapter | |
0 2 ${OP} 0 Set-NetAdapterAdvancedProperty | |
0 2 ${OP} 0 Set-NetAdapterBinding | |
0 2 ${OP} 0 Set-NetAdapterChecksumOffload | |
0 2 ${OP} 0 Set-NetAdapterEncapsulatedPacketTaskOffload | |
0 2 ${OP} 0 Set-NetAdapterIPsecOffload | |
0 2 ${OP} 0 Set-NetAdapterLso | |
0 2 ${OP} 0 Set-NetAdapterPowerManagement | |
0 2 ${OP} 0 Set-NetAdapterQos | |
0 2 ${OP} 0 Set-NetAdapterRdma | |
0 2 ${OP} 0 Set-NetAdapterRsc | |
0 2 ${OP} 0 Set-NetAdapterRss | |
0 2 ${OP} 0 Set-NetAdapterSriov | |
0 2 ${OP} 0 Set-NetAdapterVmq | |
0 2 ${OP} 0 Set-NetConnectionProfile | |
0 2 ${OP} 0 Set-NetDnsTransitionConfiguration | |
0 2 ${OP} 0 Set-NetFirewallAddressFilter | |
0 2 ${OP} 0 Set-NetFirewallApplicationFilter | |
0 2 ${OP} 0 Set-NetFirewallInterfaceFilter | |
0 2 ${OP} 0 Set-NetFirewallInterfaceTypeFilter | |
0 2 ${OP} 0 Set-NetFirewallPortFilter | |
0 2 ${OP} 0 Set-NetFirewallProfile | |
0 2 ${OP} 0 Set-NetFirewallRule | |
0 2 ${OP} 0 Set-NetFirewallSecurityFilter | |
0 2 ${OP} 0 Set-NetFirewallServiceFilter | |
0 2 ${OP} 0 Set-NetFirewallSetting | |
0 2 ${OP} 0 Set-NetIPAddress | |
0 2 ${OP} 0 Set-NetIPHttpsConfiguration | |
0 2 ${OP} 0 Set-NetIPInterface | |
0 2 ${OP} 0 Set-NetIPsecDospSetting | |
0 2 ${OP} 0 Set-NetIPsecMainModeCryptoSet | |
0 2 ${OP} 0 Set-NetIPsecMainModeRule | |
0 2 ${OP} 0 Set-NetIPsecPhase1AuthSet | |
0 2 ${OP} 0 Set-NetIPsecPhase2AuthSet | |
0 2 ${OP} 0 Set-NetIPsecQuickModeCryptoSet | |
0 2 ${OP} 0 Set-NetIPsecRule | |
0 2 ${OP} 0 Set-NetIPv4Protocol | |
0 2 ${OP} 0 Set-NetIPv6Protocol | |
0 2 ${OP} 0 Set-NetIsatapConfiguration | |
0 2 ${OP} 0 Set-NetLbfoTeam | |
0 2 ${OP} 0 Set-NetLbfoTeamMember | |
0 2 ${OP} 0 Set-NetLbfoTeamNic | |
0 2 ${OP} 0 Set-NetNatTransitionConfiguration | |
0 2 ${OP} 0 Set-NetNeighbor | |
0 2 ${OP} 0 Set-NetOffloadGlobalSetting | |
0 2 ${OP} 0 Set-NetQosPolicy | |
0 2 ${OP} 0 Set-NetRoute | |
0 2 ${OP} 0 Set-NetTCPSetting | |
0 2 ${OP} 0 Set-NetTeredoConfiguration | |
0 2 ${OP} 0 Set-NetUDPSetting | |
0 2 ${OP} 0 Set-NetVirtualizationCustomerRoute | |
0 2 ${OP} 0 Set-NetVirtualizationGlobal | |
0 2 ${OP} 0 Set-NetVirtualizationLookupRecord | |
0 2 ${OP} 0 Set-NetVirtualizationProviderAddress | |
0 2 ${OP} 0 Set-NetVirtualizationProviderRoute | |
0 2 ${OP} 0 Set-NfsClientConfiguration | |
0 2 ${OP} 0 Set-NfsClientgroup | |
0 2 ${OP} 0 Set-NfsMappingStore | |
0 2 ${OP} 0 Set-NfsNetgroupStore | |
0 2 ${OP} 0 Set-NfsServerConfiguration | |
0 2 ${OP} 0 Set-NfsShare | |
0 2 ${OP} 0 Set-OdbcDriver | |
0 2 ${OP} 0 Set-OdbcDsn | |
0 2 ${OP} 0 Set-Partition | |
0 2 ${OP} 0 Set-PhysicalDisk | |
0 2 ${OP} 0 Set-PrintConfiguration | |
0 2 ${OP} 0 Set-Printer | |
0 2 ${OP} 0 Set-PrinterProperty | |
0 2 ${OP} 0 Set-Property | |
0 2 ${OP} 0 Set-RDActiveManagementServer | |
0 2 ${OP} 0 Set-RDCertificate | |
0 2 ${OP} 0 Set-RDClientAccessName | |
0 2 ${OP} 0 Set-RDConnectionBrokerHighAvailability | |
0 2 ${OP} 0 Set-RDDatabaseConnectionString | |
0 2 ${OP} 0 Set-RDDeploymentGatewayConfiguration | |
0 2 ${OP} 0 Set-RDFileTypeAssociation | |
0 2 ${OP} 0 Set-RDLicenseConfiguration | |
0 2 ${OP} 0 Set-RDPersonalVirtualDesktopAssignment | |
0 2 ${OP} 0 Set-RDPersonalVirtualDesktopPatchSchedule | |
0 2 ${OP} 0 Set-RDRemoteApp | |
0 2 ${OP} 0 Set-RDRemoteDesktop | |
0 2 ${OP} 0 Set-RDSessionCollectionConfiguration | |
0 2 ${OP} 0 Set-RDSessionHost | |
0 2 ${OP} 0 Set-RDVirtualDesktopCollectionConfiguration | |
0 2 ${OP} 0 Set-RDVirtualDesktopConcurrency | |
0 2 ${OP} 0 Set-RDVirtualDesktopIdleCount | |
0 2 ${OP} 0 Set-RDVirtualDesktopTemplateExportPath | |
0 2 ${OP} 0 Set-RDWorkspace | |
0 2 ${OP} 0 Set-RemoteAccess | |
0 2 ${OP} 0 Set-RemoteAccessAccounting | |
0 2 ${OP} 0 Set-RemoteAccessInboxAccountingStore | |
0 2 ${OP} 0 Set-RemoteAccessLoadBalancer | |
0 2 ${OP} 0 Set-RemoteAccessRadius | |
0 2 ${OP} 0 Set-ResiliencySetting | |
0 2 ${OP} 0 Set-ScheduledTask | |
0 2 ${OP} 0 Set-SmbClientConfiguration | |
0 2 ${OP} 0 Set-SmbServerConfiguration | |
0 2 ${OP} 0 Set-SmbShare | |
0 2 ${OP} 0 Set-StoragePool | |
0 2 ${OP} 0 Set-StorageSetting | |
0 2 ${OP} 0 Set-StorageSubSystem | |
0 2 ${OP} 0 Set-VirtualDisk | |
0 2 ${OP} 0 Set-Volume | |
0 2 ${OP} 0 Set-VolumeScrubPolicy | |
0 2 ${OP} 0 Set-VpnAuthProtocol | |
0 2 ${OP} 0 Set-VpnAuthType | |
0 2 ${OP} 0 Set-VpnConnection | |
0 2 ${OP} 0 Set-VpnConnectionProxy | |
0 2 ${OP} 0 Set-VpnIPAddressAssignment | |
0 2 ${OP} 0 Set-VpnS2SInterface | |
0 2 ${OP} 0 Set-VpnServerIPsecConfiguration | |
0 2 ${OP} 0 Show-DnsServerCache | |
0 2 ${OP} 0 Show-DnsServerKeyStorageProvider | |
0 2 ${OP} 0 Show-NetFirewallRule | |
0 2 ${OP} 0 Show-NetIPsecRule | |
0 2 ${OP} 0 Show-VirtualDisk | |
0 2 ${OP} 0 Show-WindowsDeveloperLicenseRegistration | |
0 2 ${OP} 0 Start-DedupJob | |
0 2 ${OP} 0 Start-DnsServerScavenging | |
0 2 ${OP} 0 Start-DnsServerZoneTransfer | |
0 2 ${OP} 0 Start-Dtc | |
0 2 ${OP} 0 Start-DtcTransactionsTraceSession | |
0 2 ${OP} 0 Start-PerformanceCollector | |
0 2 ${OP} 0 startprocess | |
0 2 ${OP} 0 Start-ScheduledTask | |
0 2 ${OP} 0 Start-Trace | |
0 2 ${OP} 0 Stop-DedupJob | |
0 2 ${OP} 0 Stop-Dtc | |
0 2 ${OP} 0 Stop-DtcTransactionsTraceSession | |
0 2 ${OP} 0 Stop-PerformanceCollector | |
0 2 ${OP} 0 Stop-RDVirtualDesktopCollectionJob | |
0 2 ${OP} 0 Stop-ScheduledTask | |
0 2 ${OP} 0 Stop-Trace | |
0 2 ${OP} 0 Suspend-BitLocker | |
0 2 ${OP} 0 Suspend-DnsServerZone | |
0 2 ${OP} 0 Suspend-PrintJob | |
0 2 ${OP} 0 Sync-DnsServerZone | |
0 2 ${OP} 0 Sync-NetIPsecRule | |
0 2 ${OP} 0 TabExpansion2 | |
0 2 ${OP} 0 Test-DnsServer | |
0 2 ${OP} 0 Test-DnsServerDnsSecZoneSetting | |
0 2 ${OP} 0 Test-Dtc | |
0 2 ${OP} 0 Test-NfsMappingStore | |
0 2 ${OP} 0 Test-RDOUAccess | |
0 2 ${OP} 0 Test-RDVirtualDesktopADMachineAccountReuse | |
0 2 ${OP} 0 Unblock-SmbShareAccess | |
0 2 ${OP} 0 Uninstall-Dtc | |
0 2 ${OP} 0 Uninstall-RemoteAccess | |
0 2 ${OP} 0 Uninstall-WindowsFeature | |
0 2 ${OP} 0 Unlock-BitLocker | |
0 2 ${OP} 0 Unregister-ClusteredScheduledTask | |
0 2 ${OP} 0 Unregister-DnsServerDirectoryPartition | |
0 2 ${OP} 0 Unregister-IscsiSession | |
0 2 ${OP} 0 Unregister-ScheduledTask | |
0 2 ${OP} 0 Unregister-WindowsDeveloperLicense | |
0 2 ${OP} 0 Update-DAMgmtServer | |
0 2 ${OP} 0 Update-DedupStatus | |
0 2 ${OP} 0 Update-Disk | |
0 2 ${OP} 0 Update-DnsServerTrustPoint | |
0 2 ${OP} 0 Update-HostStorageCache | |
0 2 ${OP} 0 Update-IscsiTarget | |
0 2 ${OP} 0 Update-IscsiTargetPortal | |
0 2 ${OP} 0 Update-NetIPsecRule | |
0 2 ${OP} 0 Update-RDVirtualDesktopCollection | |
0 2 ${OP} 0 Update-SmbMultichannelConnection | |
0 2 ${OP} 0 Update-StorageProviderCache | |
0 2 ${OP} 0 Update-WmiSpy | |
0 2 ${OP} 0 Write-DtcTransactionsTraceSession | |
0 2 ${OP} 0 Add-ADCentralAccessPolicyMember | |
0 2 ${OP} 0 Add-ADComputerServiceAccount | |
0 2 ${OP} 0 Add-ADDomainControllerPasswordReplicationPolicy | |
0 2 ${OP} 0 Add-ADFineGrainedPasswordPolicySubject | |
0 2 ${OP} 0 Add-ADGroupMember | |
0 2 ${OP} 0 Add-ADPrincipalGroupMembership | |
0 2 ${OP} 0 Add-ADResourcePropertyListMember | |
0 2 ${OP} 0 Add-AppxPackage | |
0 2 ${OP} 0 Add-AppxProvisionedPackage | |
0 2 ${OP} 0 Add-BitsFile | |
0 2 ${OP} 0 Add-CauClusterRole | |
0 2 ${OP} 0 Add-CertificateEnrollmentPolicyServer | |
0 2 ${OP} 0 Add-ClusterCheckpoint | |
0 2 ${OP} 0 Add-ClusterDisk | |
0 2 ${OP} 0 Add-ClusterFileServerRole | |
0 2 ${OP} 0 Add-ClusterGenericApplicationRole | |
0 2 ${OP} 0 Add-ClusterGenericScriptRole | |
0 2 ${OP} 0 Add-ClusterGenericServiceRole | |
0 2 ${OP} 0 Add-ClusterGroup | |
0 2 ${OP} 0 Add-ClusteriSCSITargetServerRole | |
0 2 ${OP} 0 Add-ClusteriSCSITargetServerRole | |
0 2 ${OP} 0 Add-ClusterNode | |
0 2 ${OP} 0 Add-ClusterPrintServerRole | |
0 2 ${OP} 0 Add-ClusterResource | |
0 2 ${OP} 0 Add-ClusterResourceDependency | |
0 2 ${OP} 0 Add-ClusterResourceType | |
0 2 ${OP} 0 Add-ClusterScaleOutFileServerRole | |
0 2 ${OP} 0 Add-ClusterServerRole | |
0 2 ${OP} 0 Add-ClusterSharedVolume | |
0 2 ${OP} 0 Add-ClusterVirtualMachineRole | |
0 2 ${OP} 0 Add-ClusterVMMonitoredItem | |
0 2 ${OP} 0 Add-Computer | |
0 2 ${OP} 0 Add-Content | |
0 2 ${OP} 0 Add-History | |
0 2 ${OP} 0 Add-IscsiVirtualDiskTargetMapping | |
0 2 ${OP} 0 Add-JobTrigger | |
0 2 ${OP} 0 Add-KdsRootKey | |
0 2 ${OP} 0 Add-Member | |
0 2 ${OP} 0 Add-NlbClusterNode | |
0 2 ${OP} 0 Add-NlbClusterNodeDip | |
0 2 ${OP} 0 Add-NlbClusterPortRule | |
0 2 ${OP} 0 Add-NlbClusterVip | |
0 2 ${OP} 0 Add-PSSnapin | |
0 2 ${OP} 0 Add-Type | |
0 2 ${OP} 0 Add-VMDvdDrive | |
0 2 ${OP} 0 Add-VMFibreChannelHba | |
0 2 ${OP} 0 Add-VMHardDiskDrive | |
0 2 ${OP} 0 Add-VMMigrationNetwork | |
0 2 ${OP} 0 Add-VMNetworkAdapter | |
0 2 ${OP} 0 Add-VMNetworkAdapterAcl | |
0 2 ${OP} 0 Add-VMRemoteFx3dVideoAdapter | |
0 2 ${OP} 0 Add-VMScsiController | |
0 2 ${OP} 0 Add-VMStoragePath | |
0 2 ${OP} 0 Add-VMSwitch | |
0 2 ${OP} 0 Add-VMSwitchExtensionPortFeature | |
0 2 ${OP} 0 Add-VMSwitchExtensionSwitchFeature | |
0 2 ${OP} 0 Add-WindowsDriver | |
0 2 ${OP} 0 Add-WindowsPackage | |
0 2 ${OP} 0 Add-WsusComputer | |
0 2 ${OP} 0 Approve-WsusUpdate | |
0 2 ${OP} 0 Backup-GPO | |
0 2 ${OP} 0 Block-ClusterAccess | |
0 2 ${OP} 0 Block-GPInheritance | |
0 2 ${OP} 0 Checkpoint-Computer | |
0 2 ${OP} 0 Checkpoint-IscsiVirtualDisk | |
0 2 ${OP} 0 Checkpoint-VM | |
0 2 ${OP} 0 Clear-ADAccountExpiration | |
0 2 ${OP} 0 Clear-ADClaimTransformLink | |
0 2 ${OP} 0 Clear-ClusterDiskReservation | |
0 2 ${OP} 0 Clear-ClusterNode | |
0 2 ${OP} 0 Clear-Content | |
0 2 ${OP} 0 Clear-EventLog | |
0 2 ${OP} 0 Clear-History | |
0 2 ${OP} 0 Clear-Item | |
0 2 ${OP} 0 Clear-ItemProperty | |
0 2 ${OP} 0 Clear-KdsCache | |
0 2 ${OP} 0 Clear-Tpm | |
0 2 ${OP} 0 Clear-Variable | |
0 2 ${OP} 0 Clear-WindowsCorruptMountPoint | |
0 2 ${OP} 0 Compare-Object | |
0 2 ${OP} 0 Compare-VM | |
0 2 ${OP} 0 Complete-BitsTransfer | |
0 2 ${OP} 0 Complete-DtcDiagnosticTransaction | |
0 2 ${OP} 0 Complete-Transaction | |
0 2 ${OP} 0 Complete-VMFailover | |
0 2 ${OP} 0 Confirm-SecureBootUEFI | |
0 2 ${OP} 0 Connect-PSSession | |
0 2 ${OP} 0 Connect-VMNetworkAdapter | |
0 2 ${OP} 0 Connect-VMSan | |
0 2 ${OP} 0 Connect-WSMan | |
0 2 ${OP} 0 ConvertFrom-Csv | |
0 2 ${OP} 0 ConvertFrom-Json | |
0 2 ${OP} 0 ConvertFrom-SecureString | |
0 2 ${OP} 0 ConvertFrom-StringData | |
0 2 ${OP} 0 Convert-IscsiVirtualDisk | |
0 2 ${OP} 0 Convert-Path | |
0 2 ${OP} 0 ConvertTo-Csv | |
0 2 ${OP} 0 ConvertTo-Html | |
0 2 ${OP} 0 ConvertTo-Json | |
0 2 ${OP} 0 ConvertTo-SecureString | |
0 2 ${OP} 0 ConvertTo-TpmOwnerAuth | |
0 2 ${OP} 0 ConvertTo-Xml | |
0 2 ${OP} 0 Convert-VHD | |
0 2 ${OP} 0 Copy-GPO | |
0 2 ${OP} 0 Copy-Item | |
0 2 ${OP} 0 Copy-ItemProperty | |
0 2 ${OP} 0 Debug-Process | |
0 2 ${OP} 0 Deny-WsusUpdate | |
0 2 ${OP} 0 Disable-ADAccount | |
0 2 ${OP} 0 Disable-ADOptionalFeature | |
0 2 ${OP} 0 Disable-CauClusterRole | |
0 2 ${OP} 0 Disable-ComputerRestore | |
0 2 ${OP} 0 Disable-JobTrigger | |
0 2 ${OP} 0 Disable-NlbClusterPortRule | |
0 2 ${OP} 0 Disable-PSBreakpoint | |
0 2 ${OP} 0 Disable-PSRemoting | |
0 2 ${OP} 0 Disable-PSSessionConfiguration | |
0 2 ${OP} 0 Disable-ScheduledJob | |
0 2 ${OP} 0 Disable-TpmAutoProvisioning | |
0 2 ${OP} 0 Disable-VMEventing | |
0 2 ${OP} 0 Disable-VMIntegrationService | |
0 2 ${OP} 0 Disable-VMMigration | |
0 2 ${OP} 0 Disable-VMRemoteFXPhysicalVideoAdapter | |
0 2 ${OP} 0 Disable-VMResourceMetering | |
0 2 ${OP} 0 Disable-VMSwitchExtension | |
0 2 ${OP} 0 Disable-WindowsErrorReporting | |
0 2 ${OP} 0 Disable-WindowsOptionalFeature | |
0 2 ${OP} 0 Disable-WSManCredSSP | |
0 2 ${OP} 0 Disconnect-PSSession | |
0 2 ${OP} 0 Disconnect-VMNetworkAdapter | |
0 2 ${OP} 0 Disconnect-VMSan | |
0 2 ${OP} 0 Disconnect-WSMan | |
0 2 ${OP} 0 Dismount-IscsiVirtualDiskSnapshot | |
0 2 ${OP} 0 Dismount-VHD | |
0 2 ${OP} 0 Dismount-WindowsImage | |
0 2 ${OP} 0 Enable-ADAccount | |
0 2 ${OP} 0 Enable-ADOptionalFeature | |
0 2 ${OP} 0 Enable-CauClusterRole | |
0 2 ${OP} 0 Enable-ComputerRestore | |
0 2 ${OP} 0 Enable-JobTrigger | |
0 2 ${OP} 0 Enable-NlbClusterPortRule | |
0 2 ${OP} 0 Enable-PSBreakpoint | |
0 2 ${OP} 0 Enable-PSRemoting | |
0 2 ${OP} 0 Enable-PSSessionConfiguration | |
0 2 ${OP} 0 Enable-ScheduledJob | |
0 2 ${OP} 0 Enable-TpmAutoProvisioning | |
0 2 ${OP} 0 Enable-VMEventing | |
0 2 ${OP} 0 Enable-VMIntegrationService | |
0 2 ${OP} 0 Enable-VMMigration | |
0 2 ${OP} 0 Enable-VMRemoteFXPhysicalVideoAdapter | |
0 2 ${OP} 0 Enable-VMReplication | |
0 2 ${OP} 0 Enable-VMResourceMetering | |
0 2 ${OP} 0 Enable-VMSwitchExtension | |
0 2 ${OP} 0 Enable-WindowsErrorReporting | |
0 2 ${OP} 0 Enable-WindowsOptionalFeature | |
0 2 ${OP} 0 Enable-WSManCredSSP | |
0 2 ${OP} 0 Enter-PSSession | |
0 2 ${OP} 0 Exit-PSSession | |
0 2 ${OP} 0 Expand-IscsiVirtualDisk | |
0 2 ${OP} 0 Export-Alias | |
0 2 ${OP} 0 Export-CauReport | |
0 2 ${OP} 0 Export-Certificate | |
0 2 ${OP} 0 Export-Clixml | |
0 2 ${OP} 0 Export-Console | |
0 2 ${OP} 0 Export-Counter | |
0 2 ${OP} 0 Export-Csv | |
0 2 ${OP} 0 Export-FormatData | |
0 2 ${OP} 0 Export-IscsiVirtualDiskSnapshot | |
0 2 ${OP} 0 Export-ModuleMember | |
0 2 ${OP} 0 Export-PfxCertificate | |
0 2 ${OP} 0 Export-PSSession | |
0 2 ${OP} 0 Export-VM | |
0 2 ${OP} 0 Export-VMSnapshot | |
0 2 ${OP} 0 ForEach-Object | |
0 2 ${OP} 0 Format-Custom | |
0 2 ${OP} 0 Format-List | |
0 2 ${OP} 0 Format-SecureBootUEFI | |
0 2 ${OP} 0 Format-Table | |
0 2 ${OP} 0 Format-Wide | |
0 2 ${OP} 0 Get-Acl | |
0 2 ${OP} 0 Get-ADAccountAuthorizationGroup | |
0 2 ${OP} 0 Get-ADAccountResultantPasswordReplicationPolicy | |
0 2 ${OP} 0 Get-ADCentralAccessPolicy | |
0 2 ${OP} 0 Get-ADCentralAccessRule | |
0 2 ${OP} 0 Get-ADClaimTransformPolicy | |
0 2 ${OP} 0 Get-ADClaimType | |
0 2 ${OP} 0 Get-ADComputer | |
0 2 ${OP} 0 Get-ADComputerServiceAccount | |
0 2 ${OP} 0 Get-ADDCCloningExcludedApplicationList | |
0 2 ${OP} 0 Get-ADDefaultDomainPasswordPolicy | |
0 2 ${OP} 0 Get-ADDomain | |
0 2 ${OP} 0 Get-ADDomainController | |
0 2 ${OP} 0 Get-ADDomainControllerPasswordReplicationPolicy | |
0 2 ${OP} 0 Get-ADDomainControllerPasswordReplicationPolicyUsage | |
0 2 ${OP} 0 Get-ADFineGrainedPasswordPolicy | |
0 2 ${OP} 0 Get-ADFineGrainedPasswordPolicySubject | |
0 2 ${OP} 0 Get-ADForest | |
0 2 ${OP} 0 Get-ADGroup | |
0 2 ${OP} 0 Get-ADGroupMember | |
0 2 ${OP} 0 Get-ADObject | |
0 2 ${OP} 0 Get-ADOptionalFeature | |
0 2 ${OP} 0 Get-ADOrganizationalUnit | |
0 2 ${OP} 0 Get-ADPrincipalGroupMembership | |
0 2 ${OP} 0 Get-ADReplicationAttributeMetadata | |
0 2 ${OP} 0 Get-ADReplicationConnection | |
0 2 ${OP} 0 Get-ADReplicationFailure | |
0 2 ${OP} 0 Get-ADReplicationPartnerMetadata | |
0 2 ${OP} 0 Get-ADReplicationQueueOperation | |
0 2 ${OP} 0 Get-ADReplicationSite | |
0 2 ${OP} 0 Get-ADReplicationSiteLink | |
0 2 ${OP} 0 Get-ADReplicationSiteLinkBridge | |
0 2 ${OP} 0 Get-ADReplicationSubnet | |
0 2 ${OP} 0 Get-ADReplicationUpToDatenessVectorTable | |
0 2 ${OP} 0 Get-ADResourceProperty | |
0 2 ${OP} 0 Get-ADResourcePropertyList | |
0 2 ${OP} 0 Get-ADResourcePropertyValueType | |
0 2 ${OP} 0 Get-ADRootDSE | |
0 2 ${OP} 0 Get-ADServiceAccount | |
0 2 ${OP} 0 Get-ADTrust | |
0 2 ${OP} 0 Get-ADUser | |
0 2 ${OP} 0 Get-ADUserResultantPasswordPolicy | |
0 2 ${OP} 0 Get-Alias | |
0 2 ${OP} 0 Get-AppLockerFileInformation | |
0 2 ${OP} 0 Get-AppLockerPolicy | |
0 2 ${OP} 0 Get-AppxPackage | |
0 2 ${OP} 0 Get-AppxPackageManifest | |
0 2 ${OP} 0 Get-AppxProvisionedPackage | |
0 2 ${OP} 0 Get-AuthenticodeSignature | |
0 2 ${OP} 0 Get-BitsTransfer | |
0 2 ${OP} 0 Get-BpaModel | |
0 2 ${OP} 0 Get-BpaResult | |
0 2 ${OP} 0 Get-CauClusterRole | |
0 2 ${OP} 0 Get-CauPlugin | |
0 2 ${OP} 0 Get-CauReport | |
0 2 ${OP} 0 Get-CauRun | |
0 2 ${OP} 0 Get-Certificate | |
0 2 ${OP} 0 Get-CertificateAutoEnrollmentPolicy | |
0 2 ${OP} 0 Get-CertificateEnrollmentPolicyServer | |
0 2 ${OP} 0 Get-CertificateNotificationTask | |
0 2 ${OP} 0 Get-ChildItem | |
0 2 ${OP} 0 Get-CimAssociatedInstance | |
0 2 ${OP} 0 Get-CimClass | |
0 2 ${OP} 0 Get-CimInstance | |
0 2 ${OP} 0 Get-CimSession | |
0 2 ${OP} 0 Get-Cluster | |
0 2 ${OP} 0 Get-ClusterAccess | |
0 2 ${OP} 0 Get-ClusterAvailableDisk | |
0 2 ${OP} 0 Get-ClusterCheckpoint | |
0 2 ${OP} 0 Get-ClusterGroup | |
0 2 ${OP} 0 Get-ClusterLog | |
0 2 ${OP} 0 Get-ClusterNetwork | |
0 2 ${OP} 0 Get-ClusterNetworkInterface | |
0 2 ${OP} 0 Get-ClusterNode | |
0 2 ${OP} 0 Get-ClusterOwnerNode | |
0 2 ${OP} 0 Get-ClusterParameter | |
0 2 ${OP} 0 Get-ClusterQuorum | |
0 2 ${OP} 0 Get-ClusterResource | |
0 2 ${OP} 0 Get-ClusterResourceDependency | |
0 2 ${OP} 0 Get-ClusterResourceDependencyReport | |
0 2 ${OP} 0 Get-ClusterResourceType | |
0 2 ${OP} 0 Get-ClusterSharedVolume | |
0 2 ${OP} 0 Get-ClusterVMMonitoredItem | |
0 2 ${OP} 0 Get-Command | |
0 2 ${OP} 0 Get-ComputerRestorePoint | |
0 2 ${OP} 0 Get-Content | |
0 2 ${OP} 0 Get-ControlPanelItem | |
0 2 ${OP} 0 Get-Counter | |
0 2 ${OP} 0 Get-Credential | |
0 2 ${OP} 0 Get-Culture | |
0 2 ${OP} 0 Get-DAPolicyChange | |
0 2 ${OP} 0 Get-Date | |
0 2 ${OP} 0 Get-Event | |
0 2 ${OP} 0 Get-EventLog | |
0 2 ${OP} 0 Get-EventSubscriber | |
0 2 ${OP} 0 Get-ExecutionPolicy | |
0 2 ${OP} 0 Get-FormatData | |
0 2 ${OP} 0 Get-GPInheritance | |
0 2 ${OP} 0 Get-GPO | |
0 2 ${OP} 0 Get-GPOReport | |
0 2 ${OP} 0 Get-GPPermission | |
0 2 ${OP} 0 Get-GPPrefRegistryValue | |
0 2 ${OP} 0 Get-GPRegistryValue | |
0 2 ${OP} 0 Get-GPResultantSetOfPolicy | |
0 2 ${OP} 0 Get-GPStarterGPO | |
0 2 ${OP} 0 Get-Help | |
0 2 ${OP} 0 Get-History | |
0 2 ${OP} 0 Get-Host | |
0 2 ${OP} 0 Get-HotFix | |
0 2 ${OP} 0 Get-IscsiServerTarget | |
0 2 ${OP} 0 Get-IscsiTargetServerSetting | |
0 2 ${OP} 0 Get-IscsiVirtualDisk | |
0 2 ${OP} 0 Get-IscsiVirtualDiskSnapshot | |
0 2 ${OP} 0 Get-Item | |
0 2 ${OP} 0 Get-ItemProperty | |
0 2 ${OP} 0 Get-Job | |
0 2 ${OP} 0 Get-JobTrigger | |
0 2 ${OP} 0 Get-KdsConfiguration | |
0 2 ${OP} 0 Get-KdsRootKey | |
0 2 ${OP} 0 Get-Location | |
0 2 ${OP} 0 Get-Member | |
0 2 ${OP} 0 Get-Module | |
0 2 ${OP} 0 Get-NfsMappedIdentity | |
0 2 ${OP} 0 Get-NfsNetgroup | |
0 2 ${OP} 0 Get-NlbCluster | |
0 2 ${OP} 0 Get-NlbClusterDriverInfo | |
0 2 ${OP} 0 Get-NlbClusterNode | |
0 2 ${OP} 0 Get-NlbClusterNodeDip | |
0 2 ${OP} 0 Get-NlbClusterNodeNetworkInterface | |
0 2 ${OP} 0 Get-NlbClusterPortRule | |
0 2 ${OP} 0 Get-NlbClusterVip | |
0 2 ${OP} 0 Get-PfxCertificate | |
0 2 ${OP} 0 Get-PfxData | |
0 2 ${OP} 0 Get-Process | |
0 2 ${OP} 0 Get-PSBreakpoint | |
0 2 ${OP} 0 Get-PSCallStack | |
0 2 ${OP} 0 Get-PSDrive | |
0 2 ${OP} 0 Get-PSProvider | |
0 2 ${OP} 0 Get-PSSession | |
0 2 ${OP} 0 Get-PSSessionConfiguration | |
0 2 ${OP} 0 Get-PSSnapin | |
0 2 ${OP} 0 Get-Random | |
0 2 ${OP} 0 Get-ScheduledJob | |
0 2 ${OP} 0 Get-ScheduledJobOption | |
0 2 ${OP} 0 Get-SecureBootPolicy | |
0 2 ${OP} 0 Get-SecureBootUEFI | |
0 2 ${OP} 0 Get-Service | |
0 2 ${OP} 0 Get-Tpm | |
0 2 ${OP} 0 Get-TraceSource | |
0 2 ${OP} 0 Get-Transaction | |
0 2 ${OP} 0 Get-TroubleshootingPack | |
0 2 ${OP} 0 Get-TypeData | |
0 2 ${OP} 0 Get-UICulture | |
0 2 ${OP} 0 Get-Unique | |
0 2 ${OP} 0 Get-Variable | |
0 2 ${OP} 0 Get-VHD | |
0 2 ${OP} 0 Get-VM | |
0 2 ${OP} 0 Get-VMBios | |
0 2 ${OP} 0 Get-VMComPort | |
0 2 ${OP} 0 Get-VMConnectAccess | |
0 2 ${OP} 0 Get-VMDvdDrive | |
0 2 ${OP} 0 Get-VMFibreChannelHba | |
0 2 ${OP} 0 Get-VMFloppyDiskDrive | |
0 2 ${OP} 0 Get-VMHardDiskDrive | |
0 2 ${OP} 0 Get-VMHost | |
0 2 ${OP} 0 Get-VMHostNumaNode | |
0 2 ${OP} 0 Get-VMHostNumaNodeStatus | |
0 2 ${OP} 0 Get-VMIdeController | |
0 2 ${OP} 0 Get-VMIntegrationService | |
0 2 ${OP} 0 Get-VMMemory | |
0 2 ${OP} 0 Get-VMMigrationNetwork | |
0 2 ${OP} 0 Get-VMNetworkAdapter | |
0 2 ${OP} 0 Get-VMNetworkAdapterAcl | |
0 2 ${OP} 0 Get-VMNetworkAdapterFailoverConfiguration | |
0 2 ${OP} 0 Get-VMNetworkAdapterVlan | |
0 2 ${OP} 0 Get-VMProcessor | |
0 2 ${OP} 0 Get-VMRemoteFx3dVideoAdapter | |
0 2 ${OP} 0 Get-VMRemoteFXPhysicalVideoAdapter | |
0 2 ${OP} 0 Get-VMReplication | |
0 2 ${OP} 0 Get-VMReplicationAuthorizationEntry | |
0 2 ${OP} 0 Get-VMReplicationServer | |
0 2 ${OP} 0 Get-VMResourcePool | |
0 2 ${OP} 0 Get-VMSan | |
0 2 ${OP} 0 Get-VMScsiController | |
0 2 ${OP} 0 Get-VMSnapshot | |
0 2 ${OP} 0 Get-VMStoragePath | |
0 2 ${OP} 0 Get-VMSwitch | |
0 2 ${OP} 0 Get-VMSwitchExtension | |
0 2 ${OP} 0 Get-VMSwitchExtensionPortData | |
0 2 ${OP} 0 Get-VMSwitchExtensionPortFeature | |
0 2 ${OP} 0 Get-VMSwitchExtensionSwitchData | |
0 2 ${OP} 0 Get-VMSwitchExtensionSwitchFeature | |
0 2 ${OP} 0 Get-VMSystemSwitchExtension | |
0 2 ${OP} 0 Get-VMSystemSwitchExtensionPortFeature | |
0 2 ${OP} 0 Get-VMSystemSwitchExtensionSwitchFeature | |
0 2 ${OP} 0 Get-WinAcceptLanguageFromLanguageListOptOut | |
0 2 ${OP} 0 Get-WinCultureFromLanguageListOptOut | |
0 2 ${OP} 0 Get-WinDefaultInputMethodOverride | |
0 2 ${OP} 0 Get-WindowsDriver | |
0 2 ${OP} 0 Get-WindowsEdition | |
0 2 ${OP} 0 Get-WindowsErrorReporting | |
0 2 ${OP} 0 Get-WindowsImage | |
0 2 ${OP} 0 Get-WindowsOptionalFeature | |
0 2 ${OP} 0 Get-WindowsPackage | |
0 2 ${OP} 0 Get-WinEvent | |
0 2 ${OP} 0 Get-WinHomeLocation | |
0 2 ${OP} 0 Get-WinLanguageBarOption | |
0 2 ${OP} 0 Get-WinSystemLocale | |
0 2 ${OP} 0 Get-WinUILanguageOverride | |
0 2 ${OP} 0 Get-WinUserLanguageList | |
0 2 ${OP} 0 Get-WmiObject | |
0 2 ${OP} 0 Get-WSManCredSSP | |
0 2 ${OP} 0 Get-WSManInstance | |
0 2 ${OP} 0 Get-WsusClassification | |
0 2 ${OP} 0 Get-WsusComputer | |
0 2 ${OP} 0 Get-WsusProduct | |
0 2 ${OP} 0 Get-WsusServer | |
0 2 ${OP} 0 Get-WsusUpdate | |
0 2 ${OP} 0 Grant-ClusterAccess | |
0 2 ${OP} 0 Grant-VMConnectAccess | |
0 2 ${OP} 0 Group-Object | |
0 2 ${OP} 0 Import-Alias | |
0 2 ${OP} 0 Import-Certificate | |
0 2 ${OP} 0 Import-Clixml | |
0 2 ${OP} 0 Import-Counter | |
0 2 ${OP} 0 Import-GPO | |
0 2 ${OP} 0 Import-IscsiVirtualDisk | |
0 2 ${OP} 0 Import-LocalizedData | |
0 2 ${OP} 0 Import-Module | |
0 2 ${OP} 0 Import-PfxCertificate | |
0 2 ${OP} 0 Import-PSSession | |
0 2 ${OP} 0 Import-TpmOwnerAuth | |
0 2 ${OP} 0 Import-VM | |
0 2 ${OP} 0 Import-VMInitialReplication | |
0 2 ${OP} 0 Initialize-Tpm | |
0 2 ${OP} 0 Install-ADServiceAccount | |
0 2 ${OP} 0 Install-NfsMappingStore | |
0 2 ${OP} 0 Invoke-BpaModel | |
0 2 ${OP} 0 Invoke-CauRun | |
0 2 ${OP} 0 Invoke-CauScan | |
0 2 ${OP} 0 Invoke-CimMethod | |
0 2 ${OP} 0 Invoke-Command | |
0 2 ${OP} 0 Invoke-Expression | |
0 2 ${OP} 0 Invoke-GPUpdate | |
0 2 ${OP} 0 Invoke-History | |
0 2 ${OP} 0 Invoke-Item | |
0 2 ${OP} 0 Invoke-RestMethod | |
0 2 ${OP} 0 Invoke-TroubleshootingPack | |
0 2 ${OP} 0 Invoke-WebRequest | |
0 2 ${OP} 0 Invoke-WmiMethod | |
0 2 ${OP} 0 Invoke-WSManAction | |
0 2 ${OP} 0 Invoke-WsusServerCleanup | |
0 2 ${OP} 0 Join-DtcDiagnosticResourceManager | |
0 2 ${OP} 0 Join-Path | |
0 2 ${OP} 0 Limit-EventLog | |
0 2 ${OP} 0 Measure-Command | |
0 2 ${OP} 0 Measure-Object | |
0 2 ${OP} 0 Measure-VM | |
0 2 ${OP} 0 Measure-VMReplication | |
0 2 ${OP} 0 Measure-VMResourcePool | |
0 2 ${OP} 0 Merge-VHD | |
0 2 ${OP} 0 Mount-IscsiVirtualDiskSnapshot | |
0 2 ${OP} 0 Mount-VHD | |
0 2 ${OP} 0 Mount-WindowsImage | |
0 2 ${OP} 0 Move-ADDirectoryServer | |
0 2 ${OP} 0 Move-ADDirectoryServerOperationMasterRole | |
0 2 ${OP} 0 Move-ADObject | |
0 2 ${OP} 0 Move-ClusterGroup | |
0 2 ${OP} 0 Move-ClusterResource | |
0 2 ${OP} 0 Move-ClusterSharedVolume | |
0 2 ${OP} 0 Move-ClusterVirtualMachineRole | |
0 2 ${OP} 0 Move-Item | |
0 2 ${OP} 0 Move-ItemProperty | |
0 2 ${OP} 0 Move-VM | |
0 2 ${OP} 0 Move-VMStorage | |
0 2 ${OP} 0 New-ADCentralAccessPolicy | |
0 2 ${OP} 0 New-ADCentralAccessRule | |
0 2 ${OP} 0 New-ADClaimTransformPolicy | |
0 2 ${OP} 0 New-ADClaimType | |
0 2 ${OP} 0 New-ADComputer | |
0 2 ${OP} 0 New-ADDCCloneConfigFile | |
0 2 ${OP} 0 New-ADFineGrainedPasswordPolicy | |
0 2 ${OP} 0 New-ADGroup | |
0 2 ${OP} 0 New-ADObject | |
0 2 ${OP} 0 New-ADOrganizationalUnit | |
0 2 ${OP} 0 New-ADReplicationSite | |
0 2 ${OP} 0 New-ADReplicationSiteLink | |
0 2 ${OP} 0 New-ADReplicationSiteLinkBridge | |
0 2 ${OP} 0 New-ADReplicationSubnet | |
0 2 ${OP} 0 New-ADResourceProperty | |
0 2 ${OP} 0 New-ADResourcePropertyList | |
0 2 ${OP} 0 New-ADServiceAccount | |
0 2 ${OP} 0 New-ADUser | |
0 2 ${OP} 0 New-Alias | |
0 2 ${OP} 0 New-AppLockerPolicy | |
0 2 ${OP} 0 New-CertificateNotificationTask | |
0 2 ${OP} 0 New-CimInstance | |
0 2 ${OP} 0 New-CimSession | |
0 2 ${OP} 0 New-CimSessionOption | |
0 2 ${OP} 0 New-Cluster | |
0 2 ${OP} 0 New-DtcDiagnosticTransaction | |
0 2 ${OP} 0 New-Event | |
0 2 ${OP} 0 New-EventLog | |
0 2 ${OP} 0 New-GPLink | |
0 2 ${OP} 0 New-GPO | |
0 2 ${OP} 0 New-GPStarterGPO | |
0 2 ${OP} 0 New-IscsiServerTarget | |
0 2 ${OP} 0 New-IscsiVirtualDisk | |
0 2 ${OP} 0 New-Item | |
0 2 ${OP} 0 New-ItemProperty | |
0 2 ${OP} 0 New-JobTrigger | |
0 2 ${OP} 0 New-Module | |
0 2 ${OP} 0 New-ModuleManifest | |
0 2 ${OP} 0 New-NetIPsecAuthProposal | |
0 2 ${OP} 0 New-NetIPsecMainModeCryptoProposal | |
0 2 ${OP} 0 New-NetIPsecQuickModeCryptoProposal | |
0 2 ${OP} 0 New-NfsMappedIdentity | |
0 2 ${OP} 0 New-NfsNetgroup | |
0 2 ${OP} 0 New-NlbCluster | |
0 2 ${OP} 0 New-NlbClusterIpv6Address | |
0 2 ${OP} 0 New-Object | |
0 2 ${OP} 0 New-PSDrive | |
0 2 ${OP} 0 New-PSSession | |
0 2 ${OP} 0 New-PSSessionConfigurationFile | |
0 2 ${OP} 0 New-PSSessionOption | |
0 2 ${OP} 0 New-PSTransportOption | |
0 2 ${OP} 0 New-PSWorkflowExecutionOption | |
0 2 ${OP} 0 New-ScheduledJobOption | |
0 2 ${OP} 0 New-SelfSignedCertificate | |
0 2 ${OP} 0 New-Service | |
0 2 ${OP} 0 New-TimeSpan | |
0 2 ${OP} 0 New-Variable | |
0 2 ${OP} 0 New-VFD | |
0 2 ${OP} 0 New-VHD | |
0 2 ${OP} 0 New-VM | |
0 2 ${OP} 0 New-VMReplicationAuthorizationEntry | |
0 2 ${OP} 0 New-VMResourcePool | |
0 2 ${OP} 0 New-VMSan | |
0 2 ${OP} 0 New-VMSwitch | |
0 2 ${OP} 0 New-WebServiceProxy | |
0 2 ${OP} 0 New-WinEvent | |
0 2 ${OP} 0 New-WinUserLanguageList | |
0 2 ${OP} 0 New-WSManInstance | |
0 2 ${OP} 0 New-WSManSessionOption | |
0 2 ${OP} 0 Optimize-VHD | |
0 2 ${OP} 0 Out-Default | |
0 2 ${OP} 0 Out-File | |
0 2 ${OP} 0 Out-GridView | |
0 2 ${OP} 0 Out-Host | |
0 2 ${OP} 0 Out-Null | |
0 2 ${OP} 0 Out-Printer | |
0 2 ${OP} 0 Out-String | |
0 2 ${OP} 0 Pop-Location | |
0 2 ${OP} 0 Push-Location | |
0 2 ${OP} 0 Read-Host | |
0 2 ${OP} 0 Receive-DtcDiagnosticTransaction | |
0 2 ${OP} 0 Receive-Job | |
0 2 ${OP} 0 Receive-PSSession | |
0 2 ${OP} 0 Register-CauPlugin | |
0 2 ${OP} 0 Register-CimIndicationEvent | |
0 2 ${OP} 0 Register-EngineEvent | |
0 2 ${OP} 0 Register-ObjectEvent | |
0 2 ${OP} 0 Register-PSSessionConfiguration | |
0 2 ${OP} 0 Register-ScheduledJob | |
0 2 ${OP} 0 Register-WmiEvent | |
0 2 ${OP} 0 Remove-ADCentralAccessPolicy | |
0 2 ${OP} 0 Remove-ADCentralAccessPolicyMember | |
0 2 ${OP} 0 Remove-ADCentralAccessRule | |
0 2 ${OP} 0 Remove-ADClaimTransformPolicy | |
0 2 ${OP} 0 Remove-ADClaimType | |
0 2 ${OP} 0 Remove-ADComputer | |
0 2 ${OP} 0 Remove-ADComputerServiceAccount | |
0 2 ${OP} 0 Remove-ADDomainControllerPasswordReplicationPolicy | |
0 2 ${OP} 0 Remove-ADFineGrainedPasswordPolicy | |
0 2 ${OP} 0 Remove-ADFineGrainedPasswordPolicySubject | |
0 2 ${OP} 0 Remove-ADGroup | |
0 2 ${OP} 0 Remove-ADGroupMember | |
0 2 ${OP} 0 Remove-ADObject | |
0 2 ${OP} 0 Remove-ADOrganizationalUnit | |
0 2 ${OP} 0 Remove-ADPrincipalGroupMembership | |
0 2 ${OP} 0 Remove-ADReplicationSite | |
0 2 ${OP} 0 Remove-ADReplicationSiteLink | |
0 2 ${OP} 0 Remove-ADReplicationSiteLinkBridge | |
0 2 ${OP} 0 Remove-ADReplicationSubnet | |
0 2 ${OP} 0 Remove-ADResourceProperty | |
0 2 ${OP} 0 Remove-ADResourcePropertyList | |
0 2 ${OP} 0 Remove-ADResourcePropertyListMember | |
0 2 ${OP} 0 Remove-ADServiceAccount | |
0 2 ${OP} 0 Remove-ADUser | |
0 2 ${OP} 0 Remove-AppxPackage | |
0 2 ${OP} 0 Remove-AppxProvisionedPackage | |
0 2 ${OP} 0 Remove-BitsTransfer | |
0 2 ${OP} 0 Remove-CauClusterRole | |
0 2 ${OP} 0 Remove-CertificateEnrollmentPolicyServer | |
0 2 ${OP} 0 Remove-CertificateNotificationTask | |
0 2 ${OP} 0 Remove-CimInstance | |
0 2 ${OP} 0 Remove-CimSession | |
0 2 ${OP} 0 Remove-Cluster | |
0 2 ${OP} 0 Remove-ClusterAccess | |
0 2 ${OP} 0 Remove-ClusterCheckpoint | |
0 2 ${OP} 0 Remove-ClusterGroup | |
0 2 ${OP} 0 Remove-ClusterNode | |
0 2 ${OP} 0 Remove-ClusterResource | |
0 2 ${OP} 0 Remove-ClusterResourceDependency | |
0 2 ${OP} 0 Remove-ClusterResourceType | |
0 2 ${OP} 0 Remove-ClusterSharedVolume | |
0 2 ${OP} 0 Remove-ClusterVMMonitoredItem | |
0 2 ${OP} 0 Remove-Computer | |
0 2 ${OP} 0 Remove-Event | |
0 2 ${OP} 0 Remove-EventLog | |
0 2 ${OP} 0 Remove-GPLink | |
0 2 ${OP} 0 Remove-GPO | |
0 2 ${OP} 0 Remove-GPPrefRegistryValue | |
0 2 ${OP} 0 Remove-GPRegistryValue | |
0 2 ${OP} 0 Remove-IscsiServerTarget | |
0 2 ${OP} 0 Remove-IscsiVirtualDisk | |
0 2 ${OP} 0 Remove-IscsiVirtualDiskSnapshot | |
0 2 ${OP} 0 Remove-IscsiVirtualDiskTargetMapping | |
0 2 ${OP} 0 Remove-Item | |
0 2 ${OP} 0 Remove-ItemProperty | |
0 2 ${OP} 0 Remove-Job | |
0 2 ${OP} 0 Remove-JobTrigger | |
0 2 ${OP} 0 Remove-Module | |
0 2 ${OP} 0 Remove-NfsMappedIdentity | |
0 2 ${OP} 0 Remove-NfsNetgroup | |
0 2 ${OP} 0 Remove-NlbCluster | |
0 2 ${OP} 0 Remove-NlbClusterNode | |
0 2 ${OP} 0 Remove-NlbClusterNodeDip | |
0 2 ${OP} 0 Remove-NlbClusterPortRule | |
0 2 ${OP} 0 Remove-NlbClusterVip | |
0 2 ${OP} 0 Remove-PSBreakpoint | |
0 2 ${OP} 0 Remove-PSDrive | |
0 2 ${OP} 0 Remove-PSSession | |
0 2 ${OP} 0 Remove-PSSnapin | |
0 2 ${OP} 0 Remove-TypeData | |
0 2 ${OP} 0 Remove-Variable | |
0 2 ${OP} 0 Remove-VM | |
0 2 ${OP} 0 Remove-VMDvdDrive | |
0 2 ${OP} 0 Remove-VMFibreChannelHba | |
0 2 ${OP} 0 Remove-VMHardDiskDrive | |
0 2 ${OP} 0 Remove-VMMigrationNetwork | |
0 2 ${OP} 0 Remove-VMNetworkAdapter | |
0 2 ${OP} 0 Remove-VMNetworkAdapterAcl | |
0 2 ${OP} 0 Remove-VMRemoteFx3dVideoAdapter | |
0 2 ${OP} 0 Remove-VMReplication | |
0 2 ${OP} 0 Remove-VMReplicationAuthorizationEntry | |
0 2 ${OP} 0 Remove-VMResourcePool | |
0 2 ${OP} 0 Remove-VMSan | |
0 2 ${OP} 0 Remove-VMSavedState | |
0 2 ${OP} 0 Remove-VMScsiController | |
0 2 ${OP} 0 Remove-VMSnapshot | |
0 2 ${OP} 0 Remove-VMStoragePath | |
0 2 ${OP} 0 Remove-VMSwitch | |
0 2 ${OP} 0 Remove-VMSwitchExtensionPortFeature | |
0 2 ${OP} 0 Remove-VMSwitchExtensionSwitchFeature | |
0 2 ${OP} 0 Remove-WindowsDriver | |
0 2 ${OP} 0 Remove-WindowsPackage | |
0 2 ${OP} 0 Remove-WmiObject | |
0 2 ${OP} 0 Remove-WSManInstance | |
0 2 ${OP} 0 Rename-ADObject | |
0 2 ${OP} 0 Rename-Computer | |
0 2 ${OP} 0 Rename-GPO | |
0 2 ${OP} 0 Rename-Item | |
0 2 ${OP} 0 Rename-ItemProperty | |
0 2 ${OP} 0 Rename-VM | |
0 2 ${OP} 0 Rename-VMNetworkAdapter | |
0 2 ${OP} 0 Rename-VMResourcePool | |
0 2 ${OP} 0 Rename-VMSan | |
0 2 ${OP} 0 Rename-VMSnapshot | |
0 2 ${OP} 0 Rename-VMSwitch | |
0 2 ${OP} 0 Repair-ClusterSharedVolume | |
0 2 ${OP} 0 Repair-VM | |
0 2 ${OP} 0 Repair-WindowsImage | |
0 2 ${OP} 0 Reset-ADServiceAccountPassword | |
0 2 ${OP} 0 Reset-ClusterVMMonitoredState | |
0 2 ${OP} 0 Reset-ComputerMachinePassword | |
0 2 ${OP} 0 Reset-VMReplicationStatistics | |
0 2 ${OP} 0 Reset-VMResourceMetering | |
0 2 ${OP} 0 Resize-VHD | |
0 2 ${OP} 0 Resolve-DnsName | |
0 2 ${OP} 0 Resolve-Path | |
0 2 ${OP} 0 Restart-Computer | |
0 2 ${OP} 0 Restart-Service | |
0 2 ${OP} 0 Restart-VM | |
0 2 ${OP} 0 Restore-ADObject | |
0 2 ${OP} 0 Restore-Computer | |
0 2 ${OP} 0 Restore-GPO | |
0 2 ${OP} 0 Restore-IscsiVirtualDisk | |
0 2 ${OP} 0 Restore-VMSnapshot | |
0 2 ${OP} 0 Resume-BitsTransfer | |
0 2 ${OP} 0 Resume-ClusterNode | |
0 2 ${OP} 0 Resume-ClusterResource | |
0 2 ${OP} 0 Resume-Job | |
0 2 ${OP} 0 Resume-NlbCluster | |
0 2 ${OP} 0 Resume-NlbClusterNode | |
0 2 ${OP} 0 Resume-Service | |
0 2 ${OP} 0 Resume-VM | |
0 2 ${OP} 0 Resume-VMReplication | |
0 2 ${OP} 0 Revoke-VMConnectAccess | |
0 2 ${OP} 0 Save-CauDebugTrace | |
0 2 ${OP} 0 Save-Help | |
0 2 ${OP} 0 Save-VM | |
0 2 ${OP} 0 Save-WindowsImage | |
0 2 ${OP} 0 Search-ADAccount | |
0 2 ${OP} 0 Select-Object | |
0 2 ${OP} 0 Select-String | |
0 2 ${OP} 0 Select-Xml | |
0 2 ${OP} 0 Send-DtcDiagnosticTransaction | |
0 2 ${OP} 0 Send-MailMessage | |
0 2 ${OP} 0 Set-Acl | |
0 2 ${OP} 0 Set-ADAccountControl | |
0 2 ${OP} 0 Set-ADAccountExpiration | |
0 2 ${OP} 0 Set-ADAccountPassword | |
0 2 ${OP} 0 Set-ADCentralAccessPolicy | |
0 2 ${OP} 0 Set-ADCentralAccessRule | |
0 2 ${OP} 0 Set-ADClaimTransformLink | |
0 2 ${OP} 0 Set-ADClaimTransformPolicy | |
0 2 ${OP} 0 Set-ADClaimType | |
0 2 ${OP} 0 Set-ADComputer | |
0 2 ${OP} 0 Set-ADDefaultDomainPasswordPolicy | |
0 2 ${OP} 0 Set-ADDomain | |
0 2 ${OP} 0 Set-ADDomainMode | |
0 2 ${OP} 0 Set-ADFineGrainedPasswordPolicy | |
0 2 ${OP} 0 Set-ADForest | |
0 2 ${OP} 0 Set-ADForestMode | |
0 2 ${OP} 0 Set-ADGroup | |
0 2 ${OP} 0 Set-ADObject | |
0 2 ${OP} 0 Set-ADOrganizationalUnit | |
0 2 ${OP} 0 Set-ADReplicationConnection | |
0 2 ${OP} 0 Set-ADReplicationSite | |
0 2 ${OP} 0 Set-ADReplicationSiteLink | |
0 2 ${OP} 0 Set-ADReplicationSiteLinkBridge | |
0 2 ${OP} 0 Set-ADReplicationSubnet | |
0 2 ${OP} 0 Set-ADResourceProperty | |
0 2 ${OP} 0 Set-ADResourcePropertyList | |
0 2 ${OP} 0 Set-ADServiceAccount | |
0 2 ${OP} 0 Set-ADUser | |
0 2 ${OP} 0 Set-Alias | |
0 2 ${OP} 0 Set-AppLockerPolicy | |
0 2 ${OP} 0 Set-AuthenticodeSignature | |
0 2 ${OP} 0 Set-BitsTransfer | |
0 2 ${OP} 0 Set-BpaResult | |
0 2 ${OP} 0 Set-CauClusterRole | |
0 2 ${OP} 0 Set-CertificateAutoEnrollmentPolicy | |
0 2 ${OP} 0 Set-CimInstance | |
0 2 ${OP} 0 Set-ClusterLog | |
0 2 ${OP} 0 Set-ClusterOwnerNode | |
0 2 ${OP} 0 Set-ClusterParameter | |
0 2 ${OP} 0 Set-ClusterQuorum | |
0 2 ${OP} 0 Set-ClusterResourceDependency | |
0 2 ${OP} 0 Set-Content | |
0 2 ${OP} 0 Set-Culture | |
0 2 ${OP} 0 Set-Date | |
0 2 ${OP} 0 Set-ExecutionPolicy | |
0 2 ${OP} 0 Set-GPInheritance | |
0 2 ${OP} 0 Set-GPLink | |
0 2 ${OP} 0 Set-GPPermission | |
0 2 ${OP} 0 Set-GPPrefRegistryValue | |
0 2 ${OP} 0 Set-GPRegistryValue | |
0 2 ${OP} 0 Set-IscsiServerTarget | |
0 2 ${OP} 0 Set-IscsiTargetServerSetting | |
0 2 ${OP} 0 Set-IscsiVirtualDisk | |
0 2 ${OP} 0 Set-IscsiVirtualDiskSnapshot | |
0 2 ${OP} 0 Set-Item | |
0 2 ${OP} 0 Set-ItemProperty | |
0 2 ${OP} 0 Set-JobTrigger | |
0 2 ${OP} 0 Set-KdsConfiguration | |
0 2 ${OP} 0 Set-Location | |
0 2 ${OP} 0 Set-NfsMappedIdentity | |
0 2 ${OP} 0 Set-NfsNetgroup | |
0 2 ${OP} 0 Set-NlbCluster | |
0 2 ${OP} 0 Set-NlbClusterNode | |
0 2 ${OP} 0 Set-NlbClusterNodeDip | |
0 2 ${OP} 0 Set-NlbClusterPortRule | |
0 2 ${OP} 0 Set-NlbClusterPortRuleNodeHandlingPriority | |
0 2 ${OP} 0 Set-NlbClusterPortRuleNodeWeight | |
0 2 ${OP} 0 Set-NlbClusterVip | |
0 2 ${OP} 0 Set-PSBreakpoint | |
0 2 ${OP} 0 Set-PSDebug | |
0 2 ${OP} 0 Set-PSSessionConfiguration | |
0 2 ${OP} 0 Set-ScheduledJob | |
0 2 ${OP} 0 Set-ScheduledJobOption | |
0 2 ${OP} 0 Set-SecureBootUEFI | |
0 2 ${OP} 0 Set-Service | |
0 2 ${OP} 0 Set-StrictMode | |
0 2 ${OP} 0 Set-TpmOwnerAuth | |
0 2 ${OP} 0 Set-TraceSource | |
0 2 ${OP} 0 Set-Variable | |
0 2 ${OP} 0 Set-VHD | |
0 2 ${OP} 0 Set-VM | |
0 2 ${OP} 0 Set-VMBios | |
0 2 ${OP} 0 Set-VMComPort | |
0 2 ${OP} 0 Set-VMDvdDrive | |
0 2 ${OP} 0 Set-VMFibreChannelHba | |
0 2 ${OP} 0 Set-VMFloppyDiskDrive | |
0 2 ${OP} 0 Set-VMHardDiskDrive | |
0 2 ${OP} 0 Set-VMHost | |
0 2 ${OP} 0 Set-VMMemory | |
0 2 ${OP} 0 Set-VMMigrationNetwork | |
0 2 ${OP} 0 Set-VMNetworkAdapter | |
0 2 ${OP} 0 Set-VMNetworkAdapterFailoverConfiguration | |
0 2 ${OP} 0 Set-VMNetworkAdapterVlan | |
0 2 ${OP} 0 Set-VMProcessor | |
0 2 ${OP} 0 Set-VMRemoteFx3dVideoAdapter | |
0 2 ${OP} 0 Set-VMReplication | |
0 2 ${OP} 0 Set-VMReplicationAuthorizationEntry | |
0 2 ${OP} 0 Set-VMReplicationServer | |
0 2 ${OP} 0 Set-VMResourcePool | |
0 2 ${OP} 0 Set-VMSan | |
0 2 ${OP} 0 Set-VMSwitch | |
0 2 ${OP} 0 Set-VMSwitchExtensionPortFeature | |
0 2 ${OP} 0 Set-VMSwitchExtensionSwitchFeature | |
0 2 ${OP} 0 Set-WinAcceptLanguageFromLanguageListOptOut | |
0 2 ${OP} 0 Set-WinCultureFromLanguageListOptOut | |
0 2 ${OP} 0 Set-WinDefaultInputMethodOverride | |
0 2 ${OP} 0 Set-WindowsEdition | |
0 2 ${OP} 0 Set-WindowsProductKey | |
0 2 ${OP} 0 Set-WinHomeLocation | |
0 2 ${OP} 0 Set-WinLanguageBarOption | |
0 2 ${OP} 0 Set-WinSystemLocale | |
0 2 ${OP} 0 Set-WinUILanguageOverride | |
0 2 ${OP} 0 Set-WinUserLanguageList | |
0 2 ${OP} 0 Set-WmiInstance | |
0 2 ${OP} 0 Set-WSManInstance | |
0 2 ${OP} 0 Set-WSManQuickConfig | |
0 2 ${OP} 0 Set-WsusClassification | |
0 2 ${OP} 0 Set-WsusProduct | |
0 2 ${OP} 0 Set-WsusServerSynchronization | |
0 2 ${OP} 0 Show-Command | |
0 2 ${OP} 0 Show-ControlPanelItem | |
0 2 ${OP} 0 Show-EventLog | |
0 2 ${OP} 0 Sort-Object | |
0 2 ${OP} 0 Split-Path | |
0 2 ${OP} 0 Start-BitsTransfer | |
0 2 ${OP} 0 Start-Cluster | |
0 2 ${OP} 0 Start-ClusterGroup | |
0 2 ${OP} 0 Start-ClusterNode | |
0 2 ${OP} 0 Start-ClusterResource | |
0 2 ${OP} 0 Start-DtcDiagnosticResourceManager | |
0 2 ${OP} 0 Start-Job | |
0 2 ${OP} 0 Start-NlbCluster | |
0 2 ${OP} 0 Start-NlbClusterNode | |
0 2 ${OP} 0 Start-Process | |
0 2 ${OP} 0 Start-Service | |
0 2 ${OP} 0 Start-Sleep | |
0 2 ${OP} 0 Start-Transaction | |
0 2 ${OP} 0 Start-Transcript | |
0 2 ${OP} 0 Start-VM | |
0 2 ${OP} 0 Start-VMFailover | |
0 2 ${OP} 0 Start-VMInitialReplication | |
0 2 ${OP} 0 Stop-CauRun | |
0 2 ${OP} 0 Stop-Cluster | |
0 2 ${OP} 0 Stop-ClusterGroup | |
0 2 ${OP} 0 Stop-ClusterNode | |
0 2 ${OP} 0 Stop-ClusterResource | |
0 2 ${OP} 0 Stop-Computer | |
0 2 ${OP} 0 Stop-DtcDiagnosticResourceManager | |
0 2 ${OP} 0 Stop-Job | |
0 2 ${OP} 0 Stop-NlbCluster | |
0 2 ${OP} 0 Stop-NlbClusterNode | |
0 2 ${OP} 0 Stop-Process | |
0 2 ${OP} 0 Stop-Service | |
0 2 ${OP} 0 Stop-Transcript | |
0 2 ${OP} 0 Stop-VM | |
0 2 ${OP} 0 Stop-VMFailover | |
0 2 ${OP} 0 Stop-VMInitialReplication | |
0 2 ${OP} 0 Stop-VMReplication | |
0 2 ${OP} 0 Suspend-BitsTransfer | |
0 2 ${OP} 0 Suspend-ClusterNode | |
0 2 ${OP} 0 Suspend-ClusterResource | |
0 2 ${OP} 0 Suspend-Job | |
0 2 ${OP} 0 Suspend-NlbCluster | |
0 2 ${OP} 0 Suspend-NlbClusterNode | |
0 2 ${OP} 0 Suspend-Service | |
0 2 ${OP} 0 Suspend-VM | |
0 2 ${OP} 0 Suspend-VMReplication | |
0 2 ${OP} 0 Switch-Certificate | |
0 2 ${OP} 0 Sync-ADObject | |
0 2 ${OP} 0 Tee-Object | |
0 2 ${OP} 0 Test-ADServiceAccount | |
0 2 ${OP} 0 Test-AppLockerPolicy | |
0 2 ${OP} 0 Test-CauSetup | |
0 2 ${OP} 0 Test-Certificate | |
0 2 ${OP} 0 Test-Cluster | |
0 2 ${OP} 0 Test-ClusterResourceFailure | |
0 2 ${OP} 0 Test-ComputerSecureChannel | |
0 2 ${OP} 0 Test-Connection | |
0 2 ${OP} 0 Test-KdsRootKey | |
0 2 ${OP} 0 Test-ModuleManifest | |
0 2 ${OP} 0 Test-NfsMappedIdentity | |
0 2 ${OP} 0 Test-Path | |
0 2 ${OP} 0 Test-PSSessionConfigurationFile | |
0 2 ${OP} 0 Test-VHD | |
0 2 ${OP} 0 Test-VMReplicationConnection | |
0 2 ${OP} 0 Test-WSMan | |
0 2 ${OP} 0 Trace-Command | |
0 2 ${OP} 0 Unblock-File | |
0 2 ${OP} 0 Unblock-Tpm | |
0 2 ${OP} 0 Undo-DtcDiagnosticTransaction | |
0 2 ${OP} 0 Undo-Transaction | |
0 2 ${OP} 0 Uninstall-ADServiceAccount | |
0 2 ${OP} 0 Unlock-ADAccount | |
0 2 ${OP} 0 Unregister-CauPlugin | |
0 2 ${OP} 0 Unregister-Event | |
0 2 ${OP} 0 Unregister-PSSessionConfiguration | |
0 2 ${OP} 0 Unregister-ScheduledJob | |
0 2 ${OP} 0 Update-ClusterIPResource | |
0 2 ${OP} 0 Update-ClusterNetworkNameResource | |
0 2 ${OP} 0 Update-ClusterVirtualMachineConfiguration | |
0 2 ${OP} 0 Update-FormatData | |
0 2 ${OP} 0 Update-Help | |
0 2 ${OP} 0 Update-List | |
0 2 ${OP} 0 Update-TypeData | |
0 2 ${OP} 0 Use-Transaction | |
0 2 ${OP} 0 Use-WindowsUnattend | |
0 2 ${OP} 0 Wait-Event | |
0 2 ${OP} 0 Wait-Job | |
0 2 ${OP} 0 Wait-Process | |
0 2 ${OP} 0 Where-Object | |
0 2 ${OP} 0 Write-Debug | |
0 2 ${OP} 0 Write-Error | |
0 2 ${OP} 0 Write-EventLog | |
0 2 ${OP} 0 Write-Host | |
0 2 ${OP} 0 Write-Output | |
0 2 ${OP} 0 Write-Progress | |
0 2 ${OP} 0 Write-Verbose | |
0 2 ${OP} 0 Write-Warning | |
0 2 ${OP} 0 Write-AdminAuditLog | |
;Exchange 2010 cmdlets--------------------------- | |
0 2 ${OP} 0 Add-ADPermission | |
0 2 ${OP} 0 Add-AvailabilityAddressSpace | |
0 2 ${OP} 0 Add-ContentFilterPhrase | |
0 2 ${OP} 0 Add-DatabaseAvailabilityGroupServer | |
0 2 ${OP} 0 Add-DistributionGroupMember | |
0 2 ${OP} 0 Add-FederatedDomain | |
0 2 ${OP} 0 Add-IPAllowListEntry | |
0 2 ${OP} 0 Add-IPAllowListProvider | |
0 2 ${OP} 0 Add-IPBlockListEntry | |
0 2 ${OP} 0 Add-IPBlockListProvider | |
0 2 ${OP} 0 Add-MailboxDatabaseCopy | |
0 2 ${OP} 0 Add-MailboxFolderPermission | |
0 2 ${OP} 0 Add-MailboxPermission | |
0 2 ${OP} 0 Add-ManagementRoleEntry | |
0 2 ${OP} 0 Add-PublicFolderAdministrativePermission | |
0 2 ${OP} 0 Add-PublicFolderClientPermission | |
0 2 ${OP} 0 Add-RecipientPermission | |
0 2 ${OP} 0 Add-RoleGroupMember | |
0 2 ${OP} 0 Add-SecondaryDomain | |
0 2 ${OP} 0 Add-SupervisionListEntry | |
0 2 ${OP} 0 Clean-MailboxDatabase | |
0 2 ${OP} 0 Clear-ActiveSyncDevice | |
0 2 ${OP} 0 Clear-TextMessagingAccount | |
0 2 ${OP} 0 Compare-TextMessagingVerificationCode | |
0 2 ${OP} 0 Complete-Migration | |
0 2 ${OP} 0 Complete-OrganizationUpgrade | |
0 2 ${OP} 0 Connect-Mailbox | |
0 2 ${OP} 0 Disable-AddressListPaging | |
0 2 ${OP} 0 Disable-CmdletExtensionAgent | |
0 2 ${OP} 0 Disable-DistributionGroup | |
0 2 ${OP} 0 Disable-InboxRule | |
0 2 ${OP} 0 Disable-JournalRule | |
0 2 ${OP} 0 Disable-Mailbox | |
0 2 ${OP} 0 Disable-MailContact | |
0 2 ${OP} 0 Disable-MailPublicFolder | |
0 2 ${OP} 0 Disable-MailUser | |
0 2 ${OP} 0 Disable-OutlookAnywhere | |
0 2 ${OP} 0 Disable-OutlookProtectionRule | |
0 2 ${OP} 0 Disable-RemoteMailbox | |
0 2 ${OP} 0 Disable-ServiceEmailChannel | |
0 2 ${OP} 0 Disable-TransportAgent | |
0 2 ${OP} 0 Disable-TransportRule | |
0 2 ${OP} 0 Disable-UMAutoAttendant | |
0 2 ${OP} 0 Disable-UMIPGateway | |
0 2 ${OP} 0 Disable-UMMailbox | |
0 2 ${OP} 0 Disable-UMServer | |
0 2 ${OP} 0 Dismount-Database | |
0 2 ${OP} 0 Enable-AddressListPaging | |
0 2 ${OP} 0 Enable-AntispamUpdates | |
0 2 ${OP} 0 Enable-CmdletExtensionAgent | |
0 2 ${OP} 0 Enable-DistributionGroup | |
0 2 ${OP} 0 Enable-ExchangeCertificate | |
0 2 ${OP} 0 Enable-InboxRule | |
0 2 ${OP} 0 Enable-JournalRule | |
0 2 ${OP} 0 Enable-Mailbox | |
0 2 ${OP} 0 Enable-MailContact | |
0 2 ${OP} 0 Enable-MailPublicFolder | |
0 2 ${OP} 0 Enable-MailUser | |
0 2 ${OP} 0 Enable-OutlookAnywhere | |
0 2 ${OP} 0 Enable-OutlookProtectionRule | |
0 2 ${OP} 0 Enable-RemoteMailbox | |
0 2 ${OP} 0 Enable-ServiceEmailChannel | |
0 2 ${OP} 0 Enable-TransportAgent | |
0 2 ${OP} 0 Enable-TransportRule | |
0 2 ${OP} 0 Enable-UMAutoAttendant | |
0 2 ${OP} 0 Enable-UMIPGateway | |
0 2 ${OP} 0 Enable-UMMailbox | |
0 2 ${OP} 0 Enable-UMServer | |
0 2 ${OP} 0 Export-ActiveSyncLog | |
0 2 ${OP} 0 Export-AutoDiscoverConfig | |
0 2 ${OP} 0 Export-ExchangeCertificate | |
0 2 ${OP} 0 Export-JournalRuleCollection | |
0 2 ${OP} 0 Export-MailboxDiagnosticLogs | |
0 2 ${OP} 0 Export-Message | |
0 2 ${OP} 0 Export-MigrationReport | |
0 2 ${OP} 0 Export-RecipientDataProperty | |
0 2 ${OP} 0 Export-TransportRuleCollection | |
0 2 ${OP} 0 Export-UMCallDataRecord | |
0 2 ${OP} 0 Export-UMMailboxPrompt | |
0 2 ${OP} 0 Export-UMPrompt | |
0 2 ${OP} 0 Get-AcceptedDomain | |
0 2 ${OP} 0 Get-ActiveSyncDevice | |
0 2 ${OP} 0 Get-ActiveSyncDeviceAccessRule | |
0 2 ${OP} 0 Get-ActiveSyncDeviceClass | |
0 2 ${OP} 0 Get-ActiveSyncDeviceStatistics | |
0 2 ${OP} 0 Get-ActiveSyncMailboxPolicy | |
0 2 ${OP} 0 Get-ActiveSyncOrganizationSettings | |
0 2 ${OP} 0 Get-ActiveSyncVirtualDirectory | |
0 2 ${OP} 0 Get-AddressBookPolicy | |
0 2 ${OP} 0 Get-AddressList | |
0 2 ${OP} 0 Get-AdminAuditLogConfig | |
0 2 ${OP} 0 Get-ADPermission | |
0 2 ${OP} 0 Get-ADServerSettings | |
0 2 ${OP} 0 Get-ADSite | |
0 2 ${OP} 0 Get-AdSiteLink | |
0 2 ${OP} 0 Get-AgentLog | |
0 2 ${OP} 0 Get-AutodiscoverVirtualDirectory | |
0 2 ${OP} 0 Get-AvailabilityAddressSpace | |
0 2 ${OP} 0 Get-AvailabilityConfig | |
0 2 ${OP} 0 Get-AvailabilityReportOutage | |
0 2 ${OP} 0 Get-BposPlacementConfiguration | |
0 2 ${OP} 0 Get-BposServiceInstanceInfo | |
0 2 ${OP} 0 Get-CalendarDiagnosticLog | |
0 2 ${OP} 0 Get-CalendarNotification | |
0 2 ${OP} 0 Get-CalendarProcessing | |
0 2 ${OP} 0 Get-CASMailbox | |
0 2 ${OP} 0 Get-CASMailboxPlan | |
0 2 ${OP} 0 Get-ClientAccessArray | |
0 2 ${OP} 0 Get-ClientAccessServer | |
0 2 ${OP} 0 Get-CmdletExtensionAgent | |
0 2 ${OP} 0 Get-Contact | |
0 2 ${OP} 0 Get-ContentFilterConfig | |
0 2 ${OP} 0 Get-ContentFilterPhrase | |
0 2 ${OP} 0 Get-CountryList | |
0 2 ${OP} 0 Get-DatabaseAvailabilityGroup | |
0 2 ${OP} 0 Get-DatabaseAvailabilityGroupNetwork | |
0 2 ${OP} 0 Get-DCPerimeterConfig | |
0 2 ${OP} 0 Get-DeliveryAgentConnector | |
0 2 ${OP} 0 Get-DetailsTemplate | |
0 2 ${OP} 0 Get-DistributionGroup | |
0 2 ${OP} 0 Get-DistributionGroupMember | |
0 2 ${OP} 0 Get-DomainController | |
0 2 ${OP} 0 Get-DynamicDistributionGroup | |
0 2 ${OP} 0 Get-EcpVirtualDirectory | |
0 2 ${OP} 0 Get-EdgeSubscription | |
0 2 ${OP} 0 Get-EdgeSyncEhfConnector | |
0 2 ${OP} 0 Get-EdgeSyncMservConnector | |
0 2 ${OP} 0 Get-EdgeSyncServiceConfig | |
0 2 ${OP} 0 Get-EmailAddressPolicy | |
0 2 ${OP} 0 Get-EventLogLevel | |
0 2 ${OP} 0 Get-ExchangeAssistanceConfig | |
0 2 ${OP} 0 Get-ExchangeCertificate | |
0 2 ${OP} 0 Get-ExchangeNotification | |
0 2 ${OP} 0 Get-ExchangeServer | |
0 2 ${OP} 0 Get-FailedContentIndexDocuments | |
0 2 ${OP} 0 Get-FederatedDomainProof | |
0 2 ${OP} 0 Get-FederatedOrganizationIdentifier | |
0 2 ${OP} 0 Get-FederationInformation | |
0 2 ${OP} 0 Get-FederationTrust | |
0 2 ${OP} 0 Get-ForeignConnector | |
0 2 ${OP} 0 Get-GlobalAddressList | |
0 2 ${OP} 0 Get-Group | |
0 2 ${OP} 0 Get-HotmailSubscription | |
0 2 ${OP} 0 Get-HybridConfiguration | |
0 2 ${OP} 0 Get-ImapSettings | |
0 2 ${OP} 0 Get-ImapSubscription | |
0 2 ${OP} 0 Get-InboxRule | |
0 2 ${OP} 0 Get-IPAllowListConfig | |
0 2 ${OP} 0 Get-IPAllowListEntry | |
0 2 ${OP} 0 Get-IPAllowListProvider | |
0 2 ${OP} 0 Get-IPAllowListProvidersConfig | |
0 2 ${OP} 0 Get-IPBlockListConfig | |
0 2 ${OP} 0 Get-IPBlockListEntry | |
0 2 ${OP} 0 Get-IPBlockListProvider | |
0 2 ${OP} 0 Get-IPBlockListProvidersConfig | |
0 2 ${OP} 0 Get-IRMConfiguration | |
0 2 ${OP} 0 Get-JournalRule | |
0 2 ${OP} 0 Get-LawEnforcementSearchStatus | |
0 2 ${OP} 0 Get-LinkedUser | |
0 2 ${OP} 0 Get-LogonStatistics | |
0 2 ${OP} 0 Get-Mailbox | |
0 2 ${OP} 0 Get-MailboxAuditBypassAssociation | |
0 2 ${OP} 0 Get-MailboxAutoReplyConfiguration | |
0 2 ${OP} 0 Get-MailboxCalendarConfiguration | |
0 2 ${OP} 0 Get-MailboxCalendarFolder | |
0 2 ${OP} 0 Get-MailboxDatabase | |
0 2 ${OP} 0 Get-MailboxDatabaseCopyStatus | |
0 2 ${OP} 0 Get-MailboxExportRequest | |
0 2 ${OP} 0 Get-MailboxExportRequestStatistics | |
0 2 ${OP} 0 Get-MailboxFolder | |
0 2 ${OP} 0 Get-MailboxFolderPermission | |
0 2 ${OP} 0 Get-MailboxFolderStatistics | |
0 2 ${OP} 0 Get-MailboxImportRequest | |
0 2 ${OP} 0 Get-MailboxImportRequestStatistics | |
0 2 ${OP} 0 Get-MailboxJunkEmailConfiguration | |
0 2 ${OP} 0 Get-MailboxMessageConfiguration | |
0 2 ${OP} 0 Get-MailboxPermission | |
0 2 ${OP} 0 Get-MailboxPlan | |
0 2 ${OP} 0 Get-MailboxRegionalConfiguration | |
0 2 ${OP} 0 Get-MailboxRestoreRequest | |
0 2 ${OP} 0 Get-MailboxRestoreRequestStatistics | |
0 2 ${OP} 0 Get-MailboxSearch | |
0 2 ${OP} 0 Get-MailboxSentItemsConfiguration | |
0 2 ${OP} 0 Get-MailboxServer | |
0 2 ${OP} 0 Get-MailboxSpellingConfiguration | |
0 2 ${OP} 0 Get-MailboxStatistics | |
0 2 ${OP} 0 Get-MailContact | |
0 2 ${OP} 0 Get-MailFlowPartner | |
0 2 ${OP} 0 Get-MailPublicFolder | |
0 2 ${OP} 0 Get-MailUser | |
0 2 ${OP} 0 Get-ManagedContentSettings | |
0 2 ${OP} 0 Get-ManagedFolder | |
0 2 ${OP} 0 Get-ManagedFolderMailboxPolicy | |
0 2 ${OP} 0 Get-ManagementEndpoint | |
0 2 ${OP} 0 Get-ManagementRole | |
0 2 ${OP} 0 Get-ManagementRoleAssignment | |
0 2 ${OP} 0 Get-ManagementRoleEntry | |
0 2 ${OP} 0 Get-ManagementScope | |
0 2 ${OP} 0 Get-MergeRequest | |
0 2 ${OP} 0 Get-MergeRequestStatistics | |
0 2 ${OP} 0 Get-Message | |
0 2 ${OP} 0 Get-MessageCategory | |
0 2 ${OP} 0 Get-MessageClassification | |
0 2 ${OP} 0 Get-MessageLatencyReport | |
0 2 ${OP} 0 Get-MessageStatisticsReport | |
0 2 ${OP} 0 Get-MessageTrackingLog | |
0 2 ${OP} 0 Get-MessageTrackingReport | |
0 2 ${OP} 0 Get-MigrationBatch | |
0 2 ${OP} 0 Get-MigrationStatus | |
0 2 ${OP} 0 Get-MoveRequest | |
0 2 ${OP} 0 Get-MoveRequestStatistics | |
0 2 ${OP} 0 Get-MsoFullSyncOrganization | |
0 2 ${OP} 0 Get-MSOSyncData | |
0 2 ${OP} 0 Get-NetworkConnectionInfo | |
0 2 ${OP} 0 Get-OabVirtualDirectory | |
0 2 ${OP} 0 Get-OfflineAddressBook | |
0 2 ${OP} 0 Get-Organization | |
0 2 ${OP} 0 Get-OrganizationalUnit | |
0 2 ${OP} 0 Get-OrganizationConfig | |
0 2 ${OP} 0 Get-OrganizationRelationship | |
0 2 ${OP} 0 Get-OutlookAnywhere | |
0 2 ${OP} 0 Get-OutlookProtectionRule | |
0 2 ${OP} 0 Get-OutlookProvider | |
0 2 ${OP} 0 Get-OwaMailboxPolicy | |
0 2 ${OP} 0 Get-OwaVirtualDirectory | |
0 2 ${OP} 0 Get-PerimeterConfig | |
0 2 ${OP} 0 Get-PerimeterQueueInfo | |
0 2 ${OP} 0 Get-PhysicalAvailabilityReport | |
0 2 ${OP} 0 Get-PopSettings | |
0 2 ${OP} 0 Get-PopSubscription | |
0 2 ${OP} 0 Get-PowerShellVirtualDirectory | |
0 2 ${OP} 0 Get-ProvisioningPolicy | |
0 2 ${OP} 0 Get-ProvisioningReconciliationConfig | |
0 2 ${OP} 0 Get-ProvisioningRequest | |
0 2 ${OP} 0 Get-PublicFolder | |
0 2 ${OP} 0 Get-PublicFolderAdministrativePermission | |
0 2 ${OP} 0 Get-PublicFolderClientPermission | |
0 2 ${OP} 0 Get-PublicFolderDatabase | |
0 2 ${OP} 0 Get-PublicFolderItemStatistics | |
0 2 ${OP} 0 Get-PublicFolderMergeRequest | |
0 2 ${OP} 0 Get-PublicFolderMergeRequestStatistics | |
0 2 ${OP} 0 Get-PublicFolderMoveRequest | |
0 2 ${OP} 0 Get-PublicFolderMoveRequestStatistics | |
0 2 ${OP} 0 Get-PublicFolderStatistics | |
0 2 ${OP} 0 Get-Queue | |
0 2 ${OP} 0 Get-ReceiveConnector | |
0 2 ${OP} 0 Get-Recipient | |
0 2 ${OP} 0 Get-RecipientEnforcementProvisioningPolicy | |
0 2 ${OP} 0 Get-RecipientFilterConfig | |
0 2 ${OP} 0 Get-RecipientPermission | |
0 2 ${OP} 0 Get-RecipientStatisticsReport | |
0 2 ${OP} 0 Get-RecipientTemplateProvisioningPolicy | |
0 2 ${OP} 0 Get-RemoteAccountPolicy | |
0 2 ${OP} 0 Get-RemoteAccountSyncCache | |
0 2 ${OP} 0 Get-RemoteDomain | |
0 2 ${OP} 0 Get-RemoteMailbox | |
0 2 ${OP} 0 Get-RemovedMailbox | |
0 2 ${OP} 0 Get-ResourceConfig | |
0 2 ${OP} 0 Get-RetentionPolicy | |
0 2 ${OP} 0 Get-RetentionPolicyTag | |
0 2 ${OP} 0 Get-RMSTemplate | |
0 2 ${OP} 0 Get-RMSTrustedPublishingDomain | |
0 2 ${OP} 0 Get-RoleAssignmentPolicy | |
0 2 ${OP} 0 Get-RoleGroup | |
0 2 ${OP} 0 Get-RoleGroupMember | |
0 2 ${OP} 0 Get-RoutingGroupConnector | |
0 2 ${OP} 0 Get-RpcClientAccess | |
0 2 ${OP} 0 Get-SecurityPrincipal | |
0 2 ${OP} 0 Get-SendAddress | |
0 2 ${OP} 0 Get-SendConnector | |
0 2 ${OP} 0 Get-SenderFilterConfig | |
0 2 ${OP} 0 Get-SenderIdConfig | |
0 2 ${OP} 0 Get-SenderReputationConfig | |
0 2 ${OP} 0 Get-ServiceAvailabilityReport | |
0 2 ${OP} 0 Get-ServiceStatus | |
0 2 ${OP} 0 Get-SharingPolicy | |
0 2 ${OP} 0 Get-StoreUsageStatistics | |
0 2 ${OP} 0 Get-Subscription | |
0 2 ${OP} 0 Get-SupervisionListEntry | |
0 2 ${OP} 0 Get-SupervisionPolicy | |
0 2 ${OP} 0 Get-SyncConfig | |
0 2 ${OP} 0 Get-SyncDeletedRecipient | |
0 2 ${OP} 0 Get-SyncDistributionGroup | |
0 2 ${OP} 0 Get-SyncDynamicDistributionGroup | |
0 2 ${OP} 0 Get-SyncGroup | |
0 2 ${OP} 0 Get-SyncMailbox | |
0 2 ${OP} 0 Get-SyncMailContact | |
0 2 ${OP} 0 Get-SyncMailUser | |
0 2 ${OP} 0 Get-SyncUser | |
0 2 ${OP} 0 Get-SystemMessage | |
0 2 ${OP} 0 Get-TextMessagingAccount | |
0 2 ${OP} 0 Get-ThrottlingPolicy | |
0 2 ${OP} 0 Get-ThrottlingPolicyAssociation | |
0 2 ${OP} 0 Get-ToolInformation | |
0 2 ${OP} 0 Get-TransportAgent | |
0 2 ${OP} 0 Get-TransportConfig | |
0 2 ${OP} 0 Get-TransportPipeline | |
0 2 ${OP} 0 Get-TransportRule | |
0 2 ${OP} 0 Get-TransportRuleAction | |
0 2 ${OP} 0 Get-TransportRulePredicate | |
0 2 ${OP} 0 Get-TransportServer | |
0 2 ${OP} 0 Get-Trust | |
0 2 ${OP} 0 Get-UMActiveCalls | |
0 2 ${OP} 0 Get-UMAutoAttendant | |
0 2 ${OP} 0 Get-UMCallDataRecord | |
0 2 ${OP} 0 Get-UMCallSummaryReport | |
0 2 ${OP} 0 Get-UMDialPlan | |
0 2 ${OP} 0 Get-UMHuntGroup | |
0 2 ${OP} 0 Get-UMIPGateway | |
0 2 ${OP} 0 Get-UMMailbox | |
0 2 ${OP} 0 Get-UMMailboxConfiguration | |
0 2 ${OP} 0 Get-UMMailboxPIN | |
0 2 ${OP} 0 Get-UMMailboxPlan | |
0 2 ${OP} 0 Get-UMMailboxPolicy | |
0 2 ${OP} 0 Get-UMPhoneSession | |
0 2 ${OP} 0 Get-UmServer | |
0 2 ${OP} 0 Get-User | |
0 2 ${OP} 0 Get-UserPrincipalNamesSuffix | |
0 2 ${OP} 0 Get-WebServicesVirtualDirectory | |
0 2 ${OP} 0 Get-WindowsLiveIdApplicationIdentity | |
0 2 ${OP} 0 Get-WindowsLiveIdNamespace | |
0 2 ${OP} 0 Get-X400AuthoritativeDomain | |
0 2 ${OP} 0 Import-ContactList | |
0 2 ${OP} 0 Import-ExchangeCertificate | |
0 2 ${OP} 0 Import-JournalRuleCollection | |
0 2 ${OP} 0 Import-RecipientDataProperty | |
0 2 ${OP} 0 Import-RMSTrustedPublishingDomain | |
0 2 ${OP} 0 Import-TransportRuleCollection | |
0 2 ${OP} 0 Import-UMPrompt | |
0 2 ${OP} 0 Install-TransportAgent | |
0 2 ${OP} 0 Mount-Database | |
0 2 ${OP} 0 Move-ActiveMailboxDatabase | |
0 2 ${OP} 0 Move-AddressList | |
0 2 ${OP} 0 Move-DatabasePath | |
0 2 ${OP} 0 Move-OfflineAddressBook | |
0 2 ${OP} 0 New-AcceptedDomain | |
0 2 ${OP} 0 New-ActiveSyncDeviceAccessRule | |
0 2 ${OP} 0 New-ActiveSyncMailboxPolicy | |
0 2 ${OP} 0 New-ActiveSyncVirtualDirectory | |
0 2 ${OP} 0 New-AddressBookPolicy | |
0 2 ${OP} 0 New-AddressList | |
0 2 ${OP} 0 New-AdminAuditLogSearch | |
0 2 ${OP} 0 New-AutodiscoverVirtualDirectory | |
0 2 ${OP} 0 New-AvailabilityReportOutage | |
0 2 ${OP} 0 New-ClientAccessArray | |
0 2 ${OP} 0 New-DatabaseAvailabilityGroup | |
0 2 ${OP} 0 New-DatabaseAvailabilityGroupNetwork | |
0 2 ${OP} 0 New-DeliveryAgentConnector | |
0 2 ${OP} 0 New-DistributionGroup | |
0 2 ${OP} 0 New-DynamicDistributionGroup | |
0 2 ${OP} 0 New-EcpVirtualDirectory | |
0 2 ${OP} 0 New-EdgeSubscription | |
0 2 ${OP} 0 New-EdgeSyncEhfConnector | |
0 2 ${OP} 0 New-EdgeSyncMservConnector | |
0 2 ${OP} 0 New-EdgeSyncServiceConfig | |
0 2 ${OP} 0 New-EmailAddressPolicy | |
0 2 ${OP} 0 New-ExchangeCertificate | |
0 2 ${OP} 0 New-ExchangeNotification | |
0 2 ${OP} 0 New-FederationTrust | |
0 2 ${OP} 0 New-ForeignConnector | |
0 2 ${OP} 0 New-GlobalAddressList | |
0 2 ${OP} 0 New-HotmailSubscription | |
0 2 ${OP} 0 New-HybridConfiguration | |
0 2 ${OP} 0 New-ImapSubscription | |
0 2 ${OP} 0 New-InboxRule | |
0 2 ${OP} 0 New-JournalRule | |
0 2 ${OP} 0 New-LawEnforcementDataExportRequest | |
0 2 ${OP} 0 New-LinkedUser | |
0 2 ${OP} 0 New-LiveContactSubscription | |
0 2 ${OP} 0 New-Mailbox | |
0 2 ${OP} 0 New-MailboxAuditLogSearch | |
0 2 ${OP} 0 New-MailboxDatabase | |
0 2 ${OP} 0 New-MailboxExportRequest | |
0 2 ${OP} 0 New-MailboxFolder | |
0 2 ${OP} 0 New-MailboxImportRequest | |
0 2 ${OP} 0 New-MailboxRepairRequest | |
0 2 ${OP} 0 New-MailboxRestoreRequest | |
0 2 ${OP} 0 New-MailboxSearch | |
0 2 ${OP} 0 New-MailContact | |
0 2 ${OP} 0 New-MailFlowPartner | |
0 2 ${OP} 0 New-MailMessage | |
0 2 ${OP} 0 New-MailUser | |
0 2 ${OP} 0 New-ManagedContentSettings | |
0 2 ${OP} 0 New-ManagedFolder | |
0 2 ${OP} 0 New-ManagedFolderMailboxPolicy | |
0 2 ${OP} 0 New-ManagementRole | |
0 2 ${OP} 0 New-ManagementRoleAssignment | |
0 2 ${OP} 0 New-ManagementScope | |
0 2 ${OP} 0 New-MergeRequest | |
0 2 ${OP} 0 New-MessageClassification | |
0 2 ${OP} 0 New-MigrationBatch | |
0 2 ${OP} 0 New-MoveRequest | |
0 2 ${OP} 0 New-OabVirtualDirectory | |
0 2 ${OP} 0 New-OfflineAddressBook | |
0 2 ${OP} 0 New-Organization | |
0 2 ${OP} 0 New-OrganizationRelationship | |
0 2 ${OP} 0 New-OutlookProtectionRule | |
0 2 ${OP} 0 New-OutlookProvider | |
0 2 ${OP} 0 New-OwaMailboxPolicy | |
0 2 ${OP} 0 New-OwaVirtualDirectory | |
0 2 ${OP} 0 New-PopSubscription | |
0 2 ${OP} 0 New-PowerShellVirtualDirectory | |
0 2 ${OP} 0 New-ProvisioningRequest | |
0 2 ${OP} 0 New-PublicFolder | |
0 2 ${OP} 0 New-PublicFolderDatabase | |
0 2 ${OP} 0 New-PublicFolderDatabaseRepairRequest | |
0 2 ${OP} 0 New-PublicFolderMergeRequest | |
0 2 ${OP} 0 New-PublicFolderMoveRequest | |
0 2 ${OP} 0 New-ReceiveConnector | |
0 2 ${OP} 0 New-RecipientEnforcementProvisioningPolicy | |
0 2 ${OP} 0 New-RecipientTemplateProvisioningPolicy | |
0 2 ${OP} 0 New-RemoteAccountPolicy | |
0 2 ${OP} 0 New-RemoteDomain | |
0 2 ${OP} 0 New-RemoteMailbox | |
0 2 ${OP} 0 New-RetentionPolicy | |
0 2 ${OP} 0 New-RetentionPolicyTag | |
0 2 ${OP} 0 New-RoleAssignmentPolicy | |
0 2 ${OP} 0 New-RoleGroup | |
0 2 ${OP} 0 New-RoutingGroupConnector | |
0 2 ${OP} 0 New-RpcClientAccess | |
0 2 ${OP} 0 New-SendConnector | |
0 2 ${OP} 0 New-SharingPolicy | |
0 2 ${OP} 0 New-Subscription | |
0 2 ${OP} 0 New-SyncDistributionGroup | |
0 2 ${OP} 0 New-SyncGroup | |
0 2 ${OP} 0 New-SyncMailbox | |
0 2 ${OP} 0 New-SyncMailContact | |
0 2 ${OP} 0 New-SyncMailUser | |
0 2 ${OP} 0 New-SyncUser | |
0 2 ${OP} 0 New-SystemMessage | |
0 2 ${OP} 0 New-ThrottlingPolicy | |
0 2 ${OP} 0 New-TransportRule | |
0 2 ${OP} 0 New-UMAutoAttendant | |
0 2 ${OP} 0 New-UMDialPlan | |
0 2 ${OP} 0 New-UMHuntGroup | |
0 2 ${OP} 0 New-UMIPGateway | |
0 2 ${OP} 0 New-UMMailboxPolicy | |
0 2 ${OP} 0 New-WebServicesVirtualDirectory | |
0 2 ${OP} 0 New-X400AuthoritativeDomain | |
0 2 ${OP} 0 Remove-AcceptedDomain | |
0 2 ${OP} 0 Remove-ActiveSyncDevice | |
0 2 ${OP} 0 Remove-ActiveSyncDeviceAccessRule | |
0 2 ${OP} 0 Remove-ActiveSyncDeviceClass | |
0 2 ${OP} 0 Remove-ActiveSyncMailboxPolicy | |
0 2 ${OP} 0 Remove-ActiveSyncVirtualDirectory | |
0 2 ${OP} 0 Remove-AddressBookPolicy | |
0 2 ${OP} 0 Remove-AddressList | |
0 2 ${OP} 0 Remove-ADPermission | |
0 2 ${OP} 0 Remove-AutodiscoverVirtualDirectory | |
0 2 ${OP} 0 Remove-AvailabilityAddressSpace | |
0 2 ${OP} 0 Remove-AvailabilityReportOutage | |
0 2 ${OP} 0 Remove-ClientAccessArray | |
0 2 ${OP} 0 Remove-ContentFilterPhrase | |
0 2 ${OP} 0 Remove-DatabaseAvailabilityGroup | |
0 2 ${OP} 0 Remove-DatabaseAvailabilityGroupNetwork | |
0 2 ${OP} 0 Remove-DatabaseAvailabilityGroupServer | |
0 2 ${OP} 0 Remove-DeliveryAgentConnector | |
0 2 ${OP} 0 Remove-DistributionGroup | |
0 2 ${OP} 0 Remove-DistributionGroupMember | |
0 2 ${OP} 0 Remove-DynamicDistributionGroup | |
0 2 ${OP} 0 Remove-EcpVirtualDirectory | |
0 2 ${OP} 0 Remove-EdgeSubscription | |
0 2 ${OP} 0 Remove-EdgeSyncEhfConnector | |
0 2 ${OP} 0 Remove-EdgeSyncMservConnector | |
0 2 ${OP} 0 Remove-EmailAddressPolicy | |
0 2 ${OP} 0 Remove-ExchangeCertificate | |
0 2 ${OP} 0 Remove-FederatedDomain | |
0 2 ${OP} 0 Remove-FederationTrust | |
0 2 ${OP} 0 Remove-ForeignConnector | |
0 2 ${OP} 0 Remove-GlobalAddressList | |
0 2 ${OP} 0 Remove-InboxRule | |
0 2 ${OP} 0 Remove-IPAllowListEntry | |
0 2 ${OP} 0 Remove-IPAllowListProvider | |
0 2 ${OP} 0 Remove-IPBlockListEntry | |
0 2 ${OP} 0 Remove-IPBlockListProvider | |
0 2 ${OP} 0 Remove-JournalRule | |
0 2 ${OP} 0 Remove-LinkedUser | |
0 2 ${OP} 0 Remove-Mailbox | |
0 2 ${OP} 0 Remove-MailboxDatabase | |
0 2 ${OP} 0 Remove-MailboxDatabaseCopy | |
0 2 ${OP} 0 Remove-MailboxExportRequest | |
0 2 ${OP} 0 Remove-MailboxFolderPermission | |
0 2 ${OP} 0 Remove-MailboxImportRequest | |
0 2 ${OP} 0 Remove-MailboxPermission | |
0 2 ${OP} 0 Remove-MailboxRestoreRequest | |
0 2 ${OP} 0 Remove-MailboxSearch | |
0 2 ${OP} 0 Remove-MailContact | |
0 2 ${OP} 0 Remove-MailFlowPartner | |
0 2 ${OP} 0 Remove-MailUser | |
0 2 ${OP} 0 Remove-ManagedContentSettings | |
0 2 ${OP} 0 Remove-ManagedFolder | |
0 2 ${OP} 0 Remove-ManagedFolderMailboxPolicy | |
0 2 ${OP} 0 Remove-ManagementRole | |
0 2 ${OP} 0 Remove-ManagementRoleAssignment | |
0 2 ${OP} 0 Remove-ManagementRoleEntry | |
0 2 ${OP} 0 Remove-ManagementScope | |
0 2 ${OP} 0 Remove-MergeRequest | |
0 2 ${OP} 0 Remove-Message | |
0 2 ${OP} 0 Remove-MessageClassification | |
0 2 ${OP} 0 Remove-MoveRequest | |
0 2 ${OP} 0 Remove-OabVirtualDirectory | |
0 2 ${OP} 0 Remove-OfflineAddressBook | |
0 2 ${OP} 0 Remove-Organization | |
0 2 ${OP} 0 Remove-OrganizationRelationship | |
0 2 ${OP} 0 Remove-OutlookProtectionRule | |
0 2 ${OP} 0 Remove-OutlookProvider | |
0 2 ${OP} 0 Remove-OwaMailboxPolicy | |
0 2 ${OP} 0 Remove-OwaVirtualDirectory | |
0 2 ${OP} 0 Remove-PowerShellVirtualDirectory | |
0 2 ${OP} 0 Remove-ProvisioningRequest | |
0 2 ${OP} 0 Remove-PublicFolder | |
0 2 ${OP} 0 Remove-PublicFolderAdministrativePermission | |
0 2 ${OP} 0 Remove-PublicFolderClientPermission | |
0 2 ${OP} 0 Remove-PublicFolderDatabase | |
0 2 ${OP} 0 Remove-PublicFolderMergeRequest | |
0 2 ${OP} 0 Remove-PublicFolderMoveRequest | |
0 2 ${OP} 0 Remove-ReceiveConnector | |
0 2 ${OP} 0 Remove-RecipientEnforcementProvisioningPolicy | |
0 2 ${OP} 0 Remove-RecipientPermission | |
0 2 ${OP} 0 Remove-RecipientTemplateProvisioningPolicy | |
0 2 ${OP} 0 Remove-RemoteAccountPolicy | |
0 2 ${OP} 0 Remove-RemoteAccountSyncCache | |
0 2 ${OP} 0 Remove-RemoteDomain | |
0 2 ${OP} 0 Remove-RemoteMailbox | |
0 2 ${OP} 0 Remove-RetentionPolicy | |
0 2 ${OP} 0 Remove-RetentionPolicyTag | |
0 2 ${OP} 0 Remove-RMSTrustedPublishingDomain | |
0 2 ${OP} 0 Remove-RoleAssignmentPolicy | |
0 2 ${OP} 0 Remove-RoleGroup | |
0 2 ${OP} 0 Remove-RoleGroupMember | |
0 2 ${OP} 0 Remove-RoutingGroupConnector | |
0 2 ${OP} 0 Remove-RpcClientAccess | |
0 2 ${OP} 0 Remove-SecondaryDomain | |
0 2 ${OP} 0 Remove-SendConnector | |
0 2 ${OP} 0 Remove-SharingPolicy | |
0 2 ${OP} 0 Remove-StoreMailbox | |
0 2 ${OP} 0 Remove-Subscription | |
0 2 ${OP} 0 Remove-SupervisionListEntry | |
0 2 ${OP} 0 Remove-SyncDistributionGroup | |
0 2 ${OP} 0 Remove-SyncGroup | |
0 2 ${OP} 0 Remove-SyncMailbox | |
0 2 ${OP} 0 Remove-SyncMailContact | |
0 2 ${OP} 0 Remove-SyncMailUser | |
0 2 ${OP} 0 Remove-SyncUser | |
0 2 ${OP} 0 Remove-SystemMessage | |
0 2 ${OP} 0 Remove-ThrottlingPolicy | |
0 2 ${OP} 0 Remove-TransportRule | |
0 2 ${OP} 0 Remove-UMAutoAttendant | |
0 2 ${OP} 0 Remove-UMDialPlan | |
0 2 ${OP} 0 Remove-UMHuntGroup | |
0 2 ${OP} 0 Remove-UMIPGateway | |
0 2 ${OP} 0 Remove-UMMailboxPolicy | |
0 2 ${OP} 0 Remove-UMMailboxPrompt | |
0 2 ${OP} 0 Remove-WebServicesVirtualDirectory | |
0 2 ${OP} 0 Remove-X400AuthoritativeDomain | |
0 2 ${OP} 0 Restore-DatabaseAvailabilityGroup | |
0 2 ${OP} 0 Restore-DetailsTemplate | |
0 2 ${OP} 0 Restore-Mailbox | |
0 2 ${OP} 0 Resume-MailboxDatabaseCopy | |
0 2 ${OP} 0 Resume-MailboxExportRequest | |
0 2 ${OP} 0 Resume-MailboxImportRequest | |
0 2 ${OP} 0 Resume-MailboxRestoreRequest | |
0 2 ${OP} 0 Resume-MergeRequest | |
0 2 ${OP} 0 Resume-Message | |
0 2 ${OP} 0 Resume-MoveRequest | |
0 2 ${OP} 0 Resume-PublicFolderMergeRequest | |
0 2 ${OP} 0 Resume-PublicFolderMoveRequest | |
0 2 ${OP} 0 Resume-PublicFolderReplication | |
0 2 ${OP} 0 Resume-Queue | |
0 2 ${OP} 0 Retry-Queue | |
0 2 ${OP} 0 Search-AdminAuditLog | |
0 2 ${OP} 0 Search-LawEnforcementRequestData | |
0 2 ${OP} 0 Search-Mailbox | |
0 2 ${OP} 0 Search-MailboxAuditLog | |
0 2 ${OP} 0 Search-MessageTrackingReport | |
0 2 ${OP} 0 Select-UserForReconciliation | |
0 2 ${OP} 0 Send-TextMessagingVerificationCode | |
0 2 ${OP} 0 Set-AcceptedDomain | |
0 2 ${OP} 0 Set-ActiveSyncDeviceAccessRule | |
0 2 ${OP} 0 Set-ActiveSyncMailboxPolicy | |
0 2 ${OP} 0 Set-ActiveSyncOrganizationSettings | |
0 2 ${OP} 0 Set-ActiveSyncVirtualDirectory | |
0 2 ${OP} 0 Set-AddressBookPolicy | |
0 2 ${OP} 0 Set-AddressList | |
0 2 ${OP} 0 Set-AdminAuditLogConfig | |
0 2 ${OP} 0 Set-ADServerSettings | |
0 2 ${OP} 0 Set-ADSite | |
0 2 ${OP} 0 Set-AdSiteLink | |
0 2 ${OP} 0 Set-AutodiscoverVirtualDirectory | |
0 2 ${OP} 0 Set-AvailabilityConfig | |
0 2 ${OP} 0 Set-AvailabilityReportOutage | |
0 2 ${OP} 0 Set-BposPlacementConfiguration | |
0 2 ${OP} 0 Set-BposServiceInstanceInfo | |
0 2 ${OP} 0 Set-CalendarNotification | |
0 2 ${OP} 0 Set-CalendarProcessing | |
0 2 ${OP} 0 Set-CASMailbox | |
0 2 ${OP} 0 Set-ClientAccessArray | |
0 2 ${OP} 0 Set-ClientAccessServer | |
0 2 ${OP} 0 Set-CmdletExtensionAgent | |
0 2 ${OP} 0 Set-Contact | |
0 2 ${OP} 0 Set-ContentFilterConfig | |
0 2 ${OP} 0 Set-CountryList | |
0 2 ${OP} 0 Set-CurrentOrganization | |
0 2 ${OP} 0 Set-DatabaseAvailabilityGroup | |
0 2 ${OP} 0 Set-DatabaseAvailabilityGroupNetwork | |
0 2 ${OP} 0 Set-DCPerimeterConfig | |
0 2 ${OP} 0 Set-DeliveryAgentConnector | |
0 2 ${OP} 0 Set-DetailsTemplate | |
0 2 ${OP} 0 Set-DistributionGroup | |
0 2 ${OP} 0 Set-DynamicDistributionGroup | |
0 2 ${OP} 0 Set-EcpVirtualDirectory | |
0 2 ${OP} 0 Set-EdgeSyncEhfConnector | |
0 2 ${OP} 0 Set-EdgeSyncMservConnector | |
0 2 ${OP} 0 Set-EdgeSyncServiceConfig | |
0 2 ${OP} 0 Set-EmailAddressPolicy | |
0 2 ${OP} 0 Set-EventLogLevel | |
0 2 ${OP} 0 Set-ExchangeAssistanceConfig | |
0 2 ${OP} 0 Set-ExchangeServer | |
0 2 ${OP} 0 Set-FederatedOrganizationIdentifier | |
0 2 ${OP} 0 Set-FederationTrust | |
0 2 ${OP} 0 Set-ForeignConnector | |
0 2 ${OP} 0 Set-GlobalAddressList | |
0 2 ${OP} 0 Set-Group | |
0 2 ${OP} 0 Set-HotmailSubscription | |
0 2 ${OP} 0 Set-HybridConfiguration | |
0 2 ${OP} 0 Set-ImapSettings | |
0 2 ${OP} 0 Set-ImapSubscription | |
0 2 ${OP} 0 Set-InboxRule | |
0 2 ${OP} 0 Set-IPAllowListConfig | |
0 2 ${OP} 0 Set-IPAllowListProvider | |
0 2 ${OP} 0 Set-IPAllowListProvidersConfig | |
0 2 ${OP} 0 Set-IPBlockListConfig | |
0 2 ${OP} 0 Set-IPBlockListProvider | |
0 2 ${OP} 0 Set-IPBlockListProvidersConfig | |
0 2 ${OP} 0 Set-IRMConfiguration | |
0 2 ${OP} 0 Set-JournalRule | |
0 2 ${OP} 0 Set-LinkedUser | |
0 2 ${OP} 0 Set-LiveContactSubscription | |
0 2 ${OP} 0 Set-Mailbox | |
0 2 ${OP} 0 Set-MailboxAuditBypassAssociation | |
0 2 ${OP} 0 Set-MailboxAutoReplyConfiguration | |
0 2 ${OP} 0 Set-MailboxCalendarConfiguration | |
0 2 ${OP} 0 Set-MailboxCalendarFolder | |
0 2 ${OP} 0 Set-MailboxDatabase | |
0 2 ${OP} 0 Set-MailboxDatabaseCopy | |
0 2 ${OP} 0 Set-MailboxExportRequest | |
0 2 ${OP} 0 Set-MailboxFolderPermission | |
0 2 ${OP} 0 Set-MailboxImportRequest | |
0 2 ${OP} 0 Set-MailboxJunkEmailConfiguration | |
0 2 ${OP} 0 Set-MailboxMessageConfiguration | |
0 2 ${OP} 0 Set-MailboxPlan | |
0 2 ${OP} 0 Set-MailboxRegionalConfiguration | |
0 2 ${OP} 0 Set-MailboxRestoreRequest | |
0 2 ${OP} 0 Set-MailboxSearch | |
0 2 ${OP} 0 Set-MailboxSentItemsConfiguration | |
0 2 ${OP} 0 Set-MailboxServer | |
0 2 ${OP} 0 Set-MailboxSpellingConfiguration | |
0 2 ${OP} 0 Set-MailContact | |
0 2 ${OP} 0 Set-MailFlowPartner | |
0 2 ${OP} 0 Set-MailPublicFolder | |
0 2 ${OP} 0 Set-MailUser | |
0 2 ${OP} 0 Set-ManagedContentSettings | |
0 2 ${OP} 0 Set-ManagedFolder | |
0 2 ${OP} 0 Set-ManagedFolderMailboxPolicy | |
0 2 ${OP} 0 Set-ManagementRoleAssignment | |
0 2 ${OP} 0 Set-ManagementRoleEntry | |
0 2 ${OP} 0 Set-ManagementScope | |
0 2 ${OP} 0 Set-MergeRequest | |
0 2 ${OP} 0 Set-MessageClassification | |
0 2 ${OP} 0 Set-MigrationBatch | |
0 2 ${OP} 0 Set-MoveRequest | |
0 2 ${OP} 0 Set-OabVirtualDirectory | |
0 2 ${OP} 0 Set-OfflineAddressBook | |
0 2 ${OP} 0 Set-OrganizationConfig | |
0 2 ${OP} 0 Set-OrganizationRelationship | |
0 2 ${OP} 0 Set-OutlookAnywhere | |
0 2 ${OP} 0 Set-OutlookProtectionRule | |
0 2 ${OP} 0 Set-OutlookProvider | |
0 2 ${OP} 0 Set-OwaMailboxPolicy | |
0 2 ${OP} 0 Set-OwaVirtualDirectory | |
0 2 ${OP} 0 Set-PerimeterConfig | |
0 2 ${OP} 0 Set-PopSettings | |
0 2 ${OP} 0 Set-PopSubscription | |
0 2 ${OP} 0 Set-PowerShellVirtualDirectory | |
0 2 ${OP} 0 Set-ProvisioningReconciliationConfig | |
0 2 ${OP} 0 Set-PublicFolder | |
0 2 ${OP} 0 Set-PublicFolderDatabase | |
0 2 ${OP} 0 Set-PublicFolderMergeRequest | |
0 2 ${OP} 0 Set-PublicFolderMoveRequest | |
0 2 ${OP} 0 Set-ReceiveConnector | |
0 2 ${OP} 0 Set-RecipientEnforcementProvisioningPolicy | |
0 2 ${OP} 0 Set-RecipientFilterConfig | |
0 2 ${OP} 0 Set-RecipientTemplateProvisioningPolicy | |
0 2 ${OP} 0 Set-RemoteAccountPolicy | |
0 2 ${OP} 0 Set-RemoteAccountSyncCache | |
0 2 ${OP} 0 Set-RemoteDomain | |
0 2 ${OP} 0 Set-RemoteMailbox | |
0 2 ${OP} 0 Set-ResourceConfig | |
0 2 ${OP} 0 Set-RetentionPolicy | |
0 2 ${OP} 0 Set-RetentionPolicyTag | |
0 2 ${OP} 0 Set-RMSTemplate | |
0 2 ${OP} 0 Set-RMSTrustedPublishingDomain | |
0 2 ${OP} 0 Set-RoleAssignmentPolicy | |
0 2 ${OP} 0 Set-RoleGroup | |
0 2 ${OP} 0 Set-RoutingGroupConnector | |
0 2 ${OP} 0 Set-RpcClientAccess | |
0 2 ${OP} 0 Set-SecondaryDomain | |
0 2 ${OP} 0 Set-SendConnector | |
0 2 ${OP} 0 Set-SenderFilterConfig | |
0 2 ${OP} 0 Set-SenderIdConfig | |
0 2 ${OP} 0 Set-SenderReputationConfig | |
0 2 ${OP} 0 Set-SharingPolicy | |
0 2 ${OP} 0 Set-SupervisionPolicy | |
0 2 ${OP} 0 Set-SyncConfig | |
0 2 ${OP} 0 Set-SyncDistributionGroup | |
0 2 ${OP} 0 Set-SyncGroup | |
0 2 ${OP} 0 Set-SyncMailbox | |
0 2 ${OP} 0 Set-SyncMailContact | |
0 2 ${OP} 0 Set-SyncMailUser | |
0 2 ${OP} 0 Set-SyncUser | |
0 2 ${OP} 0 Set-SystemMessage | |
0 2 ${OP} 0 Set-TextMessagingAccount | |
0 2 ${OP} 0 Set-ThrottlingPolicy | |
0 2 ${OP} 0 Set-ThrottlingPolicyAssociation | |
0 2 ${OP} 0 Set-TransportAgent | |
0 2 ${OP} 0 Set-TransportConfig | |
0 2 ${OP} 0 Set-TransportRule | |
0 2 ${OP} 0 Set-TransportServer | |
0 2 ${OP} 0 Set-UMAutoAttendant | |
0 2 ${OP} 0 Set-UMDialPlan | |
0 2 ${OP} 0 Set-UMIPGateway | |
0 2 ${OP} 0 Set-UMMailbox | |
0 2 ${OP} 0 Set-UMMailboxConfiguration | |
0 2 ${OP} 0 Set-UMMailboxPIN | |
0 2 ${OP} 0 Set-UMMailboxPolicy | |
0 2 ${OP} 0 Set-UmServer | |
0 2 ${OP} 0 Set-User | |
0 2 ${OP} 0 Set-WebServicesVirtualDirectory | |
0 2 ${OP} 0 Set-X400AuthoritativeDomain | |
0 2 ${OP} 0 Start-DatabaseAvailabilityGroup | |
0 2 ${OP} 0 Start-EdgeSynchronization | |
0 2 ${OP} 0 Start-MailboxSearch | |
0 2 ${OP} 0 Start-ManagedFolderAssistant | |
0 2 ${OP} 0 Start-MigrationBatch | |
0 2 ${OP} 0 Start-MsoFullSync | |
0 2 ${OP} 0 Start-OrganizationUpgrade | |
0 2 ${OP} 0 Start-ProvisioningRequest | |
0 2 ${OP} 0 Start-RetentionAutoTagLearning | |
0 2 ${OP} 0 Start-UMPhoneSession | |
0 2 ${OP} 0 Stop-DatabaseAvailabilityGroup | |
0 2 ${OP} 0 Stop-MailboxSearch | |
0 2 ${OP} 0 Stop-ManagedFolderAssistant | |
0 2 ${OP} 0 Stop-MigrationBatch | |
0 2 ${OP} 0 Stop-UMPhoneSession | |
0 2 ${OP} 0 Suspend-MailboxDatabaseCopy | |
0 2 ${OP} 0 Suspend-MailboxExportRequest | |
0 2 ${OP} 0 Suspend-MailboxImportRequest | |
0 2 ${OP} 0 Suspend-MailboxRestoreRequest | |
0 2 ${OP} 0 Suspend-MergeRequest | |
0 2 ${OP} 0 Suspend-Message | |
0 2 ${OP} 0 Suspend-MoveRequest | |
0 2 ${OP} 0 Suspend-PublicFolderMergeRequest | |
0 2 ${OP} 0 Suspend-PublicFolderMoveRequest | |
0 2 ${OP} 0 Suspend-PublicFolderReplication | |
0 2 ${OP} 0 Suspend-Queue | |
0 2 ${OP} 0 Test-ActiveSyncConnectivity | |
0 2 ${OP} 0 Test-ArchiveConnectivity | |
0 2 ${OP} 0 Test-AssistantHealth | |
0 2 ${OP} 0 Test-CalendarConnectivity | |
0 2 ${OP} 0 Test-EcpConnectivity | |
0 2 ${OP} 0 Test-EdgeSyncEhf | |
0 2 ${OP} 0 Test-EdgeSynchronization | |
0 2 ${OP} 0 Test-EdgeSyncMserv | |
0 2 ${OP} 0 Test-ExchangeNotification | |
0 2 ${OP} 0 Test-ExchangeSearch | |
0 2 ${OP} 0 Test-FederationTrust | |
0 2 ${OP} 0 Test-FederationTrustCertificate | |
0 2 ${OP} 0 Test-ImapConnectivity | |
0 2 ${OP} 0 Test-IPAllowListProvider | |
0 2 ${OP} 0 Test-IPBlockListProvider | |
0 2 ${OP} 0 Test-IRMConfiguration | |
0 2 ${OP} 0 Test-Mailflow | |
0 2 ${OP} 0 Test-MAPIConnectivity | |
0 2 ${OP} 0 Test-MigrationServerAvailability | |
0 2 ${OP} 0 Test-MRSHealth | |
0 2 ${OP} 0 Test-OrganizationRelationship | |
0 2 ${OP} 0 Test-OutlookConnectivity | |
0 2 ${OP} 0 Test-OutlookWebServices | |
0 2 ${OP} 0 Test-OwaConnectivity | |
0 2 ${OP} 0 Test-PopConnectivity | |
0 2 ${OP} 0 Test-PowerShellConnectivity | |
0 2 ${OP} 0 Test-ReplicationHealth | |
0 2 ${OP} 0 Test-SenderId | |
0 2 ${OP} 0 Test-ServiceHealth | |
0 2 ${OP} 0 Test-SmtpConnectivity | |
0 2 ${OP} 0 Test-SystemHealth | |
0 2 ${OP} 0 Test-TenantMonitoringPerfCounters | |
0 2 ${OP} 0 Test-UMConnectivity | |
0 2 ${OP} 0 Test-WebServicesConnectivity | |
0 2 ${OP} 0 Uninstall-TransportAgent | |
0 2 ${OP} 0 Update-AddressList | |
0 2 ${OP} 0 Update-DistributionGroupMember | |
0 2 ${OP} 0 Update-EmailAddressPolicy | |
0 2 ${OP} 0 Update-FileDistributionService | |
0 2 ${OP} 0 Update-GlobalAddressList | |
0 2 ${OP} 0 Update-HybridConfiguration | |
0 2 ${OP} 0 Update-MailboxDatabaseCopy | |
0 2 ${OP} 0 Update-OfflineAddressBook | |
0 2 ${OP} 0 Update-PublicFolder | |
0 2 ${OP} 0 Update-PublicFolderHierarchy | |
0 2 ${OP} 0 Update-Recipient | |
0 2 ${OP} 0 Update-RoleGroupMember | |
0 2 ${OP} 0 Update-SafeList | |
0 2 ${OP} 0 Update-ServicePlan | |
0 2 ${OP} 0 Update-SyncDistributionGroupMember | |
0 2 ${OP} 0 Update-SyncStatistics | |
0 2 ${OP} 0 Write-AdminAuditLog | |
;----------------------------------------------; | |
; CodeFold ; | |
;----------------------------------------------; | |
;Flags (sum of the members) | |
; 1 case sensitive. | |
; 2 force get fold name for function list from left at the fold start ("Folds:" section only). | |
; 4 force get fold name for function list from right at the fold start, including fold start ("Folds:" section only). | |
; 8 fold start located at line start ("Folds:" section only). | |
; 16 fold start located at line end ("Folds:" section only). | |
; 32 fold end located at line start ("Folds:" section only). | |
; 64 fold end located at line end ("Folds:" section only). | |
; 128 don't catch fold end ("Folds:" section) or skip end ("Skips:" section). | |
; 256 additional to 128 flag - more priority is given to sibling level instead of parent level ("Folds:" section only). | |
; 512 comment fold - fold ignore any other folds and skips inside ("Folds:" section only). | |
; 1024 reserved. | |
; 2048 deny fold - founded fold will be ignored ("Folds:" section only). | |
; 4096 xml fold - "<tag" and "</tag>", "<single" and "/>", "<single" and ">" ("Folds:" section only). | |
; 8192 don't check delimiters from left of fold start ("Folds:" section only). | |
; 16384 don't check delimiters from right of fold start ("Folds:" section only). | |
; 32768 don't check delimiters from left of fold end ("Folds:" section only). | |
; 65536 don't check delimiters from right of fold end ("Folds:" section only). | |
; 131072 deny delimiters ("Folds:" section only). | |
FoldPanel: | |
;================================================================================================================================================================================================================================================================================================================================================================================================================================================================= | |
;PanelFirstBkColor PanelSecondBkColor PanelNormalFoldColor PanelActiveFoldColor PanelNormalNodeOpenBkColor PanelNormalNodeCloseBkColor PanelActiveNodeOpenBkColor PanelActiveNodeCloseBkColor PanelNormalNodeOpenSignColor PanelNormalNodeCloseSignColor PanelActiveNodeOpenSignColor PanelActiveNodeCloseSignColor | |
;================================================================================================================================================================================================================================================================================================================================================================================================================================================================= | |
${CodeFold_PanelFirstBkColor} ${CodeFold_PanelSecondBkColor} ${CodeFold_PanelNormalFoldColor} ${CodeFold_PanelActiveFoldColor} ${CodeFold_PanelNormalNodeOpenBkColor} ${CodeFold_PanelNormalNodeCloseBkColor} ${CodeFold_PanelActiveNodeOpenBkColor} ${CodeFold_PanelActiveNodeCloseBkColor} ${CodeFold_PanelNormalNodeOpenSignColor} ${CodeFold_PanelNormalNodeCloseSignColor} ${CodeFold_PanelActiveNodeOpenSignColor} ${CodeFold_PanelActiveNodeCloseSignColor} | |
FoldList: | |
;================================================ | |
;ListTextColor ListBkColor | |
;================================================ | |
${CodeFold_ListTextColor} ${CodeFold_ListBkColor} | |
TagMark: | |
;============================================================================================================ | |
;TagMarkFlags TagMarkFontStyle TagMarkTextColor TagMarkBkColor | |
;============================================================================================================ | |
${CodeFold_TagMarkFlags} ${CodeFold_TagMarkFontStyle} ${CodeFold_TagMarkTextColor} ${CodeFold_TagMarkBkColor} | |
Skips: | |
;============================= | |
;Flags Skip Skip Escape | |
; start end char | |
;============================= | |
1 `"` `"` "`" | |
1 `'` `'` "`" | |
1 "#" "" "" | |
Folds: | |
;============================================================== | |
;Flags Font Color Color Fold Fold Delimiters | |
; style text bkgrnd start end | |
;============================================================== | |
1 0 0 0 "{" "}" "" | |
;513=1+512 | |
513 3 ${COMM} 0 "<#" "#>" "" | |
;--switch...case...default-- | |
;169=1+8+32+128 | |
169 0 0 0 "case" "case" " " | |
;169=1+8+32+128 | |
169 0 0 0 "case" "default" " :" | |
;169=1+8+32+128 | |
169 0 0 0 "default" "case" " :" | |
;98441=1+8+128+32768+65536 | |
98441 0 0 0 "case" "}" " :" | |
;98441=1+8+128+32768+65536 | |
98441 0 0 0 "default" "}" " :" | |
;--heredoc-- | |
;41=1+8+32 | |
513 0 ${STR} 0 `@"` `"@` "" | |
;----------------------------------------------; | |
; AutoComplete ; | |
;----------------------------------------------; | |
Blocks: | |
;====================================================================== | |
;Abbreviations and blocks | |
; | |
; $~abbr normal abbreviation. | |
; $=abbr exact abbreviation. May contain delimiters. | |
; $[] set caret to this position. Can be multiple (hot spots). | |
; $[text] select text. Can be multiple (hot spots). | |
; $$ symbol $. | |
; $\] escape symbol ]. Can be used in $[text] block: $[One [1$\] ]. | |
; ${VAR} variable assigned from Coder::Settings. | |
; $; comment line. | |
;====================================================================== | |
$~do | |
do { | |
${AutoComplete_Indent}$[] | |
} | |
while ($[]); | |
$~for | |
for ($[]; $[]; $[]) { | |
${AutoComplete_Indent}$[] | |
} | |
$~if | |
if ($[]) { | |
${AutoComplete_Indent}$[] | |
} | |
$~switch | |
switch ($[]) { | |
${AutoComplete_Indent}case $[]: | |
${AutoComplete_Indent}${AutoComplete_Indent}$[] | |
${AutoComplete_Indent}${AutoComplete_Indent}break; | |
${AutoComplete_Indent}case $[]: | |
${AutoComplete_Indent}${AutoComplete_Indent}$[] | |
${AutoComplete_Indent}${AutoComplete_Indent}break; | |
${AutoComplete_Indent}default: | |
${AutoComplete_Indent}${AutoComplete_Indent}$[] | |
${AutoComplete_Indent}${AutoComplete_Indent}break; | |
} | |
$~try | |
try { | |
${AutoComplete_Indent}$[] | |
} | |
catch ($[]) { | |
${AutoComplete_Indent}$[] | |
} | |
finally { | |
${AutoComplete_Indent}$[] | |
} | |
$~while | |
while ($[]) { | |
${AutoComplete_Indent}$[] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://blog.sepa.spb.ru/2012/11/powershell-highlighter-for-akelpad.html