Forum Discussion
JFM_12
Feb 20, 2025Iron Contributor
CQ - Powershell for Output
Hi I have a Powershell that outputs the data. The output of "DistributionLists" is on screen correct. If exported on the File it is "System.Guid[]" How can the "System.Guid[]" be translated in a ...
- Feb 28, 2025
If it work it would be good if you click on 'accept as response'
Luis-Ramos
Feb 20, 2025Brass Contributor
have you tried to use the toString Method ?
$DistributionLists | ForEach-Object { $_.ToString() }