Windows 7 PowerShell modules
PowerShell in the RC tidies up the display of the available modules and adds another module to the list of default modules.
PS> Get-Module -ListAvailable
ModuleType Name ExportedCommands
---------- ---- ----------------
Manifest AppLocker {}
Manifest BitsTransfer {}
Manifest PSDiagnostics {}
Manifest TroubleshootingPack {}
The last three I’ve blogged about already. The first one is new. It brings five cmdlets
PS> Import-Module applocker
PS> Get-Command -Module applocker
CommandType Name
----------- ----
Cmdlet Get-AppLockerFileInformation
Cmdlet Get-AppLockerPolicy
Cmdlet New-AppLockerPolicy
Cmdlet Set-AppLockerPolicy
Cmdlet Test-AppLockerPolicy
AppLocker restricts the software users can run – software restriction policies that we can control by PowerShell
Read the complete post at http://richardsiddaway.spaces.live.com/Blog/cns!43CFA46A74CF3E96!2268.entry