From cb9326e8b69e3280fc54f46f58e92cacf7617961 Mon Sep 17 00:00:00 2001 From: Przemyslaw Klys Date: Sat, 15 Aug 2020 11:20:18 +0200 Subject: [PATCH] Update README/PSD1 --- GPOZaurr.psd1 | 2 +- README.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/GPOZaurr.psd1 b/GPOZaurr.psd1 index 6b6c314..f227417 100644 --- a/GPOZaurr.psd1 +++ b/GPOZaurr.psd1 @@ -21,7 +21,7 @@ ModuleName = 'PSSharedGoods' Guid = 'ee272aa8-baaa-4edf-9f45-b6d6f7d844fe' }, @{ - ModuleVersion = '0.0.65' + ModuleVersion = '0.0.66' ModuleName = 'ADEssentials' Guid = '9fc9fd61-7f11-4f4b-a527-084086f1905f' }, 'ActiveDirectory', 'GroupPolicy', 'CimCmdlets', 'Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Utility' diff --git a/README.md b/README.md index a6a7334..b6cb8c7 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,16 @@ ## To install +GPOZaurr requires `RSAT` installed to provide results. If you don't have them you can install them as below. Keep in mind it also installs GUI tools so it shouldn't be installed on user workstations. + +```powershell +# Windows 10 Latest +Add-WindowsCapability -Online -Name 'Rsat.ActiveDirectory.DS-LDS.Tools~~~~0.0.1.0' +Add-WindowsCapability -Online -Name 'Rsat.GroupPolicy.Management.Tools~~~~0.0.1.0' +``` + +Finally just install module: + ```powershell Install-Module -Name GPOZaurr -AllowClobber -Force ```