I recently had to trouble shoot why I was getting an "Access denied error" when trying to enable PSRemoting on hosted version of Windows 2008 R2.The error received looked something like:WinRM Quick Configuration Running command "Set-WSManQuickConfig" to enablethis machine for remote management through WinRM serviceThis includes: 1. Starting or restarting (if already started) the WinRM service 2. Setting the WinRM service type to auto start 3. Creating a listener to accept requests on any IP address ......
Reference implementation of a Powershell script to recycle app pools, in response to Rick's post:http://www.west-wind.c... 2003 & II6C:\WINDOWS\system32>c... iisapp.vbs /a AppPoolName /rWindows 2008 IIS7C:\WINDOWS\system32\ine... recycle apppool "MyAppPool"Restart-WebAppPool cmdlet# File: RecycleAppPool.ps1# Author: Ralph Willgoss# Date: 2nd Oct 2012# Reference:# http://stackoverflow.com/qu... ......