Output log File
I am running scripts to collect bitlocker information. Is there a way to combine the output logs for each individual machine to one file.
0
Important Notice: On February 29th, this community was put into read-only mode. All existing posts will remain but customers are unable to add new posts or comment on existing. Please feel to join our Community Discord for any questions and discussions.
I am running scripts to collect bitlocker information. Is there a way to combine the output logs for each individual machine to one file.
Comments
You could do this via powershell inside a step for each deployment. There is not a method to do it at the deployment level inside of PDQ Deploy.
What kind of stuff are you looking to log?
You could create a hash table of information that you care about on each client, and then pipe that to Out-File -Path \\fileserver\share\logfile -Append -Force
Hi Stephen:
Certain Applications such as Skype during the install process have certain steps that create an output.log file. I was trying to figure out how to consolidate the results of those steps into one main file. I will look into the powershell option to direct it to one file.