Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

"All Groups" tab only returns single column #3

Open
Junohea opened this issue Nov 17, 2016 · 1 comment
Open

"All Groups" tab only returns single column #3

Junohea opened this issue Nov 17, 2016 · 1 comment

Comments

@Junohea
Copy link

Junohea commented Nov 17, 2016

When running the tool and exporting to excel I am only seeing a single column (in this case, "whenChanged") I have tried the following:

  • default config setting, as well as
  • defining custom filters

Not sure what the culprit could be here, thoughts?

@nonefaken
Copy link

nonefaken commented May 23, 2017

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 free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants