Remove-DfsReplicatedFolder

Removes a replicated folder from a replication group.

Syntax

Remove-DfsReplicatedFolder
      [-GroupName] <String[]>
      [-FolderName] <String[]>
      [-Force]
      [[-DomainName] <String>]
      [-WhatIf]
      [-Confirm]
      [<CommonParameters>]

Description

The Remove-DfsReplicatedFolder cmdlet removes replicated folders from a replication group. Replicated folders are logical arrangements of replication that do not contain computer-specific settings.

When you remove a replicated folder, the DFS Replication (DSFR) service cannot replicate the folder. This operation does not delete any replicated file data. Use this cmdlet only when you decommission a replicated folder.

Examples

Example 1: Remove a replicated folder

PS C:\> Remove-DfsReplicatedFolder -GroupName "RG11" -FolderName "RF22"


Performing this operation will remove the replicated folder "RF22" and its memberships.
Are you sure you want to continue to remove this replicated folder and its memberships?
[Y] Yes  [N] No  [S] Suspend  [?] Help (default is "Y"): y

This command removes the replicated folder RF22 and its associated memberships from the replication group named RG11.

Example 2: Remove all replicated folders associated with a replication group

PS C:\> Remove-DfsReplicatedFolder -GroupName "RG11" -FolderName * -Force

This command removes all replicated folders and their associated memberships from the replication group named RG11. The Force parameter specifies that the cmdlet does not prompt you to confirm that you want to remove each replicated folder.

Parameters

-Confirm

Prompts you for confirmation before running the cmdlet.

Type:SwitchParameter
Aliases:cf
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-DomainName

Specifies the NetBIOS name or fully qualified domain name (FQDN) for the Active Directory Domain Service (AD DS) domain that contains the replication group. If you do not specify this parameter, the cmdlet uses the domain of the current user.

Type:String
Position:100
Default value:[Current Domain]
Required:False
Accept pipeline input:True
Accept wildcard characters:False

-FolderName

Specifies an array of names of replicated folders. You can use a comma separated list and the wildcard character (*). If you do not specify this parameter, the cmdlet gets all replicated folders.

Type:String[]
Aliases:RF, RfName
Position:1
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Force

Forces the command to run without asking for user confirmation.

Type:SwitchParameter
Position:2
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-GroupName

Specifies an array of names of replication groups. You can use a comma separated list and the wildcard character (*).

Type:String[]
Aliases:RG, RgName
Position:0
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-WhatIf

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

Type:SwitchParameter
Aliases:wi
Position:Named
Default value:False
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Inputs

Microsoft.DistributedFileSystemReplication.DfsReplicationGroup, string

Outputs

[none]