Where is Powershell NetSecurity module?

powershell

Solution

The are new modules in powershell 3.0 that are only included as part of the roles/features that ship with Windows Server 2012, and in some cases they are also available on Windows 8. Unfortunately, they cannot be installed on previous versions of Windows, and `NetSecurity` is one of this module

Problem

I can't seem to find the `NetSecurity` module on my system. I am using an `Amazon Windows 2008 Server R2 SP1` instance. `Get-Module -ListAvailable` on my environment returns this: ``` ActiveDirectory (I installed this) ADRMS AppLocker BestPractices BitsTransfer CimCmdlets ISE Microsoft.PowerShell.Diagnostics/Host/Management/Security/Utility Microsoft.WSMan.Management PSDiagnostics PSScheduledJob PSWorkflow PSworkflowUtility ServerManaer TroubleshootingPack ``` I have tried to install `WMF 3.0`, but it was reported to be already installed.

Original source