To recycle an application pool on demand, run:
appcmd recycle apppool /apppool.name:string
… where string is the name of the application pool that you want to recycle (Source).
Nutrition for the ambitious .NET developer - since 2003
To recycle an application pool on demand, run:
appcmd recycle apppool /apppool.name:string
… where string is the name of the application pool that you want to recycle (Source).
If you are stuck at a black screen (blinking cursor) after the first restart, this can have several reasons.
How to solve it
In case you are installing from a USB stick, use the DVD instead.
Source: answer on this forum post
Other possible reasons:
If you observe the following behavior:
Windows 7 Backup fails after a few seconds with an “Insufficient Space" message and error code 0x81000033
Error Message:
“Windows Backup skipped backing up system image because one of the critical volumes is not having enough free space. Free up some space by deleting unnecessary files and try again.
Error code: 0x81000033”
Reasons:
The problem is caused by lack of free space in the hidden ‘system reserved’ partition (that Windows created).
How to fix:
Enlarge the hidden ‘system reserved’ partition (e.g. to 350 MB).
Further information:
When using Windows 7 Backup (also available as part of Windows 8), you receive the following error message when trying to store the backup on a network location:
“The validation information class requested was invalid.”
Workaround (found in this forum post):
In the username field, specify the username as “DEVICE\username”, where DEVICE is the network device where you are trying to store the backups to.
Enjoy!
PS: The German version of the error message is: “Die Überprüfungsinformationsklasse war unzulässig.”
Taken right from Dell Support article #268873:
Note: Please read the original article for many important details!
From the Expression website:
“The web is now about applications as well as traditional web sites, and this requires a new set of tools. Microsoft is committed to offering a unified approach to focus on web design and development features in Microsoft Visual Studio 2012.
[…]
Expression Web is now available as a free download from the Microsoft Download Center, and no new versions will be developed. Customers who previously purchased Expression Web will receive support through the established support lifecycle.”
Together with Expression Web, the SuperPreview service will come to an end, too:
“Expression SuperPreview Remote Beta will continue running as a service through June 30, 2013”
For example, Virtual Machine Manager (VMM) asks for “Select or enter a SQL instance”. It’s a mandatory field.
If you can’t browse to find your SQL Server, enter “MSSQLSERVER” for the default instance, or an instance name.
See also:
Answer: Use Vmdk2Vhd.
Description from the creators's website:
Vmdk2Vhd is a simple utility to convert virtual hard drive images from VMWare's VMDK format into the Microsoft's VHD format. This is a sector by sector copy operation from one format to the other and the source file remains unaltered.
The Problem
The Solution
Update (June 9th, 2012): Ed Holloway pointed out that the easiest way to downgrade your TFS database is to simply run this script:
exec prc_EnablePrefixCompression @online = 0, @disable = 1
Read the detailed instructions here.
Symptoms:
Applies to:
Solution (found in the Acronis forums):
(!) After using Cleanup Utility, it is strongly recommended not to reboot the machine, go to Start -> Run -> regedit, and verify that there are no snapman*, tdrpman*, timounter strings in the following keys:
Good luck!
Beginning with Windows Vista/Server 2008 you can add credentials to Credential Manager on the command line using Cmdkey.exe
Cmdkey /add:Servername /user:User /pass:Password
Just because you are a local administrator does *not* mean that you have permissions to access/log into your SQL Server 2008 (R2).
However, you can regain access by starting the SQL Server instance in "single user mode".
All you need to do is to add -m; to the Startup Parameters box and restart SQL Server.
See also: How to: Configure Server Startup Options (SQL Server Configuration Manager) on Microsoft TechNet.