I am having issues pulling the parameters from a job using Get-PSUJob.
The parameters in the JSON is null, as I was testing via API.
I seen some posts similar to what I am trying to do:
Product: PowerShell Universal
Version: 4.1.4
I am having issues pulling the parameters from a job using Get-PSUJob.
The parameters in the JSON is null, as I was testing via API.
I seen some posts similar to what I am trying to do:
Product: PowerShell Universal
Version: 4.1.4
I see the issue with this one and it’s due to the integrated mode. If you were to run these commands outside of the integrated environment, it would include the parameters.
# This should work
Get-PSUJob -Id 123 -ComputerName localhost:5000 -AppToken ""
That said, we can get this fixed for the next 4.1 build.
Thank you Adam!