From a955e5ee41881946bb976194ad991d821b8b90ba Mon Sep 17 00:00:00 2001 From: simeononsecurity <4913771+simeononsecurity@users.noreply.github.com> Date: Wed, 13 Jan 2021 20:17:52 +0000 Subject: [PATCH] Update windows10.ps1 --- windows10.ps1 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/windows10.ps1 b/windows10.ps1 index a4fd7ca..83b8489 100644 --- a/windows10.ps1 +++ b/windows10.ps1 @@ -24,6 +24,17 @@ Start-Job -Name "Installing Optional Windows Features" -ScriptBlock { Enable-WindowsOptionalFeature -Online -FeatureName "NFS-Administration" -All -NoRestart Enable-WindowsOptionalFeature -Online -FeatureName "ServicesForNFS-ClientOnly" -All -NoRestart Enable-WindowsOptionalFeature -Online -FeatureName "SimpleTCP" -All -NoRestart + + #https://www.powershellgallery.com/packages/Carbon/2.9.4 + Install-Module -Name Carbon + #https://www.powershellgallery.com/packages/SpeculationControl/1.0.14 + Install-Module -Name SpeculationControl -Force + #https://www.powershellgallery.com/packages/PoshInternals/1.0.34 + Install-Module -Name PoshInternals -Force -AllowClobber + #https://www.powershellgallery.com/packages/PSWindowsUpdate/2.2.0.2 + Install-Module -Name PSWindowsUpdate -Force + #https://www.powershellgallery.com/packages/xCertificate/3.2.0.0 + Install-Module -Name xCertificate -Force }