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
{{ message }}
This repository was archived by the owner on Sep 11, 2024. It is now read-only.
There is a bug that $record is reset after each property collection cycle. Fixed by modifying file "Plugins\Groups.ps1" and moving "$record = @{}" to the right location. Following code has to be changed:
---cut----------------
foreach ($result in $Results){
foreach ($Property in $GroupProperties){ $record = @{}
if($Property -eq "groupType"){
---cut----------------
to following code:
---cut----------------
foreach ($result in $Results){ $record = @{}
foreach ($Property in $GroupProperties){
if($Property -eq "groupType"){
---cut----------------
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When running the tool and exporting to excel I am only seeing a single column (in this case, "whenChanged") I have tried the following:
Not sure what the culprit could be here, thoughts?
The text was updated successfully, but these errors were encountered: