Skip to content

Remove-MeetingRoom

SYNOPSIS

Remove a meeting room.

SYNTAX

Remove-MeetingRoom [[-naam] <Object>] [-Confirm]

DESCRIPTION

The `Remove-MeetingRoom` function removes a meeting room from Active Directory. It allows specifying the meeting room name and provides an option for confirmation before removal. The function logs the removal action and supports interactive confirmation prompts.

EXAMPLES

EXAMPLE 1

Remove-MeetingRoom -naam "Conference Room A"

Removes the meeting room named "Conference Room A" after confirmation.

EXAMPLE 2

Remove-MeetingRoom -naam "Conference Room A" -Confirm

Removes the meeting room named "Conference Room A" without confirmation prompts.

PARAMETERS

-naam

The name of the meeting room to be removed.

Type: Object
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Confirm

A switch to bypass confirmation prompts during the removal process.

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

INPUTS

OUTPUTS

NOTES