quick note for powercli scripts:
if you want to append to a csv between scripts or commands, upgrade to powershell 3
then use this:
export-csv NAMEOFFILE.csv -append -force -notypeinformation
notypeinformation suppresses the info at the beginning that a command mind push out that is irrelevant to the data that is required.
if you want to append to a csv between scripts or commands, upgrade to powershell 3
then use this:
export-csv NAMEOFFILE.csv -append -force -notypeinformation
notypeinformation suppresses the info at the beginning that a command mind push out that is irrelevant to the data that is required.