I'm attaching my object exported to xml




________________________________
From: [email protected] [[email protected]] on behalf 
of Kelley, Matthew [[email protected]]
Sent: Friday, October 30, 2015 2:27 PM
To: [email protected]
Cc: Catlett, Christopher
Subject: RE: [powershell] help with hash tables.

Maybe something like this?

foreach ($item in $apvgroups.GetEnumerator()){$output += "$($item.Name), 
$(foreach($i in $item.value){$i + ','})"}

out-file -FilePath c:\windows\temp\output.csv -InputObject $output -Append


From: [email protected] [mailto:[email protected]] On 
Behalf Of [email protected]
Sent: Friday, October 30, 2015 2:08 PM
To: [email protected]
Subject: RE: [powershell] help with hash tables.


Now, how can I export this as a csv?



I'm getting the below results:


"value","name"
"FA-EQIS APV Sewer","System.Object[]"
"FA-APV - Personnel Database",
"AA-APV manifest.apvcentral.com","System.Object[]"
"AA-APV Database - Mileage Summary","NICOLE_C"
"FA-EQIS APV Linden Operations","System.Object[]"
"FA-EQIS APV Northern PA Operations","System.Object[]"
"FA-EQIS APV Brooklyn Operations","System.Object[]"
"AA-APV Database - Roll Off Boxes","ROBERT_M"
"AA-APV payroll.apvcentral.com","System.Object[]"
"SMSG-APVPARTS",
"AA-APV Database - Meters","System.Object[]"
"FA-APV Data Copy (8_25_2015)","System.Object[]"
"FA-EQIS APV Billing","NATASHAC"



Works great if there is only one user, but not if multiple users are in the 
group. How do I get it to expand the system object?

________________________________
From: Catlett, Christopher
Sent: Friday, October 30, 2015 1:38 PM
To: [email protected]<mailto:[email protected]>
Subject: RE: [powershell] help with hash tables.

$apvgroups.add($group,$groupinfo.SamAccountName)



worked.

________________________________
From: [email protected]<mailto:[email protected]> 
[[email protected]] on behalf of Emin [[email protected]]
Sent: Friday, October 30, 2015 1:20 PM
To: [email protected]<mailto:[email protected]>
Subject: Re: [powershell] help with hash tables.
hi,

What about inverting select and where and using expand

$groupinfo
= Get-ADGroupMember -Identity $group | Where-Object {($_.samaccountname -notin 
$users) -and ($_.samaccountname -notin $excludeusers)} | select -expand 
samaccountname

On Fri, Oct 30, 2015 at 5:40 PM, 
<[email protected]<mailto:[email protected]>> 
wrote:

$apvgroups = $null

$apvgroups = @{}

foreach
($group in $groups)

{

$groupinfo
= Get-ADGroupMember -Identity $group | select samaccountname | Where-Object 
{($_.samaccountname -notin $users) -and ($_.samaccountname -notin 
$excludeusers)}

$apvgroups
.add($group,$groupinfo)

}



Here is the output i'm getting:



PS C:\Windows\system32> $apvgroups

Name Value

---- -----

FA-EQIS APV Sewer {@{samaccountname=ED_TH}, @{samaccountname=BILL_J}, 
@{samaccountname=SCOTT_SY}, @{samaccountname=DAN_CO}}

FA-APV - Personnel Database

AA-APV manifest.apvcentral.com<http://manifest.apvcentral.com> 
{@{samaccountname=NICOLE_C}, @{samaccountname=SCOTTMCK}, 
@{samaccountname=JAMES_ME}, @{samaccountname=IRIS_D}}

AA-APV Database - Mileage S... @{samaccountname=NICOLE_C}

FA-EQIS APV Linden Operations {@{samaccountname=DAN_CO}, 
@{samaccountname=BRYANNAG}, @{samaccountname=MARY_KU}}

FA-EQIS APV Northern PA Ope... {@{samaccountname=MARC_F}, 
@{samaccountname=SCOTTMCK}, @{samaccountname=DAN_CO}, 
@{samaccountname=JAMES_L}...}

FA-EQIS APV Brooklyn Operat... {@{samaccountname=BISI_A}, 
@{samaccountname=KRIS_B}, @{samaccountname=NICOLE_C}, 
@{samaccountname=SHAWN_H}...}



I just want the samaccountname values inserted into the hashtable.

================================================
Did you know you can also post and find answers on PowerShell in the forums?
http://www.myitforum.com/forums/default.asp?catApp=1


================================================
Did you know you can also post and find answers on PowerShell in the forums?
http://www.myitforum.com/forums/default.asp?catApp=1

================================================
Did you know you can also post and find answers on PowerShell in the forums?
http://www.myitforum.com/forums/default.asp?catApp=1

**********************************************************
Electronic Mail is not secure, may not be read every day, and should not be 
used for urgent or sensitive issues

================================================
Did you know you can also post and find answers on PowerShell in the forums?
http://www.myitforum.com/forums/default.asp?catApp=1


================================================
Did you know you can also post and find answers on PowerShell in the forums?
http://www.myitforum.com/forums/default.asp?catApp=1
ÿþ<Objs Version="1.1.0.1" xmlns="http://schemas.microsoft.com/powershell/2004/04">

  <Obj RefId="0">

    <TN RefId="0">

      <T>System.Collections.Hashtable</T>

      <T>System.Object</T>

    </TN>

    <DCT>

      <En>

        <S N="Key">FA-EQIS APV Sewer</S>

        <Obj N="Value" RefId="1">

          <TN RefId="1">

            <T>System.Object[]</T>

            <T>System.Array</T>

            <T>System.Object</T>

          </TN>

          <LST>

            <S>ED_TH</S>

            <S>BILL_J</S>

            <S>SCOTT_SY</S>

            <S>DAN_CO</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-APV - Personnel Database</S>

        <S N="Value">No Users</S>

      </En>

      <En>

        <S N="Key">AA-APV manifest.apvcentral.com</S>

        <Obj N="Value" RefId="2">

          <TNRef RefId="1" />

          <LST>

            <S>NICOLE_C</S>

            <S>SCOTTMCK</S>

            <S>JAMES_ME</S>

            <S>IRIS_D</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - Mileage Summary</S>

        <S N="Value">NICOLE_C</S>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Linden Operations</S>

        <Obj N="Value" RefId="3">

          <TNRef RefId="1" />

          <LST>

            <S>DAN_CO</S>

            <S>BRYANNAG</S>

            <S>MARY_KU</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Northern PA Operations</S>

        <Obj N="Value" RefId="4">

          <TNRef RefId="1" />

          <LST>

            <S>MARC_F</S>

            <S>SCOTTMCK</S>

            <S>DAN_CO</S>

            <S>JAMES_L</S>

            <S>IRIS_D</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Brooklyn Operations</S>

        <Obj N="Value" RefId="5">

          <TNRef RefId="1" />

          <LST>

            <S>BISI_A</S>

            <S>KRIS_B</S>

            <S>NICOLE_C</S>

            <S>SHAWN_H</S>

            <S>DAN_CO</S>

            <S>ERNESTOP</S>

            <S>ABRAHIMR</S>

            <S>NYDISPAT</S>

            <S>WILLIAMR</S>

            <S>Svc_APV_Scans</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - Roll Off Boxes</S>

        <S N="Value">ROBERT_M</S>

      </En>

      <En>

        <S N="Key">AA-APV payroll.apvcentral.com</S>

        <Obj N="Value" RefId="6">

          <TNRef RefId="1" />

          <LST>

            <S>DAN_GO</S>

            <S>GREG_R</S>

            <S>TOU_x005F_X</S>

            <S>MICHELLM</S>

            <S>JOSH_P</S>

            <S>ARMAND_M</S>

            <S>BARBARAC</S>

            <S>DAN_CO</S>

            <S>MICHELTE</S>

            <S>LYNDA_P</S>

            <S>JILLIANF</S>

            <S>DOUG_K</S>

            <S>TAYLOR_E</S>

            <S>PETE_O</S>

            <S>JOHN_KA</S>

            <S>MARY_KU</S>

            <S>MAUREEN</S>

            <S>ANGELA_F</S>

            <S>ROBERT_M</S>

            <S>DAVE_H</S>

            <S>ASHLEY_R</S>

            <S>JOHNB</S>

            <S>IRIS_D</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">SMSG-APVPARTS</S>

        <S N="Value">No Users</S>

      </En>

      <En>

        <S N="Key">AA-APV Database - Meters</S>

        <Obj N="Value" RefId="7">

          <TNRef RefId="1" />

          <LST>

            <S>JASEN_C</S>

            <S>KEVIN_R</S>

            <S>BRANDONL</S>

            <S>KAITLYNB</S>

            <S>NICK_K</S>

            <S>JOHN_LEN</S>

            <S>MARC_F</S>

            <S>NICOLE_C</S>

            <S>WILLIAMP</S>

            <S>JAMES_L</S>

            <S>LINARD_M</S>

            <S>GREG_RO</S>

            <S>ASHLEY_R</S>

            <S>GIL_K</S>

            <S>IRIS_D</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-APV Data Copy (8_25_2015)</S>

        <Obj N="Value" RefId="8">

          <TNRef RefId="1" />

          <LST>

            <S>LORRAINE</S>

            <S>DAVE_CR</S>

            <S>MATT_DA</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Billing</S>

        <S N="Value">NATASHAC</S>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Aston Users</S>

        <S N="Value">No Users</S>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Central Management</S>

        <Obj N="Value" RefId="9">

          <TNRef RefId="1" />

          <LST>

            <S>LARRY_R</S>

            <S>JOHN_LEN</S>

            <S>MARC_F</S>

            <S>SCOTTMCK</S>

            <S>DAN_CO</S>

            <S>NINA_K</S>

            <S>BOB_CY</S>

            <S>LINARD_M</S>

            <S>MICHELEG</S>

            <S>ANGELA_F</S>

            <S>ROBERT_M</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-APV Integration</S>

        <Obj N="Value" RefId="10">

          <TNRef RefId="1" />

          <LST>

            <S>LORRAINE</S>

            <S>DAVID_D</S>

            <S>KELLI_L</S>

            <S>DAVE_L</S>

            <S>APRIL_E</S>

            <S>RYAN_R</S>

            <S>SUE_B</S>

            <S>BRIAN_E</S>

            <S>KIRK_K</S>

            <S>BRENDA_P</S>

            <S>PATRICK</S>

            <S>KEN_W</S>

            <S>SCOTT_M</S>

            <S>BRYAN_S</S>

            <S>CYNDI_R</S>

            <S>DEBBIE_O</S>

            <S>TOM_MC</S>

            <S>AMANDA_M</S>

            <S>PAULA_H</S>

            <S>JASON_F</S>

            <S>MARIO_R</S>

            <S>DAVE_A</S>

            <S>DAWN_S</S>

            <S>DAVE_CR</S>

            <S>ED_TH</S>

            <S>DAN_CO</S>

            <S>DIANE_H</S>

            <S>MONICA_G</S>

            <S>JEFF_F</S>

            <S>GUY_G</S>

            <S>GINGER_E</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - Permits</S>

        <Obj N="Value" RefId="11">

          <TNRef RefId="1" />

          <LST>

            <S>JONATHAN</S>

            <S>BRIAN_K</S>

            <S>GLORIA_T</S>

            <S>JOSH_P</S>

            <S>MARTY_C</S>

            <S>KAITLYNB</S>

            <S>BARBARAC</S>

            <S>MARC_F</S>

            <S>NICOLE_C</S>

            <S>SCOTTMCK</S>

            <S>WILLIAMP</S>

            <S>DAN_CO</S>

            <S>JAMES_L</S>

            <S>BOB_CY</S>

            <S>DOUG_K</S>

            <S>GREG_RO</S>

            <S>JAMES_ME</S>

            <S>ROBERT_M</S>

            <S>DAVE_H</S>

            <S>ASHLEY_R</S>

            <S>IRIS_D</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Accounting</S>

        <Obj N="Value" RefId="12">

          <TNRef RefId="1" />

          <LST>

            <S>RYAN_R</S>

            <S>DAN_CO</S>

            <S>PETE_O</S>

            <S>JOHNB</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - Personnel</S>

        <Obj N="Value" RefId="13">

          <TNRef RefId="1" />

          <LST>

            <S>JASEN_C</S>

            <S>KEVIN_R</S>

            <S>BRANDONL</S>

            <S>KAITLYNB</S>

            <S>NICK_K</S>

            <S>BARBARAC</S>

            <S>JOHN_LEN</S>

            <S>NICOLE_C</S>

            <S>LINARD_M</S>

            <S>GREG_RO</S>

            <S>JAMES_ME</S>

            <S>ASHLEY_R</S>

            <S>GIL_K</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Compliance Databases</S>

        <Obj N="Value" RefId="14">

          <TNRef RefId="1" />

          <LST>

            <S>AA-APV Database - Personnel</S>

            <S>AA-APV Database - Permits</S>

            <S>AA-APV Database - Meters</S>

            <S>AA-APV Database - Daily Mileage</S>

            <S>AA-APV Database - Mileage Summary</S>

            <S>AA-APV Database - Transportation</S>

            <S>AA-APV Database - Roll Off Boxes</S>

            <S>AA-APV Database - Right To Know</S>

            <S>AA-APV Database - MA EMORS</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Rahway Operations</S>

        <Obj N="Value" RefId="15">

          <TNRef RefId="1" />

          <LST>

            <S>ED_TH</S>

            <S>ARMAND_M</S>

            <S>GUS_V</S>

            <S>JOHN_FL</S>

            <S>NICOLE_C</S>

            <S>DAN_CO</S>

            <S>MAUREEN</S>

            <S>ROBERT_M</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - MA EMORS</S>

        <S N="Value">NICOLE_C</S>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Marketing</S>

        <Obj N="Value" RefId="16">

          <TNRef RefId="1" />

          <LST>

            <S>NICOLE_C</S>

            <S>DAN_CO</S>

            <S>NINA_K</S>

            <S>MICHELEG</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Health and Safety</S>

        <Obj N="Value" RefId="17">

          <TNRef RefId="1" />

          <LST>

            <S>KEVIN_R</S>

            <S>BRANDONL</S>

            <S>KAITLYNB</S>

            <S>NICK_K</S>

            <S>JOHN_LEN</S>

            <S>NICOLE_C</S>

            <S>DAN_CO</S>

            <S>LINARD_M</S>

            <S>GREG_RO</S>

            <S>ASHLEY_R</S>

            <S>GIL_K</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Central RO</S>

        <Obj N="Value" RefId="18">

          <TNRef RefId="1" />

          <LST>

            <S>KELLI_L</S>

            <S>TOM_W</S>

            <S>CAMERON</S>

            <S>AL_G</S>

            <S>CYNDI_R</S>

            <S>DAN_GO</S>

            <S>GREG_R</S>

            <S>MELANIE</S>

            <S>VAUGHN_S</S>

            <S>ASHLEY_W</S>

            <S>JEFF_C</S>

            <S>REBECCAC</S>

            <S>JACK_D</S>

            <S>GERALD_N</S>

            <S>JOSH_P</S>

            <S>KEVIN_R</S>

            <S>LARRY_R</S>

            <S>SCOTT_WI</S>

            <S>GREG_T</S>

            <S>LORI_F</S>

            <S>GARY_WO</S>

            <S>JON_F</S>

            <S>MIKE_RO</S>

            <S>BRANDONL</S>

            <S>TERANCED</S>

            <S>MARTY_C</S>

            <S>GREG_V</S>

            <S>KAITLYNB</S>

            <S>NICK_K</S>

            <S>ED_TH</S>

            <S>ARMAND_M</S>

            <S>BARBARAC</S>

            <S>BILL_J</S>

            <S>BISI_A</S>

            <S>JOHN_LEN</S>

            <S>KRIS_B</S>

            <S>MARC_F</S>

            <S>NICOLE_C</S>

            <S>ROSE_T</S>

            <S>SCOTTMCK</S>

            <S>SHAWN_H</S>

            <S>WILLIAMP</S>

            <S>DAN_CO</S>

            <S>ROBERTYO</S>

            <S>NINA_K</S>

            <S>ERNESTOP</S>

            <S>JAMES_L</S>

            <S>NATASHAC</S>

            <S>MIKE_WA</S>

            <S>BOB_CY</S>

            <S>JASON_HA</S>

            <S>JAIME_C</S>

            <S>KEVIN_RI</S>

            <S>LYNDA_P</S>

            <S>DAN_E</S>

            <S>DOUG_K</S>

            <S>LUCIE_J</S>

            <S>TAYLOR_E</S>

            <S>PETE_O</S>

            <S>ABRAHIMR</S>

            <S>HEATH_R</S>

            <S>LINARD_M</S>

            <S>NYDISPAT</S>

            <S>BRYANNAG</S>

            <S>JOHN_KA</S>

            <S>MARY_KU</S>

            <S>TEDDY_H</S>

            <S>AUDALE_H</S>

            <S>GREG_RO</S>

            <S>JAMES_ME</S>

            <S>MAUREEN</S>

            <S>DAVE_J</S>

            <S>ANGELA_F</S>

            <S>ROBERT_M</S>

            <S>WILLIAMR</S>

            <S>DAVE_H</S>

            <S>SHONDA</S>

            <S>ASHLEY_R</S>

            <S>JOHNB</S>

            <S>GIL_K</S>

            <S>IRIS_D</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Transportation</S>

        <Obj N="Value" RefId="19">

          <TNRef RefId="1" />

          <LST>

            <S>NICOLE_C</S>

            <S>JAMES_ME</S>

            <S>ROBERT_M</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Maintenance</S>

        <Obj N="Value" RefId="20">

          <TNRef RefId="1" />

          <LST>

            <S>MARTY_C</S>

            <S>NICOLE_C</S>

            <S>DAN_CO</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQMS Owners Manual - EQ Industrial Services (APV)</S>

        <Obj N="Value" RefId="21">

          <TNRef RefId="1" />

          <LST>

            <S>KAITLYNB</S>

            <S>GREG_RO</S>

            <S>ASHLEY_R</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Project Axel</S>

        <Obj N="Value" RefId="22">

          <TNRef RefId="1" />

          <LST>

            <S>RYAN_R</S>

            <S>BOB_CY</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV New England Operations</S>

        <S N="Value">DAN_CO</S>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Health and Safety Management</S>

        <Obj N="Value" RefId="23">

          <TNRef RefId="1" />

          <LST>

            <S>NICOLE_C</S>

            <S>DAN_CO</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Payroll</S>

        <Obj N="Value" RefId="24">

          <TNRef RefId="1" />

          <LST>

            <S>DAN_CO</S>

            <S>JOHN_KA</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Compliance</S>

        <Obj N="Value" RefId="25">

          <TNRef RefId="1" />

          <LST>

            <S>BARBARAC</S>

            <S>NICOLE_C</S>

            <S>JAMES_ME</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - Right To Know</S>

        <S N="Value">NICOLE_C</S>

      </En>

      <En>

        <S N="Key">AA-Desktop - APV_</S>

        <Obj N="Value" RefId="26">

          <TNRef RefId="1" />

          <LST>

            <S>JASEN_C</S>

            <S>KEVIN_R</S>

            <S>BRANDONL</S>

            <S>KAITLYNB</S>

            <S>NICK_K</S>

            <S>BARBARAC</S>

            <S>JOHN_LEN</S>

            <S>MARC_F</S>

            <S>NICOLE_C</S>

            <S>SCOTTMCK</S>

            <S>WILLIAMP</S>

            <S>DAN_CO</S>

            <S>JAMES_L</S>

            <S>MARTY_MC</S>

            <S>LINARD_M</S>

            <S>GREG_RO</S>

            <S>JAMES_ME</S>

            <S>ROBERT_M</S>

            <S>ASHLEY_R</S>

            <S>GIL_K</S>

            <S>IRIS_D</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Hydroexcavation</S>

        <S N="Value">DAN_CO</S>

      </En>

      <En>

        <S N="Key">FA-APV - Rahway Accounting</S>

        <S N="Value">No Users</S>

      </En>

      <En>

        <S N="Key">SMSG-APVSEWERWETOUT</S>

        <S N="Value">BILL_J</S>

      </En>

      <En>

        <S N="Key">AA-Desktop - APV</S>

        <Obj N="Value" RefId="27">

          <TNRef RefId="1" />

          <LST>

            <S>REBECCAC</S>

            <S>ED_TH</S>

            <S>ARMAND_M</S>

            <S>ROSE_T</S>

            <S>NATASHAC</S>

            <S>LYNDA_P</S>

            <S>LUCIE_J</S>

            <S>PETE_O</S>

            <S>JOHN_KA</S>

            <S>MARY_KU</S>

            <S>TEDDY_H</S>

            <S>MAUREEN</S>

            <S>SHONDA</S>

            <S>JOHNB</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Aston Operations</S>

        <Obj N="Value" RefId="28">

          <TNRef RefId="1" />

          <LST>

            <S>BARBARAC</S>

            <S>JOHN_LEN</S>

            <S>WILLIAMP</S>

            <S>DAN_CO</S>

            <S>ROBERTYO</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - Transportation</S>

        <S N="Value">ROBERT_M</S>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Central</S>

        <Obj N="Value" RefId="29">

          <TNRef RefId="1" />

          <LST>

            <S>NICOLE_C</S>

            <S>MICHELEG</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-Timberline</S>

        <Obj N="Value" RefId="30">

          <TNRef RefId="1" />

          <LST>

            <S>ANDREA_M</S>

            <S>RYAN_R</S>

            <S>DEBBIE_O</S>

            <S>JAMIE_B</S>

            <S>JASON_B</S>

            <S>REBECCAC</S>

            <S>ED_TH</S>

            <S>ARMAND_M</S>

            <S>BARBARAC</S>

            <S>ROSE_T</S>

            <S>DAN_CO</S>

            <S>NATASHAC</S>

            <S>JENN_K</S>

            <S>LYNDA_P</S>

            <S>LUCIE_J</S>

            <S>PETE_O</S>

            <S>JOHN_KA</S>

            <S>MARY_KU</S>

            <S>TEDDY_H</S>

            <S>MAUREEN</S>

            <S>SHONDA</S>

            <S>JOHNB</S>

            <S>IRIS_D</S>

            <S>MATHEW_Z</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-TEST APV payroll.apvcentral.com</S>

        <S N="Value">ED_TH</S>

      </En>

      <En>

        <S N="Key">AA-XA45 Desktop (APV Users)</S>

        <Obj N="Value" RefId="31">

          <TNRef RefId="1" />

          <LST>

            <S>ARMAND_M</S>

            <S>BILL_J</S>

            <S>GUS_V</S>

            <S>JIM_MUL</S>

            <S>JOHN_LEN</S>

            <S>KRIS_B</S>

            <S>LAUREN_F</S>

            <S>MARC_F</S>

            <S>WILLIAMP</S>

            <S>ROBERTYO</S>

            <S>ERNESTOP</S>

            <S>CINDY_F</S>

            <S>LINARD_M</S>

            <S>MARY_KU</S>

            <S>JAMES_ME</S>

            <S>ROBERT_M</S>

            <S>WILLIAMR</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">AA-APV Database - Daily Mileage</S>

        <S N="Value">NICOLE_C</S>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Management</S>

        <Obj N="Value" RefId="32">

          <TNRef RefId="1" />

          <LST>

            <S>DAN_CO</S>

            <S>PETE_O</S>

            <S>MICHELEG</S>

            <S>JOHNB</S>

          </LST>

        </Obj>

      </En>

      <En>

        <S N="Key">FA-EQIS APV Shared Scans</S>

        <Obj N="Value" RefId="33">

          <TNRef RefId="1" />

          <LST>

            <S>ED_TH</S>

            <S>NICOLE_C</S>

            <S>DAN_CO</S>

          </LST>

        </Obj>

      </En>

    </DCT>

  </Obj>

</Objs>

Reply via email to