Public/Start-Work.ps1

Function Start-Work {
    <#
        .SYNOPSIS
            Get to work!
        .DESCRIPTION
            Get to work!
        .PARAMETER Param1
            The description of the Param1 parameter.
        .INPUTS
            None
        .OUTPUTS
            None
        .NOTES
            Some extra info
        .EXAMPLE
            Start-Work -VSCode
 
            Launches VSCode
        .LINK
            about_functions_advanced
        .LINK
            about_CommonParameters
    #>

    [CmdletBinding()]
    Param(
        [switch]$VSCode,
        [switch]$VSStudio,
        [switch]$notepadplusplus,
        [switch]$rmm,
        [switch]$intraweb,
        [switch]$mspbackup,
        [switch]$chrome,
        [switch]$tsssh,
        [switch]$mstsc
    )
    Begin {

    }
    Process {
        If ($VSCode) {
            Start-VSCode
        }
        If ($VSStudio) {

        }
        If ($notepadplusplus) {
            Start-NotepadPlusPlus
        }
        If ($rmm) {

        }
        If ($intraweb) {

        }
        If ($mspbackup) {

        }
        If ($chrome) {

        }
        If ($tsssh) {

        }
        If ($mstsc) {

        }
    }
    End {

    }
}