I have a simple command to create a CSV file in powershell. Is there a way to log this information separate from the file? I will be needing to manipulate the CSV file, so I don't want to rely on it being my only way of logging the data.
|
|
|
You can also export the output of commands by using the example: You can write all of the Adobe services and their information to a file with this code:
if you wanted to append to that with Windows services:
so if you wanted to export your CSV to a file you can easily do so by adding a
and if you ever needed to append more logs you can simply do so by using the
if you use |
|||
|
|
|
If you need a log for people who are in charge of the production you can add your own application log using dedicated Cmdlets. A the moment I create and use one PowerShell log for all my scripts to publish details of the execution (information) and errors (in coordination with good exception handling) for people who are in charge of the production. You can dedicate a log for one script (as it exists a log for DNS etc.) Here is an example :
|
|||
|
|