public/Unregister-PSJetInstallerScheduledTask.ps1

<#
    .SYNOPSIS
        Unregisters the scheduled task associated with the PSJet installer.

    .DESCRIPTION
        The `Unregister-PSJetInstallerScheduledTask` function removes the scheduled task related
        to the PSJet installer if it exists. The task is identified using the "\PSJet\" path
        and name obtained from the `Get-PSJetInstallerName` function. No action is taken if
        the task does not exist.

    .EXAMPLE
        Unregister-PSJetInstallerScheduledTask

        Description
        -----------
        Attempts to unregister (remove) the scheduled task related to the PSJet installer.

    .NOTES
        - Ensure that the user has the appropriate permissions to remove a scheduled task in Windows.
        - The function will silently ignore cases where the scheduled task does not exist.
        - Ensure that other processes are not dependent on the existing scheduled task as it will be unregistered without confirmation.
#>

function Unregister-PSJetInstallerScheduledTask {
    $taskPath = "\PSJet\"
    $taskName = Get-PSJetInstallerName
    $installerScheduledTask = (Get-ScheduledTask -TaskPath $taskPath -TaskName $taskName -ErrorAction SilentlyContinue)
    $installerScheduledTask | Unregister-ScheduledTask -Confirm:$false
}