#author("2021-12-03T04:25:03+00:00","default:admin","admin") #author("2021-12-03T04:26:49+00:00","default:admin","admin") -[[PowerShellスクリプトの実行結果をログ出力する方法3選:http://trend-desk.com/archives/1814]] -[[【PowerShell】スクリプトの実行結果ログを取得する方法:https://qiita.com/satton6987/items/e22b4d21aab850902cff]] -[[[PowerShell] ログ出力専用クラスを利用し、ログ出力を容易にする:https://feeld-uni.com/entry/2020/04/16/082237]] -[[Windows PowerShellでコンソールログ出力:https://qiita.com/rjegg/items/3f10228c780769dd553c]] *基本 [#c4d05b17] -Add-Content 使用 Add-Content -Path "出力先のパス" -Value "出力したい内容" -Out-File 使用 "出力したい内容" | Out-File "出力先のパス" -Encoding default -Append *NLog [#a5b2df91] -[[PowerShellとNLog:https://84zume.wordpress.com/2013/12/16/powershell_and_nlog/]] -[[Logging with NLog in PowerShell:https://thomasswilliams.github.io/2016/04/29/nlog-in-powershell.html]] -[[PowerShell Logging-Interface with NLOG:https://gallery.technet.microsoft.com/scriptcenter/PowerShell-Logging-0c8f1c50]] **NLog.dllの入手 [#x723114c] -[[NLogのサイト:https://www.nuget.org/packages/NLog]] より package(*.nupkg) をダウンロード -*.nupkg は zipファイルと同じなので、拡張子をzipに変更して解凍 -解凍したフォルダ内の lib/net45 にある NLog.dll を使用 *独自 [#z542e770] -[[PowerShell スクリプトのLoggingいろいろ:https://www.miraclejob.com/recommend/detail?cd=21]]