Stop-WebCommitDelay

Stop-WebCommitDelay

Instructs the IIS configuration system to resume the commitment of changes.

Syntax

Parameter Set: Default
Stop-WebCommitDelay [[-PSPath] <String[]> ] [[-Commit] <Boolean> ] [ <CommonParameters>]

Detailed Description

Instructs the configuration system to end the delay of commitment changes started by the Start-WebCommitDelay cmdlet. You can choose to either commit or discard configuration changes made by using the Commit parameter.

Parameters

-Commit<Boolean>

Commit flag that tells the IIS configuration system to commit changes when the flag is set to $true, or to discard changes when set to $false.

Aliases

none

Required?

false

Position?

3

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-PSPath<String[]>

Specifies the configuration path. This can be either an IIS configuration path in the format computer name/webroot/apphost, or the IIS module path in this format IIS:\sites\Default Web Site.

Aliases

none

Required?

false

Position?

2

Default Value

none

Accept Pipeline Input?

true (ByPropertyName)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

Example 1: Commit configuration changes

Commits the configuration changes made since the Start-WebCommitDelay cmdlet was executed.

PS C:\> Stop-WebCommitDelay –Commit $true

Example 2: Discard configuration changes

Discards the configuration changes made since the Start-WebCommitDelay cmdlet was executed.

PS C:\> Stop-WebCommitDelay –Commit $false

Start-WebCommitDelay