Could you please add parameter fields to the scripts in the DRE product to allow us to set input parameters when running scripts on the end user devices?
These parameters could then be utilized inside the script content to change various actions based on input at runtime."
An example I could give you is say you want to run a simple:
Get-Package -Name "SomeSoftwareName"
Presently if you wanted to re-run that script for another software you would either have to forgo the -Name parameter for the cmdlet or change the Script content of the script added to DRE.
Where as if there was an Input Parameters field that could be utilized where one could set Input Parameters when creating the script which create variables that can be referenced within the script content then you could run the same cmdlet like so:
Get-Package -Name $InputNameParameter
For Powershell scripts (which is all I would really care about) you would ideally utilize the native script param() block for this and then the DRE platform would build input parameters on the Deploy Script action based on the contents of the scripts param() block.