You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Background: Working on a fork to implement run as NETWORK SERVICE and I was getting Test-TargetResource invalidly returning false. Traced it to this issue among others.
The bug is caused by the following line in Get-TargetResource: IdleWaitTimeout = ConvertTo-TimeSpanStringFromScheduledTaskString -TimeSpan $settings.IdleSettings.IdleWaitTimeout
The problem is IdleSettings object does not have a IdleWaitTimeout property, but it does have a WaitTimeout property.
I have implemented a fix in my fork, creating this issue to reference in CHANGELOG.md
The text was updated successfully, but these errors were encountered:
Background: Working on a fork to implement run as NETWORK SERVICE and I was getting Test-TargetResource invalidly returning false. Traced it to this issue among others.
The bug is caused by the following line in Get-TargetResource:
IdleWaitTimeout = ConvertTo-TimeSpanStringFromScheduledTaskString -TimeSpan $settings.IdleSettings.IdleWaitTimeout
The problem is IdleSettings object does not have a IdleWaitTimeout property, but it does have a WaitTimeout property.
I have implemented a fix in my fork, creating this issue to reference in CHANGELOG.md
The text was updated successfully, but these errors were encountered: