Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
e9055da
Add changes from PlatyPS.
TimShererWithAquent Aug 31, 2021
3f213f5
Additional fixes.
TimShererWithAquent Aug 31, 2021
1afb321
Update an external help file.
TimShererWithAquent Sep 2, 2021
00118fc
Changes from PlatyPS.
TimShererWithAquent Sep 3, 2021
4e185da
Resolves #2538
velkovb Sep 6, 2021
b6ee177
Apply suggestions from code review
velkovb Sep 6, 2021
bc8d552
Resolves #2548
velkovb Sep 7, 2021
cf77c1e
Resolves #2573
velkovb Sep 7, 2021
68ba9be
Resolves #2581
velkovb Sep 7, 2021
8d0aa5f
Resolves #2590
velkovb Sep 7, 2021
b0a9a7f
Resolves #2610
velkovb Sep 7, 2021
dd5de0d
Apply suggestions from code review
velkovb Sep 13, 2021
af6dd62
Merge branch 'master' into fix/2610-add-example
velkovb Sep 13, 2021
1dbfab9
Merge branch 'master' into fix/2590-fix-example
v-dihans Sep 14, 2021
a04faca
Merge branch 'master' into fix/2573-improve-example
v-dihans Sep 14, 2021
b4aa3c3
Merge branch 'master' into fix/2548-example
v-dihans Sep 14, 2021
5689953
Merge pull request #2640 from velkovb/fix/2590-fix-example
v-dihans Sep 14, 2021
11cbce9
Merge branch 'master' into fix/2610-add-example
v-dihans Sep 14, 2021
df40c87
Merge branch 'master' into fix/2548-example
v-dihans Sep 14, 2021
c02931d
Merge branch 'master' into fix/2573-improve-example
v-dihans Sep 14, 2021
fd3583e
Merge branch 'master' into fix/2581-example-title
v-dihans Sep 14, 2021
1142c55
Merge branch 'master' into fix/2538-update-description
v-dihans Sep 14, 2021
c9b7a4e
Merge pull request #2641 from velkovb/fix/2610-add-example
v-dihans Sep 14, 2021
08a58e4
Merge branch 'master' into fix/2573-improve-example
v-dihans Sep 14, 2021
cec5069
Merge branch 'master' into fix/2548-example
v-dihans Sep 14, 2021
acda247
Merge branch 'master' into fix/2538-update-description
v-dihans Sep 14, 2021
29bb17a
Merge branch 'master' into fix/2581-example-title
v-dihans Sep 14, 2021
bac5eb1
Merge pull request #2637 from velkovb/fix/2573-improve-example
v-dihans Sep 14, 2021
85a7aa8
Merge branch 'master' into fix/2581-example-title
v-dihans Sep 14, 2021
e6c490e
Merge branch 'master' into fix/2548-example
v-dihans Sep 14, 2021
d9715fb
Merge branch 'master' into fix/2538-update-description
v-dihans Sep 14, 2021
b42ebda
Merge pull request #2633 from velkovb/fix/2538-update-description
v-dihans Sep 14, 2021
e8f94ea
Merge branch 'master' into fix/2581-example-title
v-dihans Sep 14, 2021
3ebb246
Merge branch 'master' into fix/2548-example
v-dihans Sep 14, 2021
7c4629d
Merge pull request #2639 from velkovb/fix/2581-example-title
v-dihans Sep 14, 2021
c79ffd5
Merge branch 'master' into fix/2548-example
v-dihans Sep 14, 2021
0ba2603
Merge branch 'master' into adcsdeployment-v-tishe
v-dihans Sep 14, 2021
8e69929
Merge branch 'master' into msdtc-v-tishe
v-dihans Sep 14, 2021
9f35940
Merge pull request #2629 from TimShererWithAquent/adcsdeployment-v-tishe
v-dihans Sep 14, 2021
67e26d9
Merge branch 'master' into msdtc-v-tishe
v-dihans Sep 14, 2021
0d07bd1
Merge branch 'master' into fix/2548-example
v-dihans Sep 14, 2021
f15e7d7
Merge branch 'master' into remoteaccess-v-tishe
Sep 14, 2021
620f3b5
Merge pull request #2636 from velkovb/fix/2548-example
v-dihans Sep 14, 2021
e5f31bf
Merge branch 'master' into msdtc-v-tishe
v-dihans Sep 14, 2021
d6d5608
Merge branch 'master' into remoteaccess-v-tishe
Sep 14, 2021
3208bc1
Merge pull request #2615 from TimShererWithAquent/remoteaccess-v-tishe
Sep 14, 2021
e3b761e
Merge branch 'master' into msdtc-v-tishe
v-dihans Sep 14, 2021
4024ef5
Merge pull request #2625 from TimShererWithAquent/msdtc-v-tishe
v-dihans Sep 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docset/winserver2012-ps/storage/Format-Volume.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,26 @@ To create a new volume, use this cmdlet in conjunction with the Initialize-Disk
## EXAMPLES

### Example 1: Quick format
```
```powershell
PS C:\>Format-Volume -DriveLetter D
```

This example performs a format of the D volume.

### Example 2: Full format using FAT32
```
```powershell
PS C:\>Format-Volume -DriveLetter D -FileSystem FAT32 -Full -Force
```

This example performs a full format of the D volume using the FAT32 file system.

### Example 3: Full format using NTFS and allocation size 8192
```powershell
PS C:\> Format-Volume -DriveLetter D -FileSystem NTFS -AllocationUnitSize 8192
```

This example performs a full format of the D volume using the NTFS file system and allocation size 8192.

## PARAMETERS

### -AllocationUnitSize
Expand Down
3 changes: 2 additions & 1 deletion docset/winserver2012-ps/webadministration/New-WebBinding.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,10 @@ This command creates a binding on the default website.
### Example 2: Add a new SSL site binding
```powershell
PS C:\> New-WebBinding -Name "Default Web Site" -IPAddress "*" -Port 443 -HostHeader "TestSite" -Protocol "https"
PS C:\> (Get-WebBinding -Name "Default Web Site" -Port 443 -Protocol "https").AddSslCertificate("a909502dd82ae41433e6f83886b00d4277a32a7b", "my")
```

This command creates an SSL binding on the default website.
This command creates an SSL binding on the default website and adds a certificate with thumbprint `a909502dd82ae41433e6f83886b00d4277a32a7b` from the computer certificate store.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ For more information about the how to determine the properties for **FineGrained

## EXAMPLES

### Example 1: Get a fine-grained policy for a specified user
### Example 1: Get a fine-grained policy using a name
```
PS C:\>Get-ADFineGrainedPasswordPolicy -Identity AdminsPSO
Name : AdminsPSO
Expand Down
2 changes: 1 addition & 1 deletion docset/winserver2012r2-ps/adfs/Test-AdfsFarmJoin.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The command specifies the credentials that are stored in the **$FScred** variabl
### Example 2: Test the overwrites of an existing AD FS configuration database
```
PS C:\> $FScred = Get-Credential
PS C:\> Test-AdfsFarmJoin -OverwriteConfiguration -PrimaryComputerName "PrimaryWIDHost" -PrimaryComputerPort 80 -ServiceAccountCredential $FScred -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed
PS C:\> Test-AdfsFarmJoin -PrimaryComputerName "PrimaryWIDHost" -PrimaryComputerPort 80 -ServiceAccountCredential $FScred -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed
```

The first command uses the **Get-Credential** cmdlet to create a credential object for the Active Directory account under which the AD FS service runs.
Expand Down
11 changes: 9 additions & 2 deletions docset/winserver2012r2-ps/storage/Format-Volume.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,26 @@ To create a new volume, use this cmdlet in conjunction with the Initialize-Disk
## EXAMPLES

### Example 1: Quick format
```
```powershell
PS C:\>Format-Volume -DriveLetter D
```

This example performs a format of the D volume.

### Example 2: Full format using FAT32
```
```powershell
PS C:\>Format-Volume -DriveLetter D -FileSystem FAT32 -Full -Force
```

This example performs a full format of the D volume using the FAT32 file system.

### Example 3: Full format using NTFS and allocation size 8192
```powershell
PS C:\> Format-Volume -DriveLetter D -FileSystem NTFS -AllocationUnitSize 8192
```

This example performs a full format of the D volume using the NTFS file system and allocation size 8192.

## PARAMETERS

### -AllocationUnitSize
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ This command creates a binding on the default website.
### Example 2: Add a new SSL site binding
```powershell
PS C:\> New-WebBinding -Name "Default Web Site" -IPAddress "*" -Port 443 -HostHeader "TestSite" -Protocol "https"
PS C:\> (Get-WebBinding -Name "Default Web Site" -Port 443 -Protocol "https").AddSslCertificate("a909502dd82ae41433e6f83886b00d4277a32a7b", "my")
```

This command creates an SSL binding on the default website.
This command creates an SSL binding on the default website and adds a certificate with thumbprint `a909502dd82ae41433e6f83886b00d4277a32a7b` from the computer certificate store.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ For more information about the how to determine the properties for **FineGrained

## EXAMPLES

### Example 1: Get a fine-grained policy for a specified user
### Example 1: Get a fine-grained policy using a name
```
PS C:\> Get-ADFineGrainedPasswordPolicy -Identity AdminsPSO
Name : AdminsPSO
Expand Down
2 changes: 1 addition & 1 deletion docset/winserver2016-ps/adfs/Test-AdfsFarmJoin.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The command specifies the credentials that are stored in the $FScred variable fo
### Example 2: Test the overwrites of an existing AD FS configuration database
```
PS C:\> $FScred = Get-Credential
PS C:\> Test-AdfsFarmJoin -OverwriteConfiguration -PrimaryComputerName "PrimaryWIDHost" -PrimaryComputerPort 80 -ServiceAccountCredential $FScred -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed
PS C:\> Test-AdfsFarmJoin -PrimaryComputerName "PrimaryWIDHost" -PrimaryComputerPort 80 -ServiceAccountCredential $FScred -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed
```

The first command uses the **Get-Credential** cmdlet to create a credential object for the Active Directory account under which the AD FS service runs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ The policy treats values the follow the EQ operator as multiple assertions which
The policy treats values that follow the NE operator as multiple assertions which are logically differenced (AND'd).
The criterion is satisfied if the type of query of the request matches one of the EQ values and does not match any of the NE values.

Example criterion: `"EQ,TXT,SRV,NE,MX"`
Example criterion: `"EQ,TXT,SRV;NE,MX"`

```yaml
Type: String
Expand Down
7 changes: 7 additions & 0 deletions docset/winserver2016-ps/storage/Format-Volume.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,13 @@ D NTFS Fixed Healthy OK

Be careful, if using this cmdlet on a Windows Cluster, it would format all drives returned by the **Get-Volume** cmdlet.

### Example 4: Full format using NTFS and allocation size 8192
```powershell
PS C:\> Format-Volume -DriveLetter D -FileSystem NTFS -AllocationUnitSize 8192
```

This example performs a full format of the D volume using the NTFS file system and allocation size 8192.

## PARAMETERS

### -AllocationUnitSize
Expand Down
4 changes: 2 additions & 2 deletions docset/winserver2016-ps/tls/Enable-TlsCipherSuite.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ Enable-TlsCipherSuite [[-Position] <UInt32>] [-Name] <String> [-WhatIf] [-Confir

## DESCRIPTION
The **Enable-TlsCipherSuite** cmdlet enables a cipher suite.
This cmdlet adds the cipher suite to the list of Transport Layer Security (TLS) protocol cipher suites for the computer.
If you do not specify a position in the list, this cmdlet adds it at the lowest position.
This cmdlet adds the cipher suite to the list of Transport Layer Security (TLS) protocol cipher suites for the computer.
If you do not specify a position in the list, this cmdlet adds it at the lowest position. No restart is required for changes to take effect.

If a cipher suite is not enabled for TLS based secure channel (Schannel) registry settings, then the cipher suite is not used.

Expand Down
3 changes: 2 additions & 1 deletion docset/winserver2016-ps/webadministration/New-WebBinding.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ This command creates a binding on the default website.
### Example 2: Add a new SSL site binding
```powershell
PS C:\> New-WebBinding -Name "Default Web Site" -IPAddress "*" -Port 443 -HostHeader "TestSite" -Protocol "https"
PS C:\> (Get-WebBinding -Name "Default Web Site" -Port 443 -Protocol "https").AddSslCertificate("a909502dd82ae41433e6f83886b00d4277a32a7b", "my")
```

This command creates an SSL binding on the default website.
This command creates an SSL binding on the default website and adds a certificate with thumbprint `a909502dd82ae41433e6f83886b00d4277a32a7b` from the computer certificate store.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ For more information about the how to determine the properties for **FineGrained

## EXAMPLES

### Example 1: Get a fine-grained policy for a specified user
### Example 1: Get a fine-grained policy using a name
```
PS C:\> Get-ADFineGrainedPasswordPolicy -Identity AdminsPSO
Name : AdminsPSO
Expand Down
2 changes: 1 addition & 1 deletion docset/winserver2019-ps/adfs/Test-AdfsFarmJoin.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ The command specifies the credentials that are stored in the $FScred variable fo
### Example 2: Test the overwrites of an existing AD FS configuration database
```
PS C:\> $FScred = Get-Credential
PS C:\> Test-AdfsFarmJoin -OverwriteConfiguration -PrimaryComputerName "PrimaryWIDHost" -PrimaryComputerPort 80 -ServiceAccountCredential $FScred -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed
PS C:\> Test-AdfsFarmJoin -PrimaryComputerName "PrimaryWIDHost" -PrimaryComputerPort 80 -ServiceAccountCredential $FScred -CertificateThumbprint 8169c52b4ec6e77eb2ae17f028fe5da4e35c0bed
```

The first command uses the **Get-Credential** cmdlet to create a credential object for the Active Directory account under which the AD FS service runs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ The policy treats values the follow the EQ operator as multiple assertions which
The policy treats values that follow the NE operator as multiple assertions which are logically differenced (AND'd).
The criterion is satisfied if the type of query of the request matches one of the EQ values and does not match any of the NE values.

Example criterion: `"EQ,TXT,SRV,NE,MX"`
Example criterion: `"EQ,TXT,SRV;NE,MX"`

```yaml
Type: String
Expand Down
7 changes: 7 additions & 0 deletions docset/winserver2019-ps/storage/Format-Volume.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,13 @@ D NTFS Fixed Healthy OK

Be careful, if using this cmdlet on a Windows Cluster, it would format all drives returned by the **Get-Volume** cmdlet.

### Example 4: Full format using NTFS and allocation size 8192
```powershell
PS C:\> Format-Volume -DriveLetter D -FileSystem NTFS -AllocationUnitSize 8192
```

This example performs a full format of the D volume using the NTFS file system and allocation size 8192.

## PARAMETERS

### -AllocationUnitSize
Expand Down
2 changes: 1 addition & 1 deletion docset/winserver2019-ps/tls/Enable-TlsCipherSuite.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Enable-TlsCipherSuite [[-Position] <UInt32>] [-Name] <String> [-WhatIf] [-Confir
## DESCRIPTION
The **Enable-TlsCipherSuite** cmdlet enables a cipher suite.
This cmdlet adds the cipher suite to the list of Transport Layer Security (TLS) protocol cipher suites for the computer.
If you do not specify a position in the list, this cmdlet adds it at the lowest position.
If you do not specify a position in the list, this cmdlet adds it at the lowest position. No restart is required for changes to take effect.

If a cipher suite is not enabled for TLS based secure channel (Schannel) registry settings, then the cipher suite is not used.

Expand Down
3 changes: 2 additions & 1 deletion docset/winserver2019-ps/webadministration/New-WebBinding.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ This command creates a binding on the default website.
### Example 2: Add a new SSL site binding
```powershell
PS C:\> New-WebBinding -Name "Default Web Site" -IPAddress "*" -Port 443 -HostHeader "TestSite" -Protocol "https"
PS C:\> (Get-WebBinding -Name "Default Web Site" -Port 443 -Protocol "https").AddSslCertificate("a909502dd82ae41433e6f83886b00d4277a32a7b", "my")
```

This command creates an SSL binding on the default website.
This command creates an SSL binding on the default website and adds a certificate with thumbprint `a909502dd82ae41433e6f83886b00d4277a32a7b` from the computer certificate store.

## PARAMETERS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ For more information about the how to determine the properties for **FineGrained

## EXAMPLES

### Example 1: Get a fine-grained policy for a specified user
### Example 1: Get a fine-grained policy using a name
```
PS C:\> Get-ADFineGrainedPasswordPolicy -Identity AdminsPSO
Name : AdminsPSO
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -493,11 +493,23 @@ This cmdlet supports the common parameters: `-Debug`, `-ErrorAction`, `-ErrorVar

## INPUTS

### bool, string, string, enum, string, SecureString, string, string, string, string, bool, string, long, string, string, bool, bool, bool, string, enum, long
### System.Management.Automation.SwitchParameter

### System.Security.SecureString

### System.String

### Microsoft.CertificateServices.Deployment.Common.CA.ValidityPeriod

### System.Int32

### Microsoft.CertificateServices.Deployment.Common.CA.CAType

### System.Management.Automation.PSCredential

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.CA.CertificationAuthoritySetupResult
### Microsoft.CertificateServices.Deployment.Common.CA.CertificationAuthoritySetupResult

## NOTES
* Ensure you run Windows PowerShell as an administrator. You can use the *force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,17 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### enum, string, bool, PSCredential
### Microsoft.CertificateServices.Deployment.Common.AuthenticationType

### System.String

### System.Management.Automation.SwitchParameter

### System.Management.Automation.PSCredential

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.CEP.EnrollmentPolicyServiceResult
### Microsoft.CertificateServices.Deployment.Common.CEP.EnrollmentPolicyServiceResult

## NOTES
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,11 +275,19 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### bool, bool, enum, string, bool, string, SecureString, string, PSCredential
### System.String

### System.Security.SecureString

### System.Management.Automation.SwitchParameter

### Microsoft.CertificateServices.Deployment.Common.AuthenticationType

### System.Management.Automation.PSCredential

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.CES.EnrollmentServiceResult
### Microsoft.CertificateServices.Deployment.Common.CES.EnrollmentServiceResult

## NOTES
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,11 +380,19 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### bool, int, string, string, string, string, string, string, string, string, string, SecurePassword, int, string
### System.Management.Automation.SwitchParameter

### System.String

### System.Security.SecureString

### System.Int32

### System.Management.Automation.PSCredential

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.NDES.NetworkDeviceEnrollmentServiceResult
### Microsoft.CertificateServices.Deployment.Common.NDES.NetworkDeviceEnrollmentServiceResult

## NOTES
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### PSCredential
### System.Management.Automation.PSCredential

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.OCSP.OnlineResponderResult
### Microsoft.CertificateServices.Deployment.Common.OCSP.OnlineResponderResult

## NOTES
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### PSCredential
### System.String

### System.Management.Automation.PSCredential

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.WebEnrollment.WebEnrollmentResult
### Microsoft.CertificateServices.Deployment.Common.WEP.WebEnrollmentResult

## NOTES
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.CA.CertificationAuthoritySetupResult
### Microsoft.CertificateServices.Deployment.Common.CA.CertificationAuthoritySetupResult

## NOTES
* To uninstall the CA role service, ensure you run Windows PowerShell as an administrator. You can run the command with the *Force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,13 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### bool, enum, bool
### System.Management.Automation.SwitchParameter

### Microsoft.CertificateServices.Deployment.Common.AuthenticationType

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.CEP.EnrollmentPolicyServiceResult
### Microsoft.CertificateServices.Deployment.Common.CEP.EnrollmentPolicyServiceResult

## NOTES
* Ensure you run Windows PowerShell as an administrator. You can use the *Force* parameter to bypass the prompt for confirmation.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,15 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable

## INPUTS

### string,enum,bool
### System.String

### Microsoft.CertificateServices.Deployment.Common.AuthenticationType

### System.Management.Automation.SwitchParameter

## OUTPUTS

### Microsoft.CertificateServices.Deployment.Commands.CES.EnrollmentServiceResult
### Microsoft.CertificateServices.Deployment.Common.CES.EnrollmentServiceResult

## NOTES
* The application directories are removed from their respective instance folders in the file system. The uninstall command does not remove the Secure Sockets Layer/Transport Layer Security (SSL/TLS) or the secure hypertext transfer protocol (https) bindings.
Expand Down
Loading