< Back

Add-AzureRmVpnClientRevokedCertificate

Tue Jan 29, 2019 9:53 pm

NAME Add-AzureRmVpnClientRevokedCertificate



SYNOPSIS

Adds a VPN client-revocation certificate.





SYNTAX

Add-AzureRmVpnClientRevokedCertificate [-DefaultProfile <IAzureContextContainer>] -ResourceGroupName <String> -Thumbprint <String>

-VirtualNetworkGatewayName <String> -VpnClientRevokedCertificateName <String> [<CommonParameters>]





DESCRIPTION

The Add-AzureRmVpnClientRevokedCertificate cmdlet assigns a client-revocation certificate to a virtual network gateway. Client-revocation

certificates prevent client computers from using the specified certificate for authentication. You need to specify both the certificate name and

the certificate thumbprint to use this cmdlet.





PARAMETERS

-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the name of the resource group that the virtual network gateway is assigned to.



Resource groups categorize items to help simplify inventory management and general Azure administration.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Thumbprint <String>

Specifies the unique identifier of the certificate being added. For example:



-Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"



You can get thumbprint information for your certificates by using a Windows PowerShell command similar to this: `Get-ChildItem -Path

Cert:\\LocalMachine\\Root`.



The preceding command gets information for all the local computer certificates found in the root certificate store.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-VirtualNetworkGatewayName <String>

Specifies the name of the virtual network gateway where the certificate should be added.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-VpnClientRevokedCertificateName <String>

Specifies the name of the VPN client certificate to be added.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

Microsoft.Azure.Commands.Network.Models.PSVpnClientRevokedCertificate







NOTES









Example 1: Add a new client-revocation certificate to a virtual network gateway



PS C:\\>Add-AzureRmVpnClientRevokedCertificate -VirtualNetworkGatewayName "ContosoVirtualNetwork" -ResourceGroupName "ContosoResourceGroup"

-VpnClientRevokedCertificateName "ContosoRevokedClientCertificate"-Thumbprint "E3A38EBA60CAA1C162785A2E1C44A15AD450199C3"



This command adds a new client-revocation certificate to the virtual network gateway named ContosoVirtualNetwork. In order to add the certificate,

you must specify both the certificate name and the certificate thumbprint.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... ertificate

Get-AzureRmVpnClientRevokedCertificate

New-AzureRmVpnClientRevokedCertificate

Remove-AzureRmVpnClientRevokedCertificate