After setting up a copy of the Inventory > Actions > Deploy Using PS/DSC (Standard Server) action I can't figure out how to use a global configuration variable in the argument list.
The global variables I would like to use:
(from Administration > Settings > Configuration Variables)
The argument list where I would like to use them:
(from Inventory > Actions > Deploy Using PS/DSC (Standard Server))
Within my PowerShell Script I can reference these variables by using the "$" in front of the variable name, but this doesn't work in "Action" argument lists.
Example Usage from a PowerShell Script
[System.IO.Path]::Combine($ServerName,$ApplicationPathRoot,$ComponentName)
Unknowns
Is using a configuration variable even possible within the Action arguments?