functions/set-d365workstationmode.ps1

<#
.SYNOPSIS
Set the Workstation mode
 
.DESCRIPTION
Set the Workstation mode to enabled or not
 
It is used to enable the tool to run on a personal machine and still be able to call
Invoke-D365TableBrowser and Invoke-D365SysRunnerClass.
 
.PARAMETER Enabled
$True enables the workstation mode while $false deactivated the workstation mode.
 
.EXAMPLE
Set-D365WorkstationMode -Enabled $true
 
This will enable the Workstation mode.
 
You will have to restart the powershell session when you switch around.
 
.NOTES
 
You will have to run the Initialize-D365Config cmdlet first, before this will be capable of working.
 
#>

function Set-D365WorkstationMode {
    [CmdletBinding()]
    param (
        [Parameter(Mandatory = $true)]
        [bool] $Enabled
    )

    if ((Get-PSFConfig -FullName "d365fo.tools*").Count -eq 0) {
        Write-PSFMessage -Level Host -Message "Unable to locate the <c='em'>configuration objects</c> on the machine. Please make sure that you ran <c='em'>Initialize-D365Config</c> first."
        Stop-PSFFunction -Message "Stopping because unable to locate configuration objects."
        return
    }
    else {
        Set-PSFConfig -FullName "d365fo.tools.workstation.mode" -Value $Enabled
        Get-PSFConfig -FullName "d365fo.tools.workstation.mode" | Register-PSFConfig

        Write-PSFMessage -Level Host -Message "Please <c='em'>restart</c> the powershell session / console. This change affects core functionality that <c='em'>requires</c> the module to be <c='em'>reloaded</c>."
    }
}