Dec 07
IIS 7 did not carry over many of the VBS scripts that IIS 6 came with. In particular, IISAPP.vbs which was a tool used to list the running worker processes, is no longer available on IIS 7 / Windows Server 2008. IISAPP.vbs was often used to determine which IIS process to attach your Visual Studio debugger to.
Fortunately, AppCmd.exe, which is a more powerful tool, can be used to accomplish the same task. For instance, to list the running worker processes, issue the following command: C:\Windows\System32\inetsrv\appcmd.exe list wp
A good write up on AppCmd.exe can be found at: http://learn.iis.net/page.aspx/114/getting-started-with-appcmdexe
Tagged with: IIS
Nov 29
In Windows 7 the QuickLaunch toolbar is no longer present by default nor is it an option in the toolbars menu.
To enable the QuickLaunch toolbar in Windows 7 do the following:
- Right-click the taskbar and choose Toolbars –> New Toolbar.
- Navigate to the folder ‘C:\Users\[YourUserName]\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch’ and click the ‘Select Folder’ button.
- Now within your taskbar you should see a new toolbar labeled ‘QuickLaunch’.
- Right-click on your taskbar again and uncheck ‘’Lock the taskbar’.
- Drag the QuickLaunch over near your Start Menu.
- Right-click on the QuickLaunch text and uncheck ‘Show text’ first and then uncheck ‘Show title’.
- Size your toolbars the way you like and right-click the taskbar again and check ‘Lock the taskbar’.
You should now have your QuickLaunch toolbar!

Tagged with: Windows 7
Nov 29
With UAC (User Account Control) enabled in Windows Server 2008 or Windows 7 you will often find the need to run a command prompt using the “Run as Administrator” option. Using the typical method of Start –> Run and typing ‘cmd’ does not allow you to run as administrator.
However, you can now use the search box to start a cmd session as administrator:
- Open your Start menu and type ‘cmd’ in the search box. Then rather than just hitting enter, use Ctrl + Shift + Enter.
- The User Account Control dialog box will be shown requesting permission.
- Use Alt + ‘C’ (Continue) in Windows Server 2008 or Alt + ‘Y’ (Yes) in Windows 7 to continue.
Your cmd prompt will then be open with administrative privileges.
Tagged with: Windows 7 • Windows Server 2008