< Back

Remove-VpnConnectionTriggerApplication

Wed Jan 30, 2019 6:05 pm

NAME Remove-VpnConnectionTriggerApplication



SYNOPSIS

Removes a trigger application from a VPN connection object.





SYNTAX

Remove-VpnConnectionTriggerApplication [-ConnectionName] <String> [-ApplicationID] <String[]> [-CimSession <CimSession[]>] [-Force] [-PassThru]

[-ThrottleLimit <Int32>] [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

The Remove-VpnConnectionTriggerApplication cmdlet removes a trigger application from a VPN connection object. After you remove an application from the

VPN connection, when the client accesses that application, it no longer triggers the VPN connection.





PARAMETERS

-ApplicationID <String[]>

Specifies an array of unique identifiers for an application. For legacy desktop applications, the application identifier is the application path.

For modern applications, it is the Package Family Name of the application.





Required? true

Position? 3

Default value none

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-CimSession [<CimSession[]>]

Runs the cmdlet in a remote session or on a remote computer. Enter a computer name or a session object, such as the output of a New-CimSession or

Get-CimSession cmdlet. The default is the current session on the local computer.



Required? false

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-ConnectionName <String>

Specifies the name of a VPN connection profile. To view existing VPN connection profiles, use the Get-VpnConnection cmdlet.



A VPN connection profile includes connection types, group policy settings, and names of authentication, authorization, and accounting servers.



Required? true

Position? 2

Default value none

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Force [<SwitchParameter>]

Forces the command to run without asking for user confirmation.



Required? false

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-PassThru [<SwitchParameter>]

Returns an object representing the item with which you are working. By default, this cmdlet does not generate any output. If you specify this

parameter, the cmdlet returns the VpnConnectionTriggerApplication object that contains the applications configured for VPN trigger.



Required? false

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-ThrottleLimit [<Int32>]

Specifies the maximum number of concurrent operations that can be established to run the cmdlet. If this parameter is omitted or a value of 0 is

entered, then Windows PowerShell???? calculates an optimum throttle limit for the cmdlet based on the number of CIM cmdlets that are running on the

computer. The throttle limit applies only to the current cmdlet, not to the session or to the computer.



Required? false

Position? named

Default value none

Accept pipeline input? false

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value false

Accept pipeline input? false

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value false

Accept pipeline input? false

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 (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS









OUTPUTS

Microsoft.Management.Infrastructure.CimInstance#VpnConnectionTriggerApplication







Example 1: Remove a VPN connection trigger application



PS C:\\> Remove-VpnConnectionTriggerApplication -ConnectionName "Contoso" -ApplicationID

"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe","Microsoft.RemoteDesktop_Contoso0987" -PassThru -Force

ConnectionName : Contoso



ApplicationID : {C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe, Microsoft.RemoteDesktop_Contoso0987}



This command uses the Remove-VpnConnectionTriggerApplication cmdlet to remove the trigger applications by using the ApplicationID parameter. The command

also specifies the PassThru and Force parameters.







RELATED LINKS

Add-VpnConnectionTriggerApplication