Category: Windows Installer, Updates, Patching

Remove All Oracle Java Products Silently
article #1407, updated 1493 days ago

This:

wmic product where "name like 'Java%%'" call uninstall /nointeractive

appears to work very well for products whose names start with “Java” which are installed in Windows standard fashion.

Categories:      

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

Microsoft Update Health Tools
article #1405, updated 1505 days ago

Solves issues with updating Windows 10.

https://support.microsoft.com/en-us/help/4023057/update-reliability

Categories:      

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

Download Windows 10 Build 1909 ISO
article #1402, updated 1512 days ago

There are links on this page:

https://www.itechtics.com/windows-10-1909/

Categories:      

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

Remove All Mitel Software via Powershell
article #1392, updated 1604 days ago

All Mitel software names seem to start with that one word “Mitel”. So this:

( Get-WmiObject -Class Win32_Product | Where-Object{$_.Name -like 'Mitel*'} ) | ForEach-Object {
	& msiexec /x $_.IdentifyingNumber /quiet /qn /norestart 
}

appears to do the job nicely.

Categories:      

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

BCUninstaller, a New Open Source Uninstaller, Very Tech-Friendly
article #1389, updated 1617 days ago

Best tool for this I’ve ever seen.

https://www.fosshub.com/Bulk-Crap-Uninstaller.html

Categories:      

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

New Windows package manager: OneGet
article #1352, updated 1842 days ago

This seems to be quite the tool. Haven’t tested it yet.

https://github.com/oneget/oneget

Can be installed or updated in 10 with: Install-Module -Name PackageManagement -Force

Categories:      

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

Provisioning Packages in Windows 10
article #1333, updated 1937 days ago

These packages bundle configurations, even domain joins, and other items. Native to Windows 10:

https://docs.microsoft.com/en-us/windows/configuration/provisioning-packages/provisioning-create-package

Categories:      

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

Clear Windows Installer queue
article #1315, updated 1990 days ago

Sometimes Windows Installer will pile up a queue of items to be installed. These will show up as multiple ‘msiexec’ processes in TASKMGR. To clear them:

msiexec /unregister
taskkill /f /im msiexec.exe
msiexec /regserver

The idea is, first we take Windows Installer offline, then we kill any leftover stalled / queued processes, and lastly, we bring Windows Installer online again. Unless there’s something else in the backgrounds starting more of these things, this will take good care.

Categories:      

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

Windows 10 Distributed Updates
article #1308, updated 2035 days ago

Updates are being distributed to Windows 10 via peer-to-peer methods, in addition to cloud-to-PC. This will be essential to handle the big build files, 4 gigabyte plus, at many sites.

https://docs.microsoft.com/en-us/windows/deployment/update/waas-delivery-optimization

Categories:      

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

A new Microsoft instruction page for Windows Update troubles
article #1305, updated 2052 days ago

Here’s a new one, seems to cover some good ground:

https://support.microsoft.com/en-us/help/10164/fix-windows-update-errors

Categories: