First thank for those who stop here and try to help !
It's my first time touching powershell.
I search a way to list and export unattached or orphaned resources in Azure (IPs, RGs, Disks ...)
Get-AzDisk | Select-Object -Property Name,AttachedTo,Location | Export-Csv -path C:\Users\David\test.csv ";" -NoTypeInformation
With this I only have Azdisk on a single .csv file but how can I add per example "Get-AzPublicIpAddress" into the same .csv ?