Installing and Configuring PowerShell Web Access on Windows Server 8 Beta Here are the steps for Installing and Configuring PowerShell Web Access for Test Environment on Windows Server 8 Beta # Install PSWA Windows Feature Install-WindowsFeature –Name WindowsPowerShellWebAccess -IncludeManagementTools -Restart # Import PowerShellWebAccess Module Import-Module...
Windows Management Framework 3.0 – Beta I’ve just downloaded and installed on my Windows 7 workstation Windows Management Framework 3.0 – Beta. Before this I had Windows Management Framework 3.0 – CTP2 and there were some cool new features already. If you have installed Windows Management Framework 3.0 Community Technology...
Get Servers’ Models with WMI If your boss said to collect information about servers’ models for upgrading it’s RAM or HDD you can use this script with help of WMI. #getting all computers with win2k8, you can use *2003* for win2k3 Get-QADComputer -osName *2008* | foreach ` { #if they are pinging if...