< Back

Remove-ScheduledReminderJob

Sat Jan 18, 2020 4:56 pm

NAME Remove-ScheduledReminderJob



SYNOPSIS

Remove a scheduled reminder job.





SYNTAX

Remove-ScheduledReminderJob [-Confirm] [-ID <Int32>] [-WhatIf] [<CommonParameters>]



Remove-ScheduledReminderJob [-Name] <String> [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

User this command to remove a scheduled reminder job. Although you could also use Unregister-Scheduledjob.





PARAMETERS

-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-ID <Int32>

The scheduled reminder job ID.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Name <String>

The name of a scheduled reminder job.



Required? true

Position? 0

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

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

System.Int32







OUTPUTS

None







NOTES





Learn more about PowerShell: http://jdhitsolutions.com/blog/essentia ... resources/



-------------------------- Example 1 --------------------------



PS C:\\> remove-scheduledreminderjob -name standup





-------------------------- Example 2 --------------------------



PS C:\\> Get-ScheduledReminderJob | Remove-ScheduledReminderJob



Remove all reminder jobs.



RELATED LINKS

Get-ScheduledReminderJob

New-ScheduledReminderJob