This tool:
http://www.passmark.com/products/keytest.htm
will test your keyboard, and will also report scan codes for all keys.
This tool:
http://www.passmark.com/products/keytest.htm
will test your keyboard, and will also report scan codes for all keys.
RWW often freezes and fails. Happily, the amazing Jared Dexter found a fix: when memory usage reaches a certain high degree, IIS refuses to cooperate, and we can change this. In an administrative CMD:
%ProgramFiles%\Windows Small Business Server\Bin\WebApp\RemoteAccess
web.config
, using Notepad<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0" />
IISRESET
.The above is summarized from:
This happens especially in Outlook in creating new emails, but can happen with any combination of windows, where a new window is created but comes up “in back” where we expect it in front. Steps:
ForegroundLockTimeout
.This one’s great, Windows and Linux and Mac and BSD!
If a user sees an error message pertaining, run this in the Exchange command prompt:
set-mailbox username -RulesQuota:256KB
The default is reportedly 64K.
A new crowd-sourced web site.
It is here right now:
https://h20566.www2.hpe.com/hpsc/swd/public/detail?swItemId=MTX_9eae20fde3d34070bccecad8c0
There are a number of great tools which will show you what your SVCHOST.EXE processes are really doing. Here is one of them:
http://www.howtogeek.com/80082/svchost-viewer-shows-exactly-what-each-svchost-exe-instance-is-doing/
Yet something newer than the below, the Windows Update Automated Troubleshooter:
https://support.microsoft.com/en-us/gp/windows-update-issues/en-us
Microsoft is now providing an interesting toolset for Windows Update issues on current operating systems:
http://support.microsoft.com/common/survey.aspx?scid=sw;en;3779&showpage=1
And another Fix-It:
http://support.microsoft.com/kb/968002
And something to install, the SDK, which contains Windows Installer 4.5 and possibly 5.0 too:
The below are our previous methods, from the indefatigable Mike Hunsinger. It is best to try level 1, see if that fixes, go to level 2. Both of these are done in administrative command prompts.
Level 1.
net stop bits
net stop wuauserv
net stop appidsvc
net stop cryptsvc
ren %systemroot%\SoftwareDistribution SoftwareDistribution.bak
ren %systemroot%\system32\catroot2 catroot2.bak
net start bits
net start wuauserv
net start appidsvc
net start cryptsvc
bitsadmin /reset /allusers
Level 2.
net stop bits
net stop wuauserv
net stop appidsvc
net stop cryptsvc
Del "%ALLUSERSPROFILE%\Application Data\Microsoft\Network\Downloader\qmgr*.dat"
cd /d %windir%\system32
regsvr32.exe atl.dll
regsvr32.exe urlmon.dll
regsvr32.exe mshtml.dll
regsvr32.exe shdocvw.dll
regsvr32.exe browseui.dll
regsvr32.exe jscript.dll
regsvr32.exe vbscript.dll
regsvr32.exe scrrun.dll
regsvr32.exe msxml.dll
regsvr32.exe msxml3.dll
regsvr32.exe msxml6.dll
regsvr32.exe actxprxy.dll
regsvr32.exe softpub.dll
regsvr32.exe wintrust.dll
regsvr32.exe dssenh.dll
regsvr32.exe rsaenh.dll
regsvr32.exe gpkcsp.dll
regsvr32.exe sccbase.dll
regsvr32.exe slbcsp.dll
regsvr32.exe cryptdlg.dll
regsvr32.exe oleaut32.dll
regsvr32.exe ole32.dll
regsvr32.exe shell32.dll
regsvr32.exe initpki.dll
regsvr32.exe wuapi.dll
regsvr32.exe wuaueng.dll
regsvr32.exe wuaueng1.dll
regsvr32.exe wucltui.dll
regsvr32.exe wups.dll
regsvr32.exe wups2.dll
regsvr32.exe wuweb.dll
regsvr32.exe qmgr.dll
regsvr32.exe qmgrprxy.dll
regsvr32.exe wucltux.dll
regsvr32.exe muweb.dll
regsvr32.exe wuwebv.dll
netsh winsock reset
proxycfg.exe -d
netsh winhttp reset proxy
net start bits
net start wuauserv
net start appidsvc
net start cryptsvc
bitsadmin /reset /allusers