The System Update Readiness Tool for Windows 7 for x64-based Systems
article #1034, updated 2810 days ago

A 539-megabyte monster! Appears to be designed to solve lots of problems.

https://www.microsoft.com/en-us/download/details.aspx?id=20858

Categories:      

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

Very interesting employment / jobs web site
article #1033, updated 2814 days ago

Rather nicely set up:

http://glassdoor.com

Categories:      

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

Record all audio in Windows regardless of "Stereo Mix"
article #1032, updated 2820 days ago

In Windows, some audio drivers provide something called “Stereo Mix” and some don’t; this is what is usually recommended if you want to record everything audio happening at once in Windows. But increasingly this doesn’t exist. There are software replacements which do the job:

http://vb-audio.pagesperso-orange.fr/Voicemeeter/

http://www.virtualaudiostreaming.net/

Categories:      

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

Internet Explorer within Chrome
article #624, updated 2821 days ago

The original “IE Tab” appears to work well with Windows 10. It has seen quite a lot of development over the years, and now includes a binary helper MSI:

https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd

“IE Tab Multi” was recommendable for several years, but does not appear to work on 10:

https://chrome.google.com/webstore/detail/ie-tab-multi-enhance/fnfnbeppfinmnjnjhedifcfllpcfgeea

Categories:      

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

Use DMARC for Internet email failure analysis
article #1028, updated 2829 days ago

Info here:

https://en.wikipedia.org/wiki/DMARC

Categories:      

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

Enable CLEANMGR.EXE on Server 2008R1/2 and 2012
article #1006, updated 2830 days ago

Very useful procedure, does not need a role/feature install. Slightly different on each. Note the locale suffix which will have to be changed. Does not work on 2012R2, from that point we have to enable the desktop experience, which can be done in Powershell using Install-WindowsFeature Desktop-Experience.

Server 2012R1:

copy C:\Windows\WinSxS\amd64_microsoft-windows-cleanmgr_31bf3856ad364e35_6.2.9200.16384_none_c60dddc5e750072a\cleanmgr.exe %systemroot%\System32
copy C:\Windows\WinSxS\amd64_microsoft-windows-cleanmgr.resources_31bf3856ad364e35_6.2.9200.16384_en-us_b6a01752226afbb3\cleanmgr.exe.mui %systemroot%\System32\en-US

Server 2008R2:

copy C:\Windows\winsxs\amd64_microsoft-windows-cleanmgr_31bf3856ad364e35_6.1.7600.16385_none_c9392808773cd7da\cleanmgr.exe %systemroot%\System32
copy C:\Windows\winsxs\amd64_microsoft-windows-cleanmgr.resources_31bf3856ad364e35_6.1.7600.16385_en-us_b9cb6194b257cc63\cleanmgr.exe.mui %systemroot%\System32\en-US

Server 2008 64-bit:

copy C:\Windows\winsxs\amd64_microsoft-windows-cleanmgr_31bf3856ad364e35_6.0.6001.18000_none_c962d1e515e94269\cleanmgr.exe %systemroot%\System32
copy C:\Windows\winsxs\amd64_microsoft-windows-cleanmgr.resources_31bf3856ad364e35_6.0.6001.18000_en-us_b9f50b71510436f2\cleanmgr.exe.mui %systemroot%\System32\en-US

Server 2008 32-bit:

copy C:\Windows\winsxs\x86_microsoft-windows-cleanmgr_31bf3856ad364e35_6.0.6001.18000_none_6d4436615d8bd133\cleanmgr.exe %systemroot%\System32
copy C:\Windows\winsxs\x86_microsoft-windows-cleanmgr.resources_31bf3856ad364e35_6.0.6001.18000_en-us_5dd66fed98a6c5bc\cleanmgr.exe.mui %systemroot%\System32\en-US

Categories:      

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

Invisible rules in Outlook/Exchange
article #1027, updated 2834 days ago

If you find that inbound emails are not going where they should go, but cannot find any Rules in Outlook or Exchange to match, they may be slightly corrupt and thus invisible. If you run Outlook with /cleanrules and /cleanconvongoingactions , this will eliminate all rules and also a queue which can be involved. A full list of command-line switches for Outlook, is here:

https://support.office.com/en-us/article/Command-line-switches-for-Outlook-for-Windows-079164CD-4EF5-4178-B235-441737DEB3A6

Categories:      

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

Startup Folders in Windows 8.1 and 10
article #1025, updated 2838 days ago

Driving Explorer with this as address:

shell:startup

will get you the per-user startup folder. The public startup folder can be driven using this:

shell:common startup

Categories:      

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

Remove all network printers by VBS
article #1024, updated 2838 days ago

This works well:

Option Explicit
Dim strComputer

strComputer = "."

Dim objWMI,networkPrinters,networkPrinter
Set objWMI = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")

Set networkPrinters = objWMI.ExecQuery("Select * From Win32_Printer Where Network = true") 

For Each networkPrinter in networkPrinters 
    networkPrinter.Delete_ 
Next 

Set networkPrinter = Nothing
Set networkPrinters = Nothing
Set objWMI = Nothing

Categories:      

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

QuickBooks Desktop Install Diagnostic Tool
article #1023, updated 2842 days ago

This is a tool from QuickBooks, new to me, which can fix a lot of different Windows library and other issues, to be used sometimes when QuickBooks fails to install.

https://community.intuit.com/articles/1019962-fix-common-installation-errors-using-the-qbinstall-tool

Categories: