We have OpenedFilesView:
Category: Windows OS-Level Issues
To find out which process is locking a file in Windows
article #729, updated 3879 days ago

When Windows updates fail
article #726, updated 3887 days ago
We have the System Update Readiness tool for workstations and DISM for servers:
http://support.microsoft.com/kb/947821
For Vista/2008 SP1 and up through 8.1/2012R2 so far. One heads-up: according to this article by a Microsoft developer, it will take about 10 minutes to run, it takes the form of “checksur.exe”.

Volume Shadow Copy Service error: Failed resolving account spsearch with status 1376.
article #618, updated 3936 days ago
Try this:
http://support.microsoft.com/kb/2537096
‘spfarm’ is also involved in the errors. This appears to be an unresolved bug in SBS versions after 2003.

Startup Items in Windows
article #692, updated 3996 days ago
“Autoruns”:
http://technet.microsoft.com/en-us/sysinternals/bb963902.aspx
is the most complete of all.

"Your power plan information isn't available" in Windows 7
article #684, updated 4001 days ago
Try the registry merge here:
http://www.sevenforums.com/tutorials/197908-power-plan-specify-default-all-users.html
The one under the caption “To Allow Users to be able to Specify Their Own Power Plan”. Tried lots and lots of things, this worked. Its contents are below. After the merge you may have to log off and on or even reboot, before the fix will be operational.
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Power\PowerSettings] "ActivePowerScheme"=-

IPP in Vista, Windows 7, and Server 2008
article #690, updated 4005 days ago
It has to be installed:

High disk usage by SBSMonitoring
article #689, updated 4006 days ago
Excellent instructions here:
http://www.itquibbles.com/sql-sbsmonitoring-high-disk-usage/
What is needed, in sum, is to rebuild the SBSMonitoring database.

Command line permissions override in Windows
article #614, updated 4021 days ago
The simplest commands to take ownership and give full permissions to administrators:
takeown /f directory_name /r /d y icacls directory_name /grant:r administrators:F /t
The above is recursive, through all files and folders in the tree. If recursion is not desired, remove /r and /t.

COM Port Problems under Windows 7 and Later
article #677, updated 4030 days ago
If you have a problem with COM port devices under Windows 7 or later, your system may think it has autodetected it as an old-style RS-232C port mouse! To fix that, regedit here:
hklm\SYSTEM\CurrentControlSet\Services\sermouse
and change the DWORD Start
to 4. This prevents the autodetection of COM-port mice!
Contributed by the excellent Brad Hollingsworth.

"Network Connections" service won't start, NIC works but red-X'd
article #673, updated 4042 days ago
If a PC can browse the web but cannot see Windows shares, and/or the NIC is red-X’d in the tray, check the “Network Connections” service: it should be set to Manual, but it needs to be running, and if it’s not, you have the problem which I am writing about here :-) This is known to work in Windows 7, according to web resources it appears to be good for others as well.
- Open an administrative command shell, or run these using CMD in a remote management tool like Labtech.
- Run this:
sfc /scannow
If it says it fixed anything, reboot, and if all is well you’re done. If not: - Run this:
netsh winsock reset & shutdown -f -r -t 0
The PC will reboot. Check again. If not done yet: - Then run this:
netsh int ip reset C:\ipreset.log & shutdown -f -r -t 0
The PC will reboot again.
If not done yet, let me know what you did to fix it!!!