Wuinstall pro
Author: i | 2025-04-25
max. 100 machines: USD 449 WuInstall PRO Basic max. 250 machines: USD 679 WuInstall PRO Small max. 500 machines: USD 1090 WuInstall PRO Medium max. 1000 machines: USD 1690 WuInstall PRO Large max. 2025 machines: USD 2790 WuInstall PRO Corporate max. 4000 machines: USD 4890 WuInstall PRO Enterprise
WuInstall - In the latest Version of WuInstall 1.2. Pro - Facebook
WuInstall is a command-line tool that gives you back control when to install Windows updates. It thereby offers you the agility to react as fast as possible when a new, important security update becomes available. ContentsBasic operationFinding and installing updatesCentralized cacheControl over reboot cycleWrap-up Many of you probably use Windows Server Update Services (WSUS) for patch management in your domains. WSUS, along with Group Policy, gives you the ability to: Download Windows Updates to a central repository on your LANSelectively approve or reject updatesSchedule deployment to your server and workstation nodesThe WSUS approach, whether deployed on its own or orchestrated through System Center Configuration Manager, is a tried-and-true formula that suffers from one fatal flaw: a lack of agility.Think of the recent WannaCry ransomware attack, for example. Microsoft released a fix to the underlying Windows operating system vulnerability in March for current Windows Server and Client versions, and they even released an out-of-band special update for legacy Windows versions.In a case like this, you need the ability to download and patch systems as quickly as possible. This agility is one feature you get with HS2N WuInstall, a command-line client that gives Windows systems administrators lightning-fast control over the Windows Update cycle.Basic operationGo ahead and download a 30-day free trial at the WuInstall web site. Don't be shocked when you open the ZIP archive and see only executables. There is no installation because this is simply a monolithic command-line tool! There are three binaries:exe: 32-bit digitally signed executableexe: 32-bit, no digital signatureexe: 64-bit digitally signed executableFor convenience, I suggest that you: Rename exe to wuinstall.exe for convenience.Modify your administrative workstation's PATH environment variable to include the path to the exe binary. This way you can call wuinstall from anywhere in the file system at a command prompt; I show this in the next screenshot.Add wuinstall.exe to your system PATHNow open an administrative PowerShell console and type wuinstall. As shown in the following screenshot, you'll see the WUInstall splash screen. Now press Usage and take note: that's the command's full syntax. Of course, you can always hit the documentation.Viewing WUInstall command syntaxRun the following command to dump the help contents to a text file for easier study:wuinstall --help > .\wuinstallhelp.txtFinding and installing updatesBefore we go any further, let me be clear: WuInstall works either with or without WSUS. You'll want to make sure you have clearance in your IT department before you use WuInstall to override WSUS, however.Okay, that said, let's run a search for available Windows updates:wuinstall --searchThe above command will query the local host's configured WSUS server. If it detects no WSUS server, the output will say "You have no WSUS Server configured" and will query Microsoft Update.If you want
WuInstall - Getting started with WuInstall
To bypass WSUS, run this command: wuinstall --search --bypass_wsusNote that the bypass remains in effect only for the duration of the current command.Searching Windows updates with WuInstallHere is partial output from when I ran a search on a Windows Server 2016 domain member server:Searching for updates ... Criteria: IsInstalled=0 and Type='Software'Result Code: Succeeded1 Update found in total, filtering ...1. Microsoft .NET Framework 4.7 for Windows 10 Version 1607 and Windows Server 2016 for x64 (KB3186568) Severity: Unknown UpdateClassification - Feature Packs Product - Windows Server 2016 ID: ac3ad46a-f129-4ee7-bd4d-360385e87a1a Releasedate: 2017-06-22 Size (MB): 67.05 Eula Accepted: trueonly /search was specified, stopping here!That final output line is significant; the --search switch only queries the update source but does not download anything.Check the documentation, because you can add criteria for closer matches. For example, the following command searches WSUS or Microsoft Update for driver updates not already installed:wuinstall /search /criteria "Type='Driver' and IsInstalled=0"NOTE: You'll notice in the documentation that WUInstall parameters can use either a Linux-style double-dash (--) or the Windows-style slash (/).Or we can target a specific Microsoft Knowledge Base (KB) number:wuinstall /search /match "KB3186568"We can download updates to a local or network share directory by invoking the /download_to parameter:wuinstall.exe /search /match "KB3186568" /download_to "C:\temp"And then we can install one or more updates; if you don't specify a download location, WUInstall simply downloads the file and runs it.wuinstall.exe /search /match "KB3186568" /installThink of how useful WUInstall would be to deploy KB fixes quickly to address terrible malware outbreaks like WannaCry!Installing updatesCentralized cacheWUInstall works fundamentally differently from WSUS and Group Policy because the latter uses a client pull model. By contrast, you can script WUInstall to push Windows Updates to clients whenever you need to do so.The WUInstall central cache feature gives non-WSUS businesses some of the bandwidth-saving goodness of WSUS by storing Windows Updates in a central location.Here I define my E:\updates (shared as \\dc1\updates) as a central cache and download/populate any updates within it:wuinstall /download_cache \\dc1\updatesIf you want another client to install its updates from the cache, run the following command:wuinstall /install_cache \\dc1\updatesBy the way, if this second client needs updates that the initial station did not, then the second node will populate the shared cache with those new updates. Very cool!Control over reboot cycleOne of the major annoyances that both end users and systems administrators share is Windows' tendency to restart automatically after applying certain Windows Updates. WUInstall gives you control over the update/restart cycle.For example, if you know in advance that a restart is required, you can force the post-installation action with a 10-second default delay. Of course, the value is customizable:wuinstall /install /reboot 30You can also specify that the system restart only if necessary and set a limitWuInstall HowTo - WuInstall Documentation - Confluence
- Exchange Server 2007 UpdateClassification - Update RollupsOf course, /match and /nomatch can also be combined. /matchfile fileWith the /matchfile option you can specify multiple /match parameters.Just write the desired update matches (regular expressions are supported) into a file and specify this file as the matchfile.For example, create the file "updateList.txt" with the following content: Security State Assessment 1.0KB963671KB975467.NET Framework 3.5 SP1 SecurityThe match entries are separated with a newline. The file has to be either in UTF-8, ANSI or DOS character set. UTF-16 is not supported.WuInstall lists all the updates in the result list, which match AT LEAST ONE of the lines in the file.If you typeWUInstall.exe /search /matchfile c:\updateList.txtWuInstall gives for example the following result list: 95 Updates found in total, filtering ...Listing those matching search expressions in file: 'c:\updateList.txt'1. Update for Microsoft Script Editor Help (KB963671) Severity: Unknown Product - Office 2007 UpdateClassification - Updates2. Security Update for Windows 7 (KB975467) Severity: Important UpdateClassification - Security Updates Product - Windows 73. Definition Update for Microsoft Forefront Client Security (Security State Assessment 1.0.1710.103 Full) Severity: Unknown UpdateClassification - Definition Updates Product - Forefront Client Security4. Microsoft .NET Framework 3.5 SP1 Security Update for Windows 7 x86 (KB979916) Severity: Important UpdateClassification - Security Updates Product - Windows 7This option is useful when you keep a central list of updates to be rolled out on your machines in a shared directory (use this list as the matchfile). /nomatchfile file/nomatchfile is quite the opposite of the /matchfile option: use it if you want to specify multiple /nomatch parameters (if you want to exclude a list of updates).WuInstall lists all the updates in the result list, which match NONE of the lines in the file.Just write the update matches that should be excluded (regular expressions are supported) into a file and specify. max. 100 machines: USD 449 WuInstall PRO Basic max. 250 machines: USD 679 WuInstall PRO Small max. 500 machines: USD 1090 WuInstall PRO Medium max. 1000 machines: USD 1690 WuInstall PRO Large max. 2025 machines: USD 2790 WuInstall PRO Corporate max. 4000 machines: USD 4890 WuInstall PRO EnterpriseWuInstall - Displaying items by tag: WuInstall
For you to try out.Free patch manager softwareWith a patch manager you can create new patch management policies and different patching schedules for different groups for the various workstations and end-users in your company and also for third-party applications. ManageEngine Patch Manager Plus Free is a complete patch tool. There are various other free patch manager available for different purposes, for example Freshservice, which is a service desk API for developers, PDQ Deploy Free, a software deployment software, Comodo, which is a network security system, or ManageEngine Desktop Central, a unified endpoint management solution (UEM), just to name a few. Have a look at the various offers and see which one of the Windows patching tools works best for you. You can also get a free trial with WuInstall.Windows server patching and WSUS patch managementWSUS patch management is a software that lets you manage and distribute updates through a management console. You can use WSUS patching to fully manage how the Windows updates that are released through Microsoft Update are distributed to the machines on your network. As an administrator, you can determine how many other WSUS servers should directly connect to Microsoft Update. You can use WSUS for centralized Microsoft patch management and for automated patch management. You can find more about WSUS on our website.Windows patch management with WuInstallMicrosoft does not deliver a command line tool for patch management with its software updates. This is why we developed WuInstall. For Windows patch management you can use the management software WuInstall which makes it possible to install Windows Updates on demand. The use of the Windows patch management software WuInstall gives you full control over the whole patching process of Windows patch management. Depending on the configuration of your system, the management software WuInstall either uses the internal WSUS server, or the management software uses the external Microsoft Update Server in order to look for available software updates. After that, the Windows updates can be downloaded and installed. You can find more on WuInstall on our website.Cloud Patch Management with XEOXXEOX Patch Management is an administrator's control over operating system, platform or application updates. It includes identifying system features that can be improved or corrected, creating those improvements or fixes, releasing the update package, and verifying the installation of those updates. XEOX's comprehensive patch management automation software saves time and improves patch compliance. With XEOX, you have full control over patching processes for the enterprise, site and all devices. Minimize your time by using automated scanning and patching capabilities and keep your endpoints secure. XEOX fills the gaps in the Microsoft operating system by constantly checking for missing patches. This is important, because without these patches you run the risk of losing the security of your devices and becoming more vulnerable to hacker attacks. If you use XEOX, this risk can be minimized.WuInstall Pro 1.3.8d - Download, Screenshots
An autonomous patch management tool. It’s an app that lets you load a list of computers, and then kick off the Windows update installation and reboot process on all of them, simultaneously.BatchPatch was designed to be simple and intuitive. No installation necessary– just launch the EXE and you’re ready to go! You start by loading a list of computer names, IP addresses or MAC addresses. Then highlight one, some, or all rows in the grid to perform actions on just the selected hosts. Either right-click on the currently selected rows or use the Actions menu to select an action to perform.5. Kaseya VSA With Kaseya VSA, you can define all aspects of your monitoring and alerting policies, and create these policies based on any and all dimensions you want – by the client, department, asset type, user – depending based on what makes sense for your business. You can also define alerts that tell you before a problem impacts an end-user. For example, monitor devices for disk defragmentation – and even set up rules to automatically defrag at a time that has the least impact on the business.6. WuInstall WuInstall is a command-line tool for Windows which enables you to install Windows updates for a certain workstation in a controlled way, by using a command-line script instead of the standard Windows update functionality. It allows administrators to update several workstations at once (e.g. run WuInstall in shutdown scripts) or workstations of users who turned off Windows Automatic Updates.WuInstall uses the Windows update API and searches, either at the internal WSUS server or on the external Microsoft Update Server (depending on system configuration), for currently available updates for the certain workstation. The tool downloads and/or installs the found updates.Do you need more than a command line tool? Check out XEOX!WuInstall Pro 1.3.8d - Download, Screen
Auditing, or difficulty of exploitation. Low: A security issue whose exploitation is extremely difficult, or whose impact is minimal. Unknown: all updates, which are not a security update.You can combine severity levels by just combining the letters:C (Critical) I (Important) M (Moderate) L (Low) U (Unknown)So the commandWUInstall.exe /search /severity CIUfilters the result list of the search to contain only updates with severity Critical, Important and Unknown: Searching for updates ... Criteria: IsInstalled=0 and Type='Software'Result Code: Succeeded30 Updates found in total, filtering ...Listing those matching following severities:CriticalImportantUnknown/product "product_name"Each update belongs to a product (for example Office 2007, Windows 7, Forefront Client Security, ...). It is also possible to filter results of a search (which match the specified criteria) by a product name.No wildcards are possible. The product name has to be an exact match. Currently, you can only filter one product.So for example the command WUInstall.exe /search /criteria IsInstalled=1 /product "Forefront Client Security"gives the following output:Searching for updates ... Criteria: IsInstalled=1Result Code: Succeeded96 Updates found in total, filtering ...Listing product: 'Forefront Client Security' /noproduct "product_name"This option filters the search result and excludes the given product./match "regexp"This option filters each update in the result list if the title of an update matches the search string specified with the regexp parameter (in WuInstall Pro, also regular expressions are possible).You can search, for example, just for all updates matching KB890830 with: WUInstall.exe /search /match KB890830 /criteria IsInstalled=1 Searching for updates ... Criteria: IsInstalled=1Result Code: Succeeded96 Updates found in total, filtering ...Listing those matching search expression: 'KB890830'1. Windows Malicious Software Removal Tool - August 2010 (KB890830) Severity: Unknown UpdateClassification - Update Rollups Product - Windows 7With using regular expressions, you can do some more complex queries. For a good explanation of regular expressions see example, searching for all updates that match "Internet Explorer 8",WuInstall - WuInstall - Displaying items by tag: updatetool
The release date is before the given date eq: updates where the release date is equals to the given date gt: updates where the release date is after the given dateExample: WUInstall.exe /search /releasedate lt:2014-05-06You will get following output: 3 Updates found in total, filtering ...Listing those where release date lt 2014-05-061. Microsoft Visual Studio 2010 Service Pack 1 Severity: Unknown UpdateClassification - Service Packs Product - Visual Studio 2010 ID: 230b82d1-3abd-471a-a4f9-23f97fb857d9 Releasedate: 2012-04-05 Eula Accepted: trueThe second way to use this options is to specify a number of days. This only lists all updates with release date after today minus the given days.Example:WUInstall.exe /search /releasedate -10This will list all updates which are not older than 10 days:3 Updates found in total, filtering ...Listing those with release date after 2014-04-261. Definition Update for Windows Defender - KB2267602 (Definition 1.173.1428.0) Severity: Unknown UpdateClassification - Definition Updates Product - Windows Defender ID: 4f25e1f8-186e-4d0b-b18c-6dab7c081c09 Releasedate: 2014-05-06 Eula Accepted: true /maxUpdateCount numberThis update specifies the maximal number of updates which are handled by a WuInstall call.If there are more updates available, only the first updates up to the given number are handled./updateSize [lt|gt]:Size(KB|MB|GB) | bt:MinSize(KB|MB|GB)-MaxSize(KB|MB|GBUse this option to filter for updates which have a download size lower, greater or between the specified size./maxTotalSize Size(KB|MB|GB) | /maxPayloadThis option sets a maximum accumulated size for all updates. WuInstall will iterate through the list of found updates and only those where the accumulated size is lower than specified.. max. 100 machines: USD 449 WuInstall PRO Basic max. 250 machines: USD 679 WuInstall PRO Small max. 500 machines: USD 1090 WuInstall PRO Medium max. 1000 machines: USD 1690 WuInstall PRO Large max. 2025 machines: USD 2790 WuInstall PRO Corporate max. 4000 machines: USD 4890 WuInstall PRO Enterprise
WuInstall - WuInstall - Displaying items by tag: windows 10
This file as the nomatchfile.For example, create the file "exclude.txt" with the following content:WindowsMicrosoft925673OfficeThe exclude entries are separated with a new line. The file has to be either in UTF-8, ANSI or DOS character set. UTF-16 is not supported.If you typeWUInstall.exe /search /nomatchfile c:\exclude.txt WuInstall puts out for example the following result list:95 Updates found in total, filtering ...Listing those NOT matching search expressions in file: 'c:\exclude.txt'1. Update for Business Contact Manager for Outlook 2007 (KB946140) Severity: Unknown UpdateClassification - Critical Updates Product - Office 20072. Security Update for SQL Server 2005 Service Pack 3 (KB970892) Severity: Critical UpdateClassification - Security Updates Product - SQL Server 20053. Update Rollup 10 for Exchange Server 2007 Service Pack 1 (KB981407) Severity: Unknown Product - Exchange Server 2007 UpdateClassification - Update Rollups/isdownloaded 1|0This options filters updates, which have already been downloaded to the local cache.You can call for example WuInstall with the /download options combined with some filters to download all available updates: 30 Updates found in total, filtering ...Listing those matching search expression: 'Greek'1. Greek Language Pack - Windows 7 (KB972813) Severity: Unknown UpdateClassification - Updates Product - Windows 7 Language PacksDownloading updates ...Downloading Greek Language Pack - Windows 7 (KB972813):and then later use:WUInstall.exe /install /isdownloaded 1You will get following output: 30 Updates found in total, filtering ...Listing only updates which are already downloaded1. Greek Language Pack - Windows 7 (KB972813) Severity: Unknown UpdateClassification - Updates Product - Windows 7 Language PacksDeleting updates manually from the local download cache (usually Windows\SoftwareDistribution\Download) might cause this option to work incorrectly, because even deleted they are still considered downloaded. /releasedate [lt|eq|gt]:[YYYY-MM-DD] or [-#Days] This option filters updates by their release date and can be used in two different ways: First with lt, eq or gt followed by the date you will filter. lt: updates whereWuInstall - WuInstall - Displaying items by tag: windows updates
If you only need to update one Windows system, you can use the GUI. However, if you need to update many Windows systems, it’s best to use PowerShell. Managing Windows Updates from a PowerShell window with the module PSWindowsUpdate is excellent. In this article, you will learn how to install Windows Updates with PowerShell.Table of contentsInstall PSWindowsUpdate module1. Set Windows PowerShell Execution Policy2. Install PowerShellGet module3. Install PSWindowsUpdate moduleCheck PSWindowsUpdate commandsFind Windows UpdatesInstall Windows UpdatesInstall Windows Updates on local systemInstall Windows Updates on remote systemsConclusionInstall PSWindowsUpdate moduleTo install PSWindowsUpdate module on your system, follow the steps below.1. Set Windows PowerShell Execution PolicyBy default, we can’t install scripts. To require all PowerShell scripts that you download from the internet are signed by a trusted publisher, run PowerShell as administrator, and run the cmdlet.Set-ExecutionPolicy RemoteSigned -ForceImportant: Close and re-open the elevated Windows PowerShell window to have the changes apply.2. Install PowerShellGet moduleRun the command below to install NuGet Provider. When asked to install NuGet provider, press Y and follow with Enter.Install-Module PowershellGet -ForceIf you get an error that it’s unable to install, read the article Unable to install NuGet provider for PowerShell.3. Install PSWindowsUpdate moduleInstall the PSWindowsUpdate module. Install-Module -Name PSWindowsUpdate -ForceCheck PSWindowsUpdate commandsThe PSWindowsUpdate module comes with many cmdlets and aliases. You can use these to install, uninstall, hide, and unhide Windows Updates, among other things.To get all the cmdlets and aliases, run the command below.Get-Command -Module PSWindowsUpdateThe output below appears.CommandType Name Version Source----------- ---- ------- ------Alias Clear-WUJob 2.2.1.5 PSWindowsUpdateAlias Download-WindowsUpdate 2.2.1.5 PSWindowsUpdateAlias Get-WUInstall 2.2.1.5 PSWindowsUpdateAlias Get-WUList 2.2.1.5 PSWindowsUpdateAlias Hide-WindowsUpdate 2.2.1.5 PSWindowsUpdateAlias Install-WindowsUpdate 2.2.1.5 PSWindowsUpdateAlias Show-WindowsUpdate 2.2.1.5 PSWindowsUpdateAlias UnHide-WindowsUpdate 2.2.1.5 PSWindowsUpdateAlias Uninstall-WindowsUpdate 2.2.1.5 PSWindowsUpdateCmdlet Add-WUServiceManager 2.2.1.5 PSWindowsUpdateCmdlet Enable-WURemoting 2.2.1.5 PSWindowsUpdateCmdlet Get-WindowsUpdate 2.2.1.5 PSWindowsUpdateCmdlet Get-WUApiVersion 2.2.1.5 PSWindowsUpdateCmdlet Get-WUHistory 2.2.1.5 PSWindowsUpdateCmdlet Get-WUInstallerStatus 2.2.1.5 PSWindowsUpdateCmdlet Get-WUJob 2.2.1.5 PSWindowsUpdateCmdlet Get-WULastResults 2.2.1.5 PSWindowsUpdateCmdlet Get-WUOfflineMSU 2.2.1.5 PSWindowsUpdateCmdlet. max. 100 machines: USD 449 WuInstall PRO Basic max. 250 machines: USD 679 WuInstall PRO Small max. 500 machines: USD 1090 WuInstall PRO Medium max. 1000 machines: USD 1690 WuInstall PRO Large max. 2025 machines: USD 2790 WuInstall PRO Corporate max. 4000 machines: USD 4890 WuInstall PRO Enterprise max. 100 machines: USD 390 WuInstall PRO Basic max. 250 machines: USD 590 WuInstall PRO Small max. 500 machines: USD 950 WuInstall PRO Medium max. 1000 machines: USD 1490 WuInstall PRO Large max. 2025 machines: USD 2490 WuInstall PRO Corporate max. 4000 machines: USD 4390 WuInstall PRO EnterpriseWuInstall - WuInstall - Displaying items by tag: Windows Update
Redmi K20 Pro/Mi 9T Pro (raphael) MIUI Downloads Home MIUI Redmi K20 Pro/Mi 9T Pro MIUI Official ROMs ArchiveNote: All files listed here are official untouched MIUI ROMs. It’s not owned, modified or modded by XM Firmware Updater. Device Branch Type MIUI Android Size Date Link Redmi K20 Pro ChinaWeeklyRecovery21.11.2411.02.8 GB2021-11-25DownloadRedmi K20 Pro ChinaWeeklyRecovery21.11.1711.02.8 GB2021-11-18DownloadRedmi K20 Pro ChinaWeeklyRecovery21.11.1011.02.8 GB2021-11-11DownloadRedmi K20 Pro ChinaStableRecoveryV12.5.6.0.RFKCNXM11.02.9 GB2021-11-09DownloadRedmi K20 Pro ChinaStableFastbootV12.5.6.0.RFKCNXM11.04.3 GB2021-10-25DownloadRedmi K20 Pro ChinaWeeklyRecovery21.11.311.02.8 GB2021-11-04DownloadRedmi K20 Pro ChinaWeeklyRecovery21.10.2711.02.8 GB2021-10-28DownloadRedmi K20 Pro ChinaWeeklyRecovery21.10.2011.02.8 GB2021-10-21DownloadRedmi K20 Pro ChinaWeeklyRecovery21.10.1311.02.8 GB2021-10-14DownloadRedmi K20 Pro ChinaWeeklyRecovery21.9.2811.02.8 GB2021-09-29DownloadRedmi K20 Pro ChinaWeeklyRecovery21.9.2211.02.8 GB2021-09-23DownloadRedmi K20 Pro ChinaWeeklyRecovery21.9.1511.02.8 GB2021-09-16DownloadRedmi K20 Pro ChinaWeeklyRecovery21.9.811.02.8 GB2021-09-09DownloadRedmi K20 Pro ChinaWeeklyRecovery21.9.111.02.8 GB2021-09-02DownloadRedmi K20 Pro ChinaWeeklyRecovery21.8.2511.02.8 GB2021-08-26DownloadRedmi K20 Pro ChinaWeeklyRecovery21.8.1811.02.8 GB2021-08-19DownloadMi 9T Pro GlobalStableRecoveryV12.5.2.0.RFKMIXM11.02.7 GB2021-08-13DownloadMi 9T Pro GlobalStableFastbootV12.5.2.0.RFKMIXM11.03.2 GB2021-08-09DownloadRedmi K20 Pro ChinaWeeklyRecovery21.8.1111.02.8 GB2021-08-12DownloadRedmi K20 Pro ChinaWeeklyRecovery21.8.411.02.8 GB2021-08-05DownloadRedmi K20 Pro ChinaStableRecoveryV12.5.5.0.RFKCNXM11.02.8 GB2021-07-30DownloadRedmi K20 Pro ChinaStableFastbootV12.5.5.0.RFKCNXM11.04.0 GB2021-07-22DownloadRedmi K20 Pro ChinaWeeklyRecovery21.7.2811.02.8 GB2021-07-29DownloadRedmi K20 Pro ChinaWeeklyRecovery21.7.2111.02.8 GB2021-07-22DownloadRedmi K20 Pro ChinaWeeklyRecovery21.7.1411.02.8 GB2021-07-15DownloadRedmi K20 Pro ChinaWeeklyRecovery21.7.711.02.8 GB2021-07-08DownloadMi 9T Pro RussiaStableRecoveryV12.5.1.0.RFKRUXM11.02.7 GB2021-07-15DownloadMi 9T Pro RussiaStableFastbootV12.5.1.0.RFKRUXM11.03.3 GB2021-07-06DownloadRedmi K20 Pro IndiaStableRecoveryV12.5.1.0.RFKINXM11.02.5 GB2021-07-09DownloadRedmi K20 Pro IndiaStableFastbootV12.5.1.0.RFKINXM11.03.0 GB2021-06-29DownloadMi 9T Pro EEAStableRecoveryV12.5.1.0.RFKEUXM11.02.7 GB2021-07-06DownloadMi 9T Pro EEAStableFastbootV12.5.1.0.RFKEUXM11.03.3 GB2021-06-26DownloadRedmi K20 Pro ChinaWeeklyRecovery21.6.3011.02.8 GB2021-07-01DownloadRedmi K20 Pro IndiaStableRecoveryV12.0.6.0.QFKINXM10.02.5 GB2021-06-30DownloadRedmi K20 Pro IndiaStableFastbootV12.0.6.0.QFKINXM10.03.0 GB2021-06-27DownloadRedmi K20 Pro ChinaWeeklyRecovery21.6.2311.02.8 GB2021-06-24DownloadRedmi K20 Pro ChinaWeeklyRecovery21.6.1611.02.8 GB2021-06-17DownloadMi 9T Pro GlobalStableRecoveryV12.0.6.0.QFKMIXM10.02.5 GB2021-06-12DownloadMi 9T Pro GlobalStableFastbootV12.0.6.0.QFKMIXM10.03.0 GB2021-06-10DownloadRedmi K20 Pro ChinaWeeklyRecovery21.6.911.02.8 GB2021-06-10DownloadRedmi K20 Pro ChinaWeeklyRecovery21.6.211.02.8 GB2021-06-03DownloadMi 9T Pro GlobalStableRecoveryV12.5.1.0.RFKMIXM11.02.6 GB2021-06-17DownloadMi 9T Pro GlobalStableFastbootV12.5.1.0.RFKMIXM11.03.2 GB2021-06-10DownloadRedmi K20 Pro ChinaWeeklyRecovery21.5.1211.02.8 GB2021-05-13DownloadRedmi K20 Pro ChinaWeeklyRecovery21.4.2911.02.8 GB2021-04-30DownloadMi 9T Pro EEAStableRecoveryV12.0.5.0.QFKEUXM10.02.5 GB2021-04-25DownloadMi 9T Pro EEAStableFastbootV12.0.5.0.QFKEUXM10.03.1 GB2021-04-14DownloadRedmi K20 Pro ChinaWeeklyRecovery21.4.2111.02.8 GB2021-04-22DownloadRedmi K20 Pro ChinaWeeklyRecovery21.4.1411.02.8 GB2021-04-15DownloadRedmi K20 Pro ChinaWeeklyRecovery21.4.711.02.8 GB2021-04-08DownloadRedmi K20 Pro IndiaStableRecoveryV12.0.5.0.QFKINXM10.02.5 GB2021-03-31DownloadRedmi K20 Pro IndiaStableFastbootV12.0.5.0.QFKINXM10.03.0 GB2021-03-15DownloadRedmi K20 Pro ChinaWeeklyRecovery21.3.2511.02.8 GB2021-03-26DownloadRedmi K20 Pro ChinaStableRecoveryV12.5.4.0.RFKCNXM11.02.8 GB2021-05-27DownloadRedmi K20 Pro ChinaStableFastbootV12.5.4.0.RFKCNXM11.04.0 GB2021-05-21DownloadRedmi K20 Pro ChinaWeeklyRecovery21.3.1711.02.8 GB2021-03-18DownloadRedmi K20 Pro ChinaWeeklyRecovery21.3.1011.02.8 GB2021-03-11DownloadRedmi K20 Pro ChinaWeeklyRecovery21.3.311.02.8 GB2021-03-04DownloadMi 9T Pro GlobalStableRecoveryV12.0.5.0.QFKMIXM10.02.6 GB2021-03-04DownloadMi 9T Pro GlobalStableFastbootV12.0.5.0.QFKMIXM10.03.1 GB2021-02-24DownloadRedmi K20 Pro ChinaWeeklyRecovery21.2.2411.02.8 GB2021-02-25DownloadRedmi K20 Pro ChinaWeeklyRecovery21.2.311.02.8 GB2021-02-04DownloadRedmi K20 Pro ChinaWeeklyRecovery21.1.2811.02.8 GB2021-01-28DownloadMi 9T Pro EEAStableRecoveryV12.0.4.0.QFKEUXM10.02.6 GB2021-01-25DownloadMi 9T Pro EEAStableFastbootV12.0.4.0.QFKEUXM10.03.1 GB2021-01-15DownloadMi 9T Pro GlobalStableRecoveryV12.0.4.0.QFKMIXM10.02.6 GB2021-01-22DownloadMi 9T Pro GlobalStableFastbootV12.0.4.0.QFKMIXM10.03.1 GB2021-01-15DownloadRedmi K20 Pro ChinaWeeklyRecovery21.1.2011.0234.0 MB2021-01-21DownloadRedmi K20 Pro ChinaWeeklyRecovery21.1.1411.02.8 GB2021-01-14DownloadRedmi K20 Pro ChinaWeeklyRecovery21.1.611.02.8 GB2021-01-07DownloadRedmi K20 Pro ChinaWeeklyRecovery20.12.2811.02.7 GB2020-12-29DownloadRedmi K20 Pro IndiaStableRecoveryV12.0.4.0.QFKINXM10.02.5 GB2020-12-26DownloadRedmi K20 Pro IndiaStableFastbootV12.0.4.0.QFKINXM10.03.0 GB2020-12-21DownloadRedmi K20 Pro ChinaStableRecoveryV12.0.6.0.QFKCNXM10.02.7 GB2020-12-18DownloadRedmi K20 Pro ChinaStableFastbootV12.0.6.0.QFKCNXM10.03.7 GB2020-12-09DownloadRedmi K20 Pro ChinaWeeklyRecovery20.12.910.02.8 GB2020-12-10DownloadRedmi K20 Pro ChinaWeeklyRecovery20.12.210.02.8 GB2020-12-03DownloadRedmi K20 Pro ChinaWeeklyRecovery20.11.2510.02.8 GB2020-11-26DownloadRedmi K20 Pro ChinaWeeklyRecovery20.11.1810.02.8 GB2020-11-19DownloadRedmi K20 Pro ChinaWeeklyRecovery20.11.1110.02.8 GB2020-11-12DownloadRedmi K20 Pro ChinaWeeklyRecovery20.11.510.02.8 GB2020-11-05DownloadRedmi K20 Pro ChinaWeeklyRecovery20.10.3010.02.8 GB2020-10-30DownloadRedmi K20 Pro ChinaWeeklyRecovery20.10.2910.02.8 GB2020-10-29DownloadMi 9T Pro GlobalStableRecoveryV12.0.3.0.QFKMIXM10.02.6 GB2020-10-26DownloadMi 9T Pro GlobalStableFastbootV12.0.3.0.QFKMIXM10.03.1 GB2020-10-21DownloadMi 9T Pro EEAStableRecoveryV12.0.3.0.QFKEUXM10.02.6 GB2020-10-26DownloadMi 9T Pro EEAStableFastbootV12.0.3.0.QFKEUXM10.03.1 GB2020-10-21DownloadRedmi K20 Pro ChinaWeeklyRecovery20.10.2210.02.7 GB2020-10-22DownloadRedmi K20 Pro ChinaStableRecoveryV12.0.5.0.QFKCNXM10.02.6 GB2020-10-18DownloadRedmi K20 Pro ChinaStableFastbootV12.0.5.0.QFKCNXM10.03.7 GB2020-10-12DownloadRedmi K20 Pro ChinaWeeklyRecovery20.10.1510.02.7 GB2020-10-15DownloadRedmi K20 Pro ChinaStableRecoveryV12.0.4.0.QFKCNXM10.02.6 GB2020-09-29DownloadRedmi K20 Pro ChinaStableFastbootV12.0.4.0.QFKCNXM10.03.7 GB2020-09-21DownloadRedmi K20 Pro ChinaWeeklyRecovery20.9.2410.02.7 GB2020-09-24DownloadMi 9T Pro RussiaStableRecoveryV12.0.2.0.QFKRUXM10.02.6 GB2020-09-23DownloadMi 9T Pro RussiaStableFastbootV12.0.2.0.QFKRUXM10.03.1 GB2020-09-07DownloadRedmi K20 Pro IndiaStableRecoveryV12.0.3.0.QFKINXM10.02.4 GB2020-09-21DownloadRedmi K20 Pro IndiaStableFastbootV12.0.3.0.QFKINXM10.02.9 GB2020-09-07DownloadRedmi K20 Pro ChinaWeeklyRecovery20.9.1710.02.7 GB2020-09-17DownloadRedmi K20 Pro ChinaWeeklyRecovery20.9.1010.02.7 GB2020-09-10DownloadRedmi K20 Pro ChinaWeeklyRecovery20.9.310.02.7 GB2020-09-03DownloadRedmi K20 Pro ChinaWeeklyRecovery20.8.2710.02.7 GB2020-08-27DownloadRedmi K20 Pro ChinaWeeklyRecovery20.8.2010.02.7 GB2020-08-20DownloadRedmi K20 Pro ChinaWeeklyRecovery20.8.1310.02.7 GB2020-08-14DownloadMi 9T Pro GlobalStableRecoveryV12.0.2.0.QFKMIXM10.02.5 GB2020-08-12DownloadMi 9T Pro GlobalStableFastbootV12.0.2.0.QFKMIXM10.03.0 GB2020-07-31DownloadMi 9T Pro EEAStableRecoveryV12.0.2.0.QFKEUXM10.02.5 GB2020-08-11DownloadMi 9T Pro EEAStableFastbootV12.0.2.0.QFKEUXM10.03.1 GB2020-07-31DownloadRedmi K20 Pro ChinaWeeklyRecovery20.8.610.02.7 GB2020-08-06DownloadRedmi K20 Pro ChinaWeeklyRecovery20.7.3010.02.7 GB2020-07-30DownloadMi 9T Pro RussiaStableRecoveryV12.0.1.0.QFKRUXM10.02.6 GB2020-07-27DownloadMi 9T Pro RussiaStableFastbootV12.0.1.0.QFKRUXM10.03.1 GB2020-07-17DownloadRedmi K20 Pro ChinaWeeklyRecovery20.7.2310.02.7 GB2020-07-23DownloadRedmi K20Comments
WuInstall is a command-line tool that gives you back control when to install Windows updates. It thereby offers you the agility to react as fast as possible when a new, important security update becomes available. ContentsBasic operationFinding and installing updatesCentralized cacheControl over reboot cycleWrap-up Many of you probably use Windows Server Update Services (WSUS) for patch management in your domains. WSUS, along with Group Policy, gives you the ability to: Download Windows Updates to a central repository on your LANSelectively approve or reject updatesSchedule deployment to your server and workstation nodesThe WSUS approach, whether deployed on its own or orchestrated through System Center Configuration Manager, is a tried-and-true formula that suffers from one fatal flaw: a lack of agility.Think of the recent WannaCry ransomware attack, for example. Microsoft released a fix to the underlying Windows operating system vulnerability in March for current Windows Server and Client versions, and they even released an out-of-band special update for legacy Windows versions.In a case like this, you need the ability to download and patch systems as quickly as possible. This agility is one feature you get with HS2N WuInstall, a command-line client that gives Windows systems administrators lightning-fast control over the Windows Update cycle.Basic operationGo ahead and download a 30-day free trial at the WuInstall web site. Don't be shocked when you open the ZIP archive and see only executables. There is no installation because this is simply a monolithic command-line tool! There are three binaries:exe: 32-bit digitally signed executableexe: 32-bit, no digital signatureexe: 64-bit digitally signed executableFor convenience, I suggest that you: Rename exe to wuinstall.exe for convenience.Modify your administrative workstation's PATH environment variable to include the path to the exe binary. This way you can call wuinstall from anywhere in the file system at a command prompt; I show this in the next screenshot.Add wuinstall.exe to your system PATHNow open an administrative PowerShell console and type wuinstall. As shown in the following screenshot, you'll see the WUInstall splash screen. Now press Usage and take note: that's the command's full syntax. Of course, you can always hit the documentation.Viewing WUInstall command syntaxRun the following command to dump the help contents to a text file for easier study:wuinstall --help > .\wuinstallhelp.txtFinding and installing updatesBefore we go any further, let me be clear: WuInstall works either with or without WSUS. You'll want to make sure you have clearance in your IT department before you use WuInstall to override WSUS, however.Okay, that said, let's run a search for available Windows updates:wuinstall --searchThe above command will query the local host's configured WSUS server. If it detects no WSUS server, the output will say "You have no WSUS Server configured" and will query Microsoft Update.If you want
2025-04-07To bypass WSUS, run this command: wuinstall --search --bypass_wsusNote that the bypass remains in effect only for the duration of the current command.Searching Windows updates with WuInstallHere is partial output from when I ran a search on a Windows Server 2016 domain member server:Searching for updates ... Criteria: IsInstalled=0 and Type='Software'Result Code: Succeeded1 Update found in total, filtering ...1. Microsoft .NET Framework 4.7 for Windows 10 Version 1607 and Windows Server 2016 for x64 (KB3186568) Severity: Unknown UpdateClassification - Feature Packs Product - Windows Server 2016 ID: ac3ad46a-f129-4ee7-bd4d-360385e87a1a Releasedate: 2017-06-22 Size (MB): 67.05 Eula Accepted: trueonly /search was specified, stopping here!That final output line is significant; the --search switch only queries the update source but does not download anything.Check the documentation, because you can add criteria for closer matches. For example, the following command searches WSUS or Microsoft Update for driver updates not already installed:wuinstall /search /criteria "Type='Driver' and IsInstalled=0"NOTE: You'll notice in the documentation that WUInstall parameters can use either a Linux-style double-dash (--) or the Windows-style slash (/).Or we can target a specific Microsoft Knowledge Base (KB) number:wuinstall /search /match "KB3186568"We can download updates to a local or network share directory by invoking the /download_to parameter:wuinstall.exe /search /match "KB3186568" /download_to "C:\temp"And then we can install one or more updates; if you don't specify a download location, WUInstall simply downloads the file and runs it.wuinstall.exe /search /match "KB3186568" /installThink of how useful WUInstall would be to deploy KB fixes quickly to address terrible malware outbreaks like WannaCry!Installing updatesCentralized cacheWUInstall works fundamentally differently from WSUS and Group Policy because the latter uses a client pull model. By contrast, you can script WUInstall to push Windows Updates to clients whenever you need to do so.The WUInstall central cache feature gives non-WSUS businesses some of the bandwidth-saving goodness of WSUS by storing Windows Updates in a central location.Here I define my E:\updates (shared as \\dc1\updates) as a central cache and download/populate any updates within it:wuinstall /download_cache \\dc1\updatesIf you want another client to install its updates from the cache, run the following command:wuinstall /install_cache \\dc1\updatesBy the way, if this second client needs updates that the initial station did not, then the second node will populate the shared cache with those new updates. Very cool!Control over reboot cycleOne of the major annoyances that both end users and systems administrators share is Windows' tendency to restart automatically after applying certain Windows Updates. WUInstall gives you control over the update/restart cycle.For example, if you know in advance that a restart is required, you can force the post-installation action with a 10-second default delay. Of course, the value is customizable:wuinstall /install /reboot 30You can also specify that the system restart only if necessary and set a limit
2025-03-26For you to try out.Free patch manager softwareWith a patch manager you can create new patch management policies and different patching schedules for different groups for the various workstations and end-users in your company and also for third-party applications. ManageEngine Patch Manager Plus Free is a complete patch tool. There are various other free patch manager available for different purposes, for example Freshservice, which is a service desk API for developers, PDQ Deploy Free, a software deployment software, Comodo, which is a network security system, or ManageEngine Desktop Central, a unified endpoint management solution (UEM), just to name a few. Have a look at the various offers and see which one of the Windows patching tools works best for you. You can also get a free trial with WuInstall.Windows server patching and WSUS patch managementWSUS patch management is a software that lets you manage and distribute updates through a management console. You can use WSUS patching to fully manage how the Windows updates that are released through Microsoft Update are distributed to the machines on your network. As an administrator, you can determine how many other WSUS servers should directly connect to Microsoft Update. You can use WSUS for centralized Microsoft patch management and for automated patch management. You can find more about WSUS on our website.Windows patch management with WuInstallMicrosoft does not deliver a command line tool for patch management with its software updates. This is why we developed WuInstall. For Windows patch management you can use the management software WuInstall which makes it possible to install Windows Updates on demand. The use of the Windows patch management software WuInstall gives you full control over the whole patching process of Windows patch management. Depending on the configuration of your system, the management software WuInstall either uses the internal WSUS server, or the management software uses the external Microsoft Update Server in order to look for available software updates. After that, the Windows updates can be downloaded and installed. You can find more on WuInstall on our website.Cloud Patch Management with XEOXXEOX Patch Management is an administrator's control over operating system, platform or application updates. It includes identifying system features that can be improved or corrected, creating those improvements or fixes, releasing the update package, and verifying the installation of those updates. XEOX's comprehensive patch management automation software saves time and improves patch compliance. With XEOX, you have full control over patching processes for the enterprise, site and all devices. Minimize your time by using automated scanning and patching capabilities and keep your endpoints secure. XEOX fills the gaps in the Microsoft operating system by constantly checking for missing patches. This is important, because without these patches you run the risk of losing the security of your devices and becoming more vulnerable to hacker attacks. If you use XEOX, this risk can be minimized.
2025-04-21An autonomous patch management tool. It’s an app that lets you load a list of computers, and then kick off the Windows update installation and reboot process on all of them, simultaneously.BatchPatch was designed to be simple and intuitive. No installation necessary– just launch the EXE and you’re ready to go! You start by loading a list of computer names, IP addresses or MAC addresses. Then highlight one, some, or all rows in the grid to perform actions on just the selected hosts. Either right-click on the currently selected rows or use the Actions menu to select an action to perform.5. Kaseya VSA With Kaseya VSA, you can define all aspects of your monitoring and alerting policies, and create these policies based on any and all dimensions you want – by the client, department, asset type, user – depending based on what makes sense for your business. You can also define alerts that tell you before a problem impacts an end-user. For example, monitor devices for disk defragmentation – and even set up rules to automatically defrag at a time that has the least impact on the business.6. WuInstall WuInstall is a command-line tool for Windows which enables you to install Windows updates for a certain workstation in a controlled way, by using a command-line script instead of the standard Windows update functionality. It allows administrators to update several workstations at once (e.g. run WuInstall in shutdown scripts) or workstations of users who turned off Windows Automatic Updates.WuInstall uses the Windows update API and searches, either at the internal WSUS server or on the external Microsoft Update Server (depending on system configuration), for currently available updates for the certain workstation. The tool downloads and/or installs the found updates.Do you need more than a command line tool? Check out XEOX!
2025-03-29The release date is before the given date eq: updates where the release date is equals to the given date gt: updates where the release date is after the given dateExample: WUInstall.exe /search /releasedate lt:2014-05-06You will get following output: 3 Updates found in total, filtering ...Listing those where release date lt 2014-05-061. Microsoft Visual Studio 2010 Service Pack 1 Severity: Unknown UpdateClassification - Service Packs Product - Visual Studio 2010 ID: 230b82d1-3abd-471a-a4f9-23f97fb857d9 Releasedate: 2012-04-05 Eula Accepted: trueThe second way to use this options is to specify a number of days. This only lists all updates with release date after today minus the given days.Example:WUInstall.exe /search /releasedate -10This will list all updates which are not older than 10 days:3 Updates found in total, filtering ...Listing those with release date after 2014-04-261. Definition Update for Windows Defender - KB2267602 (Definition 1.173.1428.0) Severity: Unknown UpdateClassification - Definition Updates Product - Windows Defender ID: 4f25e1f8-186e-4d0b-b18c-6dab7c081c09 Releasedate: 2014-05-06 Eula Accepted: true /maxUpdateCount numberThis update specifies the maximal number of updates which are handled by a WuInstall call.If there are more updates available, only the first updates up to the given number are handled./updateSize [lt|gt]:Size(KB|MB|GB) | bt:MinSize(KB|MB|GB)-MaxSize(KB|MB|GBUse this option to filter for updates which have a download size lower, greater or between the specified size./maxTotalSize Size(KB|MB|GB) | /maxPayloadThis option sets a maximum accumulated size for all updates. WuInstall will iterate through the list of found updates and only those where the accumulated size is lower than specified.
2025-04-24This file as the nomatchfile.For example, create the file "exclude.txt" with the following content:WindowsMicrosoft925673OfficeThe exclude entries are separated with a new line. The file has to be either in UTF-8, ANSI or DOS character set. UTF-16 is not supported.If you typeWUInstall.exe /search /nomatchfile c:\exclude.txt WuInstall puts out for example the following result list:95 Updates found in total, filtering ...Listing those NOT matching search expressions in file: 'c:\exclude.txt'1. Update for Business Contact Manager for Outlook 2007 (KB946140) Severity: Unknown UpdateClassification - Critical Updates Product - Office 20072. Security Update for SQL Server 2005 Service Pack 3 (KB970892) Severity: Critical UpdateClassification - Security Updates Product - SQL Server 20053. Update Rollup 10 for Exchange Server 2007 Service Pack 1 (KB981407) Severity: Unknown Product - Exchange Server 2007 UpdateClassification - Update Rollups/isdownloaded 1|0This options filters updates, which have already been downloaded to the local cache.You can call for example WuInstall with the /download options combined with some filters to download all available updates: 30 Updates found in total, filtering ...Listing those matching search expression: 'Greek'1. Greek Language Pack - Windows 7 (KB972813) Severity: Unknown UpdateClassification - Updates Product - Windows 7 Language PacksDownloading updates ...Downloading Greek Language Pack - Windows 7 (KB972813):and then later use:WUInstall.exe /install /isdownloaded 1You will get following output: 30 Updates found in total, filtering ...Listing only updates which are already downloaded1. Greek Language Pack - Windows 7 (KB972813) Severity: Unknown UpdateClassification - Updates Product - Windows 7 Language PacksDeleting updates manually from the local download cache (usually Windows\SoftwareDistribution\Download) might cause this option to work incorrectly, because even deleted they are still considered downloaded. /releasedate [lt|eq|gt]:[YYYY-MM-DD] or [-#Days] This option filters updates by their release date and can be used in two different ways: First with lt, eq or gt followed by the date you will filter. lt: updates where
2025-04-11