PowerShell 技能连载 - 自动生成文档和报告(第 2 部分)
Iain Brighton 创建了一个名为 “PScribo” 的免费的 PowerShell 模块,可以快速地创建文本、HTML 或 Word 格式的文档和报告。
要使用这个模块,只需要运行这条命令:
1 | Install-Module -Name PScribo -Scope CurrentUser -Force |
今天,我们将生成一个包含动态表格内容的文档:
1 | # https://github.com/iainbrighton/PScribo |
当您运行这段代码时,它生成三个名为 ServiceReport.docx/html/txt 的文件。如您所见,该报告包含表格形式的服务列表。
PowerShell 技能连载 - 自动生成文档和报告(第 2 部分)
http://blog.vichamp.com/2018/07/13/automatic-document-report-generation-part-2/