VSS asynchronous operation is not completed. Operation

To Fix: Free up some space on the harddrive of the virtual machine. From here http://kb.hyve.com/wiki/Veeam%20backup%20fails%20due%20to%20bad%20vss%20writer

Excel 2010 only prints to the default printer

To fix:  ”I had installed the add-in “Microsoft Office Labs Search Command”.  As soon as I “deselected” it from the active add-ins it went back to working. From http://answers.microsoft.com/en-us/office/forum/office_2010-excel/excel-2010-only-prints-to-the-default-printer/5b6beddd-f85d-4fda-ab2b-56c750f2028c?msgId=860b990d-a5ab-4078-aa65-63c659c3a01c

How to remove the stupid Active Desktop Recovery Screen

This happens to our users on occasion, and after a little searching ran across this article! http://www.techtamasha.com/how-to-remove-active-desktop-recovery-screen/109 It actually does the trick! Go to Run and type regedit Now navigate to this path –HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Desktop\SafeMode\Components You would find a key named DeskHtmlVersion Right click the key and select Modify Under the label Base, select the radio button Decimal Change Value [...]

Backup/Copy Files that are “In Use” or “Locked” in Windows (Command Line)

Use hobocopy I love the name! https://github.com/candera/hobocopy/downloads http://www.howtogeek.com/howto/windows-vista/backupcopy-files-that-are-in-use-or-locked-in-windows/

How to add the My Computer Icon to all users Windows 7

This might work, http://www.sevenforums.com/tutorials/919-desktop-icons-add-remove.html

Adobe acrobat 5.0 and virtual machines don’t work together

Update to 5.05 and you will be good to go http://www.adobe.com/support/downloads/detail.jsp?ftpID=1309

ReportViewer Client Print Control “Unable to load client print control”?

From stack overflow http://stackoverflow.com/questions/340151/reportviewer-client-print-control-unable-to-load-client-print-control Unable to load Client Print Control! Everytime, clients wanted to print report by clicking the button print on their report viewer, they always got this error message. I had spent nearly two weeks to fix this problem. My environment is: – Window Server 2003 Standard Edition R2 – Report Server Version [...]

FileStream doesn’t release resources (using bitmap)

From here http://social.msdn.microsoft.com/forums/en-US/netfxbcl/thread/9abce4d0-d91b-49d2-9976-230e785bb750/ Image image = Image.FromFile(fileName); Bitmap bmp = new Bitmap(image); image.Dispose(); return Image.FromHbitmap(bmp.GetHbitmap());          

Yet another way to lock down the internet

http://www.boutell.com/newfaq/browser/restrictie.html One trick, in order to use a wildcard you have to type it like http://*.google.com  (you need the http:// )   2006-10-19: Internet Explorer can be configured to restrict access so that only a short list of approved sites can be accessed by anyone without a special password. Here’s how to do it. First, [...]

Bulk insert into SQL from a file

Of course the file needs to be on your sql server (or a share) BULK INSERT CSVTest FROM ’c:\csvtest.txt’ WITH ( FIELDTERMINATOR = ’,’, ROWTERMINATOR = ’\n’ ) GO  

Follow

Get every new post delivered to your Inbox.

Join 201 other followers