2008 R2 Terminal Server: “Insufficient system resources exist to complete the requested service”

This has been solved. I began to examine the registry because increasing CPU and RAM resources on the virtual machine did not resolve the issue. I was pointed to Microsoft’s dureg tool to estimate the registry’s size. Browsing via regedit, I encountered issues opening the keys under HKEY_USERS\.Default\PRINTERS. Using dureg, I started probing under that … Read more

Permanently mount network share without the need for log on? (Windows)

This apparently possible, according to this StackOverflow post. Before posting the content of the answer, however, can I suggest that you’re over-complicating this? In situations like this where some crappy piece of code needs a user logged on to run (like Domino server, grumble) I’ve created a service account that’s to always be logged in … Read more

Windows Server 2008 R2 Metafile RAM Usage

The best method for dealing with this issue is to use the SetSystemFileCacheSize API as MS KB976618 instructs used to instruct. Don’t periodically clear the cache Using the SetSystemFileCacheSize function rather than clearing the cache periodically improves performance and stability. Clearing the cache periodically will result in too much metafile and other info being purged … Read more

Clear the Recycle Bin For All Users in Windows Server 2008 R2

As far as I can tell, these is no “official” Microsoft supported way of doing this. There are two options. One involves deleting c:\$Recycle.Bin and the other is scripting cleanmgr.exe to run at each user logon. The closest thing to “official” support for deleting c:\$Recycle.bin is from this MS KB, which references XP and Vista, … Read more