Remove OBS
Removes items from OBS
Remove-OBS -SourceName "foo"
Remove-OBS -SceneName "bar"
The name of the item we want to remove
Type | Required | Position | PipelineInput | Aliases |
---|---|---|---|---|
[Object] |
true | 1 | true (ByPropertyName) | SourceName InputName SceneName |
-WhatIf is an automatic variable that is created when a command has [CmdletBinding(SupportsShouldProcess)]
.
-WhatIf is used to see what would happen, or return operations without executing them
-Confirm is an automatic variable that is created when a command has [CmdletBinding(SupportsShouldProcess)]
.
-Confirm is used to -Confirm each operation.
If you pass -Confirm:$false
you will not be prompted.
If the command sets a [ConfirmImpact("Medium")]
which is lower than $confirmImpactPreference
, you will not be prompted unless -Confirm is passed.
Remove-OBS [-ItemName] <Object> [-WhatIf] [-Confirm] [<CommonParameters>]