Hi,
Move the line
$Tag = $VM | Get-TagAssignment
below the line
$VM = $_
The variable $VM doesn't exist until the line $VM = $_
Then replace
$Report.Tag = $_.Tag
By
$Report.Tag = $Tag.tag
Hi,
Move the line
$Tag = $VM | Get-TagAssignment
below the line
$VM = $_
The variable $VM doesn't exist until the line $VM = $_
Then replace
$Report.Tag = $_.Tag
By
$Report.Tag = $Tag.tag