Command/Environment/OpenConfigFolder.ps1


# param
# (
# [bool]$Blocking = $true
# )

Import-Module CmxModule -Force -DisableNameChecking
# SetWindowTitle $MyInvocation.MyCommand.Name

Write-Output "This script opens the CMX configuration folder. This folder contains the config.json file."
Write-Output ""

$dataPath = CmxGetDataPath
Invoke-Item $dataPath

# Write-Output ""

# if($Blocking)
# {
# Read-Host "Press key to exit"
# }