Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Tech News
  • Contact
  • Toggle search form

Retrieve Recent Windows Update: How to create batch script files

Posted on 01/07/202324/10/2024 Matthew By Matthew No Comments on Retrieve Recent Windows Update: How to create batch script files
  1. Home
  2. Scripts
  3. Retrieve Recent Windows Update: How to create batch script files
Featured image_batch file
How to create batch script files on Windows 11

In this guide, we’ll explore different ways to create and Retrieve Recent Windows Update: How to create batch script files on Windows 11. Please see How to use Command-Line on Git Bash and GitHub Desktop to PUSH local code to GitHub, and How to Upload Batch Files to Azure Storage Account Using Azure CLI. Batch files, which typically end with a “.bat” extension, are text files containing multiple commands that can be executed in sequence from the Command Prompt.

They are handy on Windows 11 for making system changes, querying system information, automating routines, and launching apps.

Using batch files can save you time, reduce errors, and simplify the process of executing commands or performing specific actions. While PowerShell allows for more comprehensive scripts, batch files executed on the Command Prompt are still valuable for a wide range of tasks due to their simplicity and ease of creation.

Here are other related guides that you will find interesting: Batch rename multiple files on Windows, How to Rename or Move a File or Directory in Linux – Bash Terminal Command, Linux Shell Scripting: How to write a Shell Script that Counts Lines and Words in a File,

How to Create Batch Files on Windows 11

Creating batch files is a straightforward process that only requires basic Command Prompt skills and any text editor like Notepad or Visual Studio Code. Let’s look at some examples to illustrate this. Here is a detailed guide on how to Batch rename multiple files on Windows.

Compose a Basic Batch File

To create a basic batch file on Windows 11, follow these steps. Open the Start menu, search for Notepad and click on the top result to open the text editor.

Open Notepad
Open Notepad

Type the following lines of code in the text file:

@ECHO OFF
ECHO Hi, using batch file to simplify tasks on Windows 11.
PAUSE

Click the “File” menu and select the “Save as” option.

Copy and Paste Batch script in Notepad.
Copy and Paste Batch script in Notepad

Choose a name for the script, such as “test_batch.bat” then save the file.

Save batch file
Save batch file

After completing these steps, double-click the file to run the script. It will automatically display a command prompt with the message “Hi, using batch file to simplify tasks on Windows 11.” on the screen.

Command Prompt Display
Command Prompt Display

Batch files are typically saved with the “.bat” extension, but you can also use “.cmd” or “.btm”.

Compose an Advanced Batch File:

For a more advanced batch script, follow these steps:

Open the Start menu, search for Notepad and open the text editor.

Open Notepad
Open Notepad

Retrieve Recent Windows Update

Type the following lines in the text file to retrieve information about the most recent Windows update installation.

@echo off

REM Retrieve information about the most recent Windows update installation

echo Retrieving information about the most recent Windows update installation...

echo.

REM Query the Windows Update history using WMIC (Windows Management Instrumentation Command-line)

wmic qfe get HotFixID, InstalledOn /format:list | findstr /i /c:"KB"

REM Display the installation date of the updates

echo.

echo Installed Updates:

echo.

REM Iterate through the output and display the HotFix ID and installation date

for /f "skip=1 tokens=1,2 delims=|" %%G in ('wmic qfe get HotFixID^,InstalledOn /format:table') do (

    echo %%G | findstr /i /c:"KB" >nul

    if not errorlevel 1 (

        echo HotFix ID: %%G

        echo Installed On: %%H

        echo.

    )

)

echo.

pause

Click the File menu and select the Save as option.

Copy and paste script in Notepad
Copy and paste script in Notepad

Choose a name for the script, such as “update_info.bat.” Then save the file.

Save the batch file
Save the batch file

Running this batch file will display both the HotFix ID and the installation date of the Windows updates.

Update info display in Command Prompt
Update info display in Command Prompt

The output will list the installed updates along with their respective installation dates.

How to Run Batch Files on Windows 11

You can run batch files in three different ways on Windows 11: from Command Prompt, File Explorer, or automatically during startup.

Run Script from Command Prompt:

To run a batch file from Command Prompt, follow these steps:

Open the Start menu, search for Command Prompt, right-click the top result, and select the Run as administrator option.

Open Command Prompt
Open Command Prompt

Navigate to the path where the batch file is saved and press Enter:

E.g. cd C:\Users\Account\Folder\test_batch.bat

After executing these steps, the batch file will run, and the results will be displayed in the console.

Run batch script from Command Prompt
Run batch script from Command Prompt

Since you opened Command Prompt manually, the window won’t close automatically unless the script includes the “Pause” option.

Run Script from File Explorer:

To run a script file from File Explorer, follow these steps:

Open File Explorer, browse to the folder containing the batch file. Right-click the file and select the Open option.

Run batch file from explorer
Run batch file from explorer

If elevation is required, right-click the file and select the “Run as administrator” option.

After running the script, the window will either remain open or close automatically, depending on whether you included the “Pause” option.

Run Script at Startup:

To run a batch file automatically at startup, follow these steps:

Navigate to the folder containing the batch file, right-click the file and select the Copy option or simply use the shortcut key “Ctrl + C“.

Copy batch file
Copy batch file

Type “shell:startup” in the address bar and press Enter.

Startup app folder
Startup app folder

Press “Ctrl + V” shortcut key to paste the batch file in the Startup folder.

Startup Update info
Startup Update info

After completing these steps, Windows 11 will run the batch file every time the computer starts, and the user logs into the account.

Conclusion

By following these instructions, you can easily create and run batch files on Windows 11, enabling you to perform various tasks efficiently, automate routines, and customize system settings to suit your needs.

I hope you found this article on how to Retrieve Recent Windows Update: How to create batch script files on Windows 11 helpful. In case you have any questions do not hesitate to ask in the comment section.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Scripts, Windows Tags:Microsoft Windows, Windows 10, Windows 11, Windows Server 2016

Post navigation

Previous Post: How to remove malware using Microsoft Safety Scanner on Windows 10 and 11
Next Post: How to Back Up and Restore the Windows Registry

Related Posts

  • Convert PEM to PPK 1
    Convert a PEM Key to a PPK Key on a Linux and Windows AWS/Azure/OpenShift
  • screenshot 2020 03 14 at 16.23.23
    Change Windows Desktop icon shortcut for fast user switching Windows
  • windows 10 bjw3 1280x720 1
    How to Find the Pathname of a Mapped Network Drive Windows
  • update powershell in Windows
    Upgrade PowerShell Core Windows or Mac and Linux System Windows
  • Featured image bootable USB
    Create a Windows 10 or 11 bootable USB with UEFI support Windows
  • Screenshot 2020 12 06 at 17.44.32
    Windows cannot connect to the printer: Operation Failed with error 0x000004f8 Windows

More Related Articles

Convert PEM to PPK 1 Convert a PEM Key to a PPK Key on a Linux and Windows AWS/Azure/OpenShift
screenshot 2020 03 14 at 16.23.23 Change Windows Desktop icon shortcut for fast user switching Windows
windows 10 bjw3 1280x720 1 How to Find the Pathname of a Mapped Network Drive Windows
update powershell in Windows Upgrade PowerShell Core Windows or Mac and Linux System Windows
Featured image bootable USB Create a Windows 10 or 11 bootable USB with UEFI support Windows
Screenshot 2020 12 06 at 17.44.32 Windows cannot connect to the printer: Operation Failed with error 0x000004f8 Windows

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • edge7
    How to enable Adblocker on Microsoft Edge Windows
  • Featured image   change default mail app
    How to change Windows 11 and 10 default mail app to Outlook Windows
  • header picture
    Creating and Deploying Docker Registry Using Docker Image AWS/Azure/OpenShift
  • fixzoomaudioissue
    How to fix unable to access microphone on Zoom JIRA|Confluence|Apps
  • Featured image 1
    How to Share Microsoft Outlook Calendar on Desktop and on Web Microsoft Exchange/Office/365
  • Windows 11 New Security Features
    Smart App Control: Enabling Phishing Protection in Windows 11 Windows
  • slide10
    Add Dynamic Wallpaper controlled by time on Windows 10 and 11 Windows
  • Screenshot
    How to configure Synology Active Insights Network | Monitoring

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,779 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.