• About Us
  • Announce
  • Privacy Policy
  • Contact us
MasterTrend News
  • HOME
    • BLOG
    • STORE
  • Tutorials
  • Hardware
  • Gaming
  • Mobiles
  • Security
  • Windows
  • AI
  • Software
  • Networks
  • News
  • English English
    • Spanish Spanish
    • Portuguese Portuguese
    • French French
    • Italian Italian
    • German German
    • Korean Korean
    • Japanese Japanese
    • Chinese Chinese
    • Russian Russian
    • Thai Thai
    • Polish Polish
    • Turkish Turkish
    • Indonesian Indonesian
    • Hindi Hindi
    • Arabic Arabic
    • Swedish Swedish
    • Dutch Dutch
No result
See all results
  • HOME
    • BLOG
    • STORE
  • Tutorials
  • Hardware
  • Gaming
  • Mobiles
  • Security
  • Windows
  • AI
  • Software
  • Networks
  • News
  • English English
    • Spanish Spanish
    • Portuguese Portuguese
    • French French
    • Italian Italian
    • German German
    • Korean Korean
    • Japanese Japanese
    • Chinese Chinese
    • Russian Russian
    • Thai Thai
    • Polish Polish
    • Turkish Turkish
    • Indonesian Indonesian
    • Hindi Hindi
    • Arabic Arabic
    • Swedish Swedish
    • Dutch Dutch
No result
See all results
MasterTrend News
No result
See all results
Start Security

How to Block USB Devices in Windows 11: Prevent Leaks Today! 🔒✨

MasterTrend Insights by MasterTrend Insights
June 5, 2025
in Security
Reading time:Lectura de 7 minutos
TO TO
0
How to Block USB Devices in Windows 11: 5 Easy Steps
50
SHARED
138
Views
Share on FacebookShare on Twitter

Contents

  1. How to Block USB Devices in Windows 11: 5 Easy Steps 🚫💻 
  2. Why block USB devices?
  3. Block all USB devices using Device Manager
  4. Block USB storage devices from PowerShell
  5. Block USB storage devices using the Local Group Policy Editor
  6. Block USB storage devices using Registry Editor
  7. If you can't disable the USB ports using other methods, use the BIOS
    1. Related Posts

How to Block USB Devices in Windows 11: 5 Easy Steps 🚫💻 

If you don't want to use USB devices or USB storage devices, you can block the USB ports on your computer. In Windows 11, you can do this using a graphical method or via the command line. 🚫💻

Why block USB devices?

There are many reasons to block USB devices in Windows 11. It is possible (and quite common) that it is delivered malware via a USB device. In addition, blocking USB devices also helps prevent data transfers (such as someone trying to copy files to or from your machine). A good example of a specialized USB tool designed to steal data is the USB Rubber Ducky. 💼🔒

If you do not use devices USB ports with your machine, it makes sense to keep the ports disabled, as this prevents other users from also being able to use these ports on your computer. You can unlock any USB port you want on your computer. 🔑

Block all USB devices using Device Manager

If you want to disable all USB ports so that no USB devices work on your system, use the tool Device Manager. Note that this method also disables any mouse or USB-enabled keyboard. Just keep in mind that this could be a problem if you don't have an alternative way to control your PC set up. ⚠️

To start, I opened the Windows Search (pressing Windows+S), I typed Device Manager and opened the utility. Expand the “Universal Bus Controllers” section, right-click on a USB port from the list and choose “Deactivate device.” Select “Yes” on the prompt. ✅

If you do not find the “Disable device” option for a USB port, you will need to disable that port using the BIOS, as explained below in this guide. 🔧

"Disable device" highlighted for a USB port in Device Manager.

Repeat the previous step until you have disabled all the ports on the list.

From now on, when you connect a device to any USB port on your machine, your system will not connect to that device. In the future, you can re-enable your USB ports by opening Device Manager, expanding "Universal Bus Controllers," and clicking right on each port in the list and choosing “Enable Device.

Block USB storage devices from PowerShell

If you prefer command line methods, you can use a cmdlet in PowerShell to block all USB storage devices on your PC. Please note that other devices such as keyboards and mice will continue to work. 🔒🖱️

To get started, open Windows Search (by pressing Windows+S), type PowerShell, and select “Run as administrator.” Choose “Yes” at the Control prompt. of user accounts.

In the PowerShell window, type the following cmdlet and press Enter. This cmdlet changes a value in the registry Windows to prevent USB storage devices from working with your machine.

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\USBSTOR" -Name "Start" -Value 4
The cmdlet to disable USB storage devices written in PowerShell.

After running the cmdlet, Restart your Windows 11 PC for the changes to take effect take effect. 🔄

In the future, you can re-enable USB storage devices on your PC by running the following command in PowerShell.

Set-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Services\USBSTOR" -Name "Start" -Value 3

Don't forget to restart your computer after running the command. 🔙

Block USB storage devices using the Local Group Policy Editor

If you are using the Pro edition of Windows 11You can use the Local Group Policy Editor to block USB storage devices. Note that this tool isn't available in the Home edition of Windows 11. 🛠️

To use it, open the Run dialog box by pressing Windows+R. Type the following in the box and select “OK” or press Enter:

gpedit.msc

In the Local Group Policy Editor window, using the options on the left, navigate to the following path. In the right pane, double-click the item that says “All removable storage classes: Deny all access.”

Computer Configuration > Administrative Templates > System > Removable Storage Access
"All removable storage classes: Deny all access" highlighted in Local Group Policy Editor.

In the opened window, at the top, select the “Enabled” option. Then, at the bottom, choose “Apply” and then “OK”. 🎉

"Enabled," "Apply," and "OK" highlighted for an entry in the Local Group Policy Editor.

Close the Local Group Policy Editor and restart your PC. 🔁

In the future, to unblock USB storage devices, double-click the “All removable storage classes: Deny all access” entry, select “Not configured,” then “Apply” followed by “OK.” Make sure to restart your computer afterwards. 🔄

Block USB storage devices using Registry Editor

You can adjust a value in the Windows registry to disable and enable USB storage devices. This method works on both Pro and Home editions of Windows 11. ⚙️🖥️

Do Accidental changes to the Windows registry can cause your system to become unstable. Therefore, makes a backup from the record before making any changes and followed the instructions carefully. ⚠️

To get started, launch Run by pressing Windows+R. Type the following into the box and select “OK” or press Enter:

regedit

Select “Yes” on the User Account Control prompt.

In the Registry Editor, navigate to the following path:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\USBSTOR

In the right pane, double-click on the item that says “Startup.” In the opened window, click on the “Value data” field and type 4. Then select “OK”. The value 4 tells you to Windows not recognizing any USB storage devices. 🛑

"Value data" and "OK" highlighted for "Startup" in Registry Editor.

Close the Registry Editor and restart your PC for the changes to take effect. 🔄💻

To revert your change and unlock the devices USB storage in the future, navigate to the above-mentioned path in the Registry Editor, double-click the "Start" entry, type 3 In the “Value data” field, select “OK,” and restart your PC. 🔄

If you can't disable the USB ports using other methods, use the BIOS

If you don't see the option to disable USB ports in Device Manager, use the menu BIOS setup on your PC to disable those ports. To do this, open Settings, select System > Recovery, click “Restart now” next to Advanced Start, and I chose “Restart Now” from the prompt. 🔄

On the Choose an option page, select Troubleshoot > Advanced options > Troubleshooting settings. UEFI firmware and click “Reboot.” Each BIOS menu is different, but you will find an option labeled USB or something similar. In my Asus laptop, I will go to the “Advanced” tab, choose “USB Settings” and then disable the ports. ⚙️

"USB Configuration" highlighted in BIOS.

When you want to use the ports again, you will have to enable them from the BIOS (since you disabled them from the BIOS). 🔄


And this is how you can prevent USB devices from interacting with your Windows 11 computer. If you are worried. 📸🔒

Share this:
9FacebookLinkedInPinterestXRedditTumblrBlueskyThreadsShare
9
SHARES

Related Articles:

  • Windows 11 Transfers: 7 Tricks to Speed Up Your Transfers NOW!
    Windows 11 Transfers: 7 Tips for Speed…
    Windows 11 Transfers: Discover 7 easy tips to speed up your files and save time. Try them today! 🚀💻
  • Top 10 Free Malware Removal Tools Today!
    Top 10 Free Removal Tools for Windows 10
    Discover free malware removal tools that will save your PC in minutes, Windows 10 or 11. Don't miss out!
  • The Best ADB Commands Every Android User Should Know
    ADB Commands: Activate Secret Features on Your Android 🚀🔓
    ADB commands let you control your Android from your PC, activate hidden options, and optimize your phone with ease. 📲⚙️
  • Speed Up Slow Windows Computer 11 Ways: Fly Now! 🚀
    Speed Up Slow Windows Computer 11 Ways: Fly Now! 🚀
    Speed Up Slow Windows Computer 11 Ways: Revive your PC without spending. Optimize Windows with simple tweaks and advanced tricks. Enjoy…
  • How to Copy Text from Screenshots on Windows 11
    How to Copy Text from Screenshots in Windows 11🖥️✂️
    How to copy text from screenshots in Windows 11 is easier than you think. Learn this method…
  • Spotify Local Files Not Showing Up on Windows 11 Quick Fix
    Spotify Local Files: Not Showing Up on Windows…
    Spotify local files not showing up on Windows 11? Follow these 10 easy tricks and enjoy your music again without…

Related Posts

  • Search engines like Google – Internet search engine
  • Razer introduces gaming innovations: chairs that warm you up! 🔥❄️
  • WP File download search
  • ZOTAC Confirms GeForce RTX 5090 with 32 GB of GDDR7
  • Realtek Rtl8105e
  • Asus X541 X541s X541sa X541sc X541uv X541ua Notebook Keyboard
  • DDR5 Differences with DDR4
  • Best Diagnostic Tools for Windows 10/11
Tags: CybersecurityEvergreen ContentWindows11
Previous Post

WhatsApp Backup Stuck in Progress: Find Out the Trick That Will Help You! 🚀

Next publication

Hide and Change your IP: 9 Foolproof Tricks! 🔒✨

MasterTrend Insights

MasterTrend Insights

Our editorial team shares in-depth reviews, tutorials, and recommendations to help you get the most out of your digital devices and tools.

Next publication
9 Best Ways to Hide and Change Your IP Address (PC, Android and iPhone)

Hide and Change your IP: 9 Foolproof Tricks! 🔒✨

5 2 votes
Article Rating
Subscribe
Access
Notify of
guest
guest
0 Comments
Oldest
Newest Most voted
Online Comments
See all comments

Stay Connected

  • 976 Fans
  • 118 Followers
  • 1.4k Followers
  • 1.8k Subscribers

Don't miss the latest in technology and gaming.
Exclusive tips, how-to guides, and analysis every day.

Subscription Form
  • Tendencies
  • Comments
  • Last
How to add a clock to the Windows 11 desktop: 3 surefire tricks!

How to add a clock to your Windows 11 desktop: Get more done in minutes! ⏱️

May 1, 2025
How to save game in REPO

How to save your game in REPO 🔥 Discover the secret to not losing progress

July 7, 2025
12 Best Alternatives to Lucky Patcher for Android

Lucky Patcher Alternatives: 12 Better and Easy Apps! 🎮⚡

May 12, 2025
How to use AdGuard DNS on Android in 2024

How to use AdGuard DNS on Android in 2025

February 11, 2025
Gmail Features on Android: Save Time with 5 Tips

Gmail Features on Android: 5 Tricks You Didn't Know About! 📱✨

12
Motherboard repair - Repair Motherboards

Notebook Motherboard Repair

10
Install Windows 11 Home without Internet

Install Windows 11 Home without Internet

10
How to Back Up Drivers in Windows 11/10 in 4 Steps!

How to Back Up Drivers in Windows 11/10: Avoid Errors! 🚨💾

10
How to find out DNS server in Windows: Person using PC with on-screen command to find current DNS.

How to Find Your DNS Server: 1 Quick Step 🔍

September 18, 2025
Compressed File Managers in Linux - Person using a Linux desktop with the terminal open, example of compressed file managers in Linux for handling ZIP, TAR, and GZ.

Compressed File Managers on Linux: No More Wine! ✅

September 18, 2025
How to Schedule Downloads in qBittorrent - qBittorrent logo with the text "Schedule Torrent Downloads" embossed, illustration for a guide on how to schedule downloads in qBittorrent.

How to schedule downloads in qBittorrent: trick ⏰⚡

September 17, 2025
Windows 11 Compatibility Mode: Windows 11 monitor showing the Windows XP logo, illustrating running older programs on PC.

Windows 11 Compatibility Mode: Run Games NOW ⚡️

September 17, 2025

Recent News

How to find out DNS server in Windows: Person using PC with on-screen command to find current DNS.

How to Find Your DNS Server: 1 Quick Step 🔍

September 18, 2025
3
Compressed File Managers in Linux - Person using a Linux desktop with the terminal open, example of compressed file managers in Linux for handling ZIP, TAR, and GZ.

Compressed File Managers on Linux: No More Wine! ✅

September 18, 2025
4
How to Schedule Downloads in qBittorrent - qBittorrent logo with the text "Schedule Torrent Downloads" embossed, illustration for a guide on how to schedule downloads in qBittorrent.

How to schedule downloads in qBittorrent: trick ⏰⚡

September 17, 2025
7
Windows 11 Compatibility Mode: Windows 11 monitor showing the Windows XP logo, illustrating running older programs on PC.

Windows 11 Compatibility Mode: Run Games NOW ⚡️

September 17, 2025
5
MasterTrend News logo

MasterTrend Info is your go-to source for technology: discover news, tutorials, and analysis on hardware, software, gaming, mobile devices, and artificial intelligence. Subscribe to our newsletter and don't miss any trends.

Follow us

Browse by Category

  • Gaming
  • Hardware
  • AI
  • Mobiles
  • News
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows

Recent News

How to find out DNS server in Windows: Person using PC with on-screen command to find current DNS.

How to Find Your DNS Server: 1 Quick Step 🔍

September 18, 2025
Compressed File Managers in Linux - Person using a Linux desktop with the terminal open, example of compressed file managers in Linux for handling ZIP, TAR, and GZ.

Compressed File Managers on Linux: No More Wine! ✅

September 18, 2025
  • About Us
  • Announce
  • Privacy Policy
  • Contact us

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

Spanish Spanish
Spanish Spanish
English English
Portuguese Portuguese
French French
Italian Italian
Russian Russian
German German
Chinese Chinese
Korean Korean
Japanese Japanese
Thai Thai
Hindi Hindi
Arabic Arabic
Turkish Turkish
Polish Polish
Indonesian Indonesian
Dutch Dutch
Swedish Swedish
No result
See all results
  • English English
    • Spanish Spanish
    • Portuguese Portuguese
    • French French
    • Italian Italian
    • German German
    • Korean Korean
    • Japanese Japanese
    • Chinese Chinese
    • Russian Russian
    • Polish Polish
    • Indonesian Indonesian
    • Turkish Turkish
    • Hindi Hindi
    • Thai Thai
    • Arabic Arabic
    • Swedish Swedish
    • Dutch Dutch
  • Gaming
  • Hardware
  • AI
  • Mobiles
  • News
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows

Copyright © 2025 https://mastertrend.info/ - All rights reserved. All trademarks are property of their respective owners.

Comment Author Info
:wpds_smile::wpds_grin::wpds_wink::wpds_mrgreen::wpds_neutral::wpds_twisted::wpds_arrow::wpds_shock::wpds_unamused::wpds_cool::wpds_evil::wpds_oops::wpds_razz::wpds_roll::wpds_cry::wpds_eek::wpds_lol::wpds_mad::wpds_sad::wpds_exclamation::wpds_question::wpds_idea::wpds_hmm::wpds_beg::wpds_whew::wpds_chuckle::wpds_silly::wpds_envy::wpds_shutmouth:
wpDiscuz
RedditBlueskyXMastodonHacker News
Share this:
MastodonVKWhatsAppTelegramSMSHacker NewsLineMessenger
Your Mastodon Instance