From be3240317ec5d96bbc7442bf4a3de723ce9500a8 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Sun, 12 Oct 2025 13:46:16 -0400 Subject: [PATCH] Update README with PowerShell module installation Added installation instructions for AsBuiltReport.Core module. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6b74745..d0c5516 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,9 @@ Local user privileges are required to run this report. ### PowerShell ```powershell +# Install AsBuiltReport.Core 1.5.0-RC1 +Install-Module AsBuiltReport.Core -Repository PSGallery -AllowPrerelease + # Install install-module AsBuiltReport.System.Resources -Force @@ -212,4 +215,4 @@ PS C:\> New-AsBuiltReport -Report System.Resources -Target localhost -Username ' # Generate a System Resources As Built Report for 'localhost'. Export report to HTML & DOCX formats. Use default report style. Save reports to 'C:\Users\Jon\Documents' and set the report language to Spanish. PS C:\> New-AsBuiltReport -Report System.Resources -Target localhost -Username 'User' -Password 'P@ssw0rd' -Format Html,Word -OutputFolderPath 'C:\Users\Jon\Documents' -ReportLanguage es-ES -``` \ No newline at end of file +```