Category: Windows OS-Level Issues

FRS is deprecated in Server 2008R2
article #970, updated 3058 days ago

Some articles:

https://msdn.microsoft.com/en-us/library/windows/desktop/ff384840(v=vs.85).aspx).aspx

https://blogs.technet.microsoft.com/filecab/2014/06/25/the-end-is-nigh-for-frs/

Categories:      

==============

Replace DNS settings with static using netsh
article #548, updated 3072 days ago

First, set the primary DNS as a static primary, bypassing DHCP for DNS only:

netsh interface ip set dns name="Local Area Connection" static 8.8.8.8 primary

Then, add the secondary DNS:

netsh interface ip add dns name="Local Area Connection" 8.8.4.4 index=2

In the example above, 8.8.8.8 is being set as primary, and 8.8.4.4 as secondary; these are Google’s public DNS servers, quite useful in some circumstances. On many systems the names of the interfaces (above, “Local Area Connection”) will have to be changed, either to “Local Area Connection 2” or something more different for wireless; you can get the names using ‘ipconfig’ (they are prefixed with “Ethernet adapter”, take those two words off and you have it) or GUI.

Categories:      

==============

Fix Microsoft's Windows 10 upgrade hacks
article #938, updated 3163 days ago

Microsoft is pushing all of its favorite customers very hard to upgrade to Windows 10, to the point that many are hurting themselves accidentally. Here we have a tool which eliminates the problem:

https://www.grc.com/never10.htm

Categories:      

==============

Suppress Windows 10 upgrade offers
article #927, updated 3182 days ago

Here’s some good info:

http://answers.microsoft.com/en-us/windows/forum/windows_10-windows_install/supress-microsoft-10-upgrade-pop-up/cc481c86-6a94-4b95-babc-9353bd66dcc0

Categories:      

==============

"Metadata staging failed" in Windows 8+
article #920, updated 3210 days ago

If you see these in event logs, you are seeing the result of a mismatch between the running drivers in your machine and something in Microsoft’s cloud-based driver database. Do this:

  1. Control Panel
  2. search for Device Installation
  3. Change device installation settings
  4. No, let me choose what to do
  5. Never install driver software from Windows Update.
  6. uncheck Automatically get the device app and info provided by your device manufacturer

Categories:      

==============

Session "WBCommandletInBuiltTracing" failed to start with the following error: 0xC0000035
article #909, updated 3238 days ago

This is an error common on SBS 2011. A simple fix which sometimes works, on the bottom of this page:

http://blog.mpecsinc.ca/2010/12/sbs-2011-error-wbcommandletinbuilttraci.html

The summary:

DEL C:\Windows\Logs\WindowsServerBackup\WBC*

Categories:      

==============

SUBINACL fix for Windows Update issues
article #903, updated 3254 days ago

Some Windows Update issues are permissions problems, which can be fixed using a method involving SUBINACL:

https://support.microsoft.com/en-us/kb/968003#/en-us/kb/968003

Categories:      

==============

Removing the Windows 10 ads from your Windows 7/8/8.1
article #886, updated 3289 days ago

First, from administrative CMD:

wusa /uninstall /kB:3035583
wusa /uninstall /kB:2952664
wusa /uninstall /kB:2976978
wusa /uninstall /kB:3021917
wusa /uninstall /kB:3044374
wusa /uninstall /kB:2990214

Then you need to prevent the same updates from being reinstalled, from the Windows Installer GUI in the Control Panel.

Categories:      

==============

Set Windows 7 / Server 2008 R2 and above to autologon
article #885, updated 3290 days ago

  1. Do these in an administrative CMD:
reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v AutoAdminLogon /t REG_SZ /d "1" /f
control userpasswords2
  1. Uncheck “Users must enter a username and password to use this computer”, click Apply.
  1. Type the username and password, click OK. Use DOMAIN\username if this is not a DC.

The password is stored in the computer in encrypted form.

Categories:      

==============

Determine Internet Explorer version via CMD
article #879, updated 3304 days ago

To determine the version of Internet Explorer via CMD, do this:

reg query "HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer" /v "Version"

Categories: