Ok gang,
I have a CSV of Device Names in Azure AD, I want to get a list of DeviceID or ObjectId for each of the names on the list.
I have tried the following
#
$CHGList = Import-Csv -path C:\Users\username\desktop\CHGList.csv
get-msoldevice -name $CHGList | Select-Object ObjectID | Export-CSV -Path "C:\Users\username\desktop\AzureDeviceID.csv"
#
I have tried piping over results and running it that way
I have tried changing the Custom Object to a String
I have tried
#
$CHGList = Import-Csv -path C:\Users\username\desktop\CHGList.csv
$Modification = $null
$Modification = $CHGList -join ","
get-msoldevice -name $Modification | Select-Object ObjectID | Export-CSV -Path "C:\Users\username\desktop\AzureDeviceID.csv"
#
I've looked at trying to loop through the CSV file and it's making no sense.
Can I get some help?
Thanks all for your time.