How to install Windows PowerShell Web Access (PSWA)



Windows PowerShell Web Access is a new feature in Windows Server 2012. It acts as a gateway, and from there you can run Windows PowerShell commands on any machines in your environment. The webpage is entirely Javascript-based, so you can access the console on almost any device with a web browser. You can install and configure PSWA for testing purposes in three easy steps:

Install-WindowsFeature -Name WindowsPowerShellWebAccess –Verbose

Install-PswaWebApplication -UseTestCertificateAdd-PswaAuthorizationRule -UserName * -ComputerName * -ConfigurationName *

# open the Windows PowerShell Web Access

start-Process https:/dc.contoso.com/pswa

Credit : http://powershellmagazine.com

Comments