• About Us
  • Announce
  • Privacy Policy
  • Contact us
MasterTrend Info - Technology, News and Tutorials
10 Β°c
Moscow
16 Β° Tue
18 Β° Wed
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Mobile
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • What's new
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
  • HOME
    • BLOG
  • Tutorials
  • Hardware
  • Gaming
  • Mobile
  • Security
  • Windows
  • IA
  • Software
  • Networks
  • What's new
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • thThai
    • pl_PLPolish
    • tr_TRTurkish
    • id_IDIndonesian
    • hi_INHindi
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
No result
See all results
MasterTrend Info - Technology, News and Tutorials
No result
See all results
Start Security

How to Block USB Devices in Windows 11: Prevent Leaks Today! πŸ”’βœ¨

MasterTrend Insights by MasterTrend Insights
April 28, 2026
in Security
Reading time:6 min read
0
How to Block USB Devices in Windows 11: 5 Easy Steps
218
SHARED
605
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

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 a travΓ©s de un dispositivo USB. AdemΓ‘s, bloquear dispositivos USB tambiΓ©n permite prevenir transferencias de datos no deseadas (como alguien tratando de copiar archivos hacia o desde tu mΓ‘quina). Un buen ejemplo de herramienta USB especializada diseΓ±ada para robar datos es el USB Rubber Ducky. πŸ’ΌπŸ”’

If you do not use devices USB con tu mΓ‘quina, tiene sentido mantener los puertos deshabilitados, ya que esto impide que otros usuarios tambiΓ©n puedan utilizar estos puertos en tu computadora. PodΓ©s desbloquear cualquier puerto USB que desees en tu computadora. πŸ”‘

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. Tené en cuenta que este método también desactiva cualquier mouse o teclado habilitado para USB. Solo tené presente que esto podría ser un inconveniente si no tenés configurada una manera alternativa para controlar tu PC. ⚠️

To start, I opened the Windows search (pressing Windows+S), I typed Device Manager y abrΓ­ la utilidad. ExpandΓ­ la secciΓ³n Β«Controladores de Bus UniversalΒ», hacΓ© clic derecho en un puerto USB de la lista y elegΓ­ Β«Desactivar dispositivo.Β» SeleccionΓ‘ Β«SΓ­Β» en el aviso. βœ…

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 para bloquear todos los dispositivos de almacenamiento USB en tu PC. TenΓ© en cuenta que otros dispositivos como teclados y ratones seguirΓ‘n funcionando. πŸ”’πŸ–±οΈ

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. βš™οΈπŸ–₯️

Hacer cambios accidentales en el registro de Windows puede causar que tu sistema se vuelva inestable. Por lo tanto, 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.” Cada menΓΊ de BIOS es diferente, pero encontrarΓ‘s una opciΓ³n etiquetada como USB o algo parecido. En mi laptop Asus, irΓ© a la pestaΓ±a Β«AvanzadoΒ», elegirΓ© Β«ConfiguraciΓ³n USBΒ» y luego desactivar los puertos. βš™οΈ

"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:
9FacebookLinkedInPinterestXRedditTumblrBlueskyThreadsShareChatGPTClaudeGoogle AIGrok
9
SHARES
Tags: CybersecurityEvergreenContentWindows11
Previous Publication

WhatsApp backup stuck in progress: Discover the trick that will help you! πŸš€

next post

Hide and change your IP: 9 infallible tricks! πŸ”’βœ¨

MasterTrend Insights

MasterTrend Insights

Our editorial team shares a deep-dive analysis, tutorials and recommendations for getting the most out of your devices and digital tools.

RelatedPublications

DMARC lookup tool to protect your domain with security verification, email authentication, and a cybersecurity dashboard with padlock and shield icons on the digital screen.
Security

DMARC lookup tool to protect your domain

19 de May de 2026
82
Private DNS on Android: Woman showing location settings disabled on her smartphone next to the Android logo and no tracking symbol, illustrating how to reduce tracking and improve privacy on Android.
Security

Private DNS on Android: How to reduce tracking

May 2, 2026
200
C2 botnet infrastructure represented by a network of connected red-eyed robots, symbolizing command and control servers used in malware and cybersecurity attacks.
Security

C2 botnet infrastructure: impact after the international operation

April 19, 2026
150
Advanced Flow Android: Woman holding the Android mascot with a shield in front of Google's offices, representing the balance between openness, security, and control in the Android operating system.
Security

Advanced Flow Android: a balance between openness and control

May 2, 2026
181
Secure Boot Expiration in Windows 11 showing expired SB certificate warning on laptop screen in corporate office.
Security

Secure Boot Expiration 2026 in Windows 11

March 29, 2026
176
Betterleaks secrets scanner showing a magnifying glass analyzing digital code and encrypted data on a technology network, cybersecurity concept and vulnerability detection.
Security

Betterleaks secrets scanner vs. Gitleaks

March 19, 2026
135
next post
Hide and Change Your IP Address: 9 Infallible Tricks!

Hide and change your IP: 9 infallible 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.4 k Followers
  • 1.8 k Subscribers
  • Trends
  • Comments
  • Last
πŸ–₯️ How to open 'Devices and printers' in Windows 11: 4 simple steps

🌟 How to open β€˜Devices and printers’ in Windows 11: Β‘Amazing trick!

April 28, 2026
Windows 11 Persistent Clock

Windows 11 Persistent Clock: Options, Limits, and Real Decisions

April 28, 2026
Ethernet not working in Windows 11: 9 easy tricks

Ethernet not working in Windows 11: 3-minute solution ⚑🌐

13 November 2025
How to save game in REPO

How to save game in REPO πŸ”₯ Discover the secret to not losing progress

7 July 2025
Features of Gmail on Android: Save time with 5 tips

Features of Gmail in Android: you 5 tricks you did not know! πŸ“±βœ¨

12
Repair of motherboards - Repair MotherBoards

Repair of motherboards of Laptops

10
Install Windows 11 Home without Internet

Install Windows 11 Home without Internet

10
How to backup drivers in Windows 11/10 in 4 steps!

How to backup drivers in Windows 11/10 It Prevents errors! πŸš¨πŸ’Ύ

10
AMD UDNA architecture for PS6 and Xbox Next, detail of next-generation GPU chip with advanced design for high-performance gaming consoles.

UDNA architecture in PS6 and Xbox Next: more than just numbers

4 de May de 2026
FBC Firebreak Weapons: Unlock and Priorities - Tactical operators with shotguns and flamethrowers in combat surrounded by fire in intense video game scene.

FBC Firebreak Weapons: Unlocking and Priorities

May 3, 2026
Strategy Heroes Olden Era: White-haired warrior heroine making key decisions in an epic fantasy battle that change the course of the game.

Heroes Olden Era Strategy: Game-Changing Decisions

May 3, 2026
Shoring Up Defenses in Arc Raiders: real strategy with player in desert facing enemy drones in intense sci-fi tactical battle.

Shoring Up Defenses in Arc Raiders: Royal Strategy

May 3, 2026

Recent News

AMD UDNA architecture for PS6 and Xbox Next, detail of next-generation GPU chip with advanced design for high-performance gaming consoles.

UDNA architecture in PS6 and Xbox Next: more than just numbers

4 de May de 2026
107
FBC Firebreak Weapons: Unlock and Priorities - Tactical operators with shotguns and flamethrowers in combat surrounded by fire in intense video game scene.

FBC Firebreak Weapons: Unlocking and Priorities

May 3, 2026
99
Strategy Heroes Olden Era: White-haired warrior heroine making key decisions in an epic fantasy battle that change the course of the game.

Heroes Olden Era Strategy: Game-Changing Decisions

May 3, 2026
138
Shoring Up Defenses in Arc Raiders: real strategy with player in desert facing enemy drones in intense sci-fi tactical battle.

Shoring Up Defenses in Arc Raiders: Royal Strategy

May 3, 2026
104
MasterTrend Info logo

MasterTrend Info is your source of reference in technology: discover news, tutorials, and analysis of hardware, software, gaming, mobile, and artificial intelligence. Subscribe to our newsletter and don't miss any trend.

Follow us

Browse by Category

  • Gaming
  • Hardware
  • IA
  • Mobile
  • What's new
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows

Recent News

AMD UDNA architecture for PS6 and Xbox Next, detail of next-generation GPU chip with advanced design for high-performance gaming consoles.

UDNA architecture in PS6 and Xbox Next: more than just numbers

4 de May de 2026
FBC Firebreak Weapons: Unlock and Priorities - Tactical operators with shotguns and flamethrowers in combat surrounded by fire in intense video game scene.

FBC Firebreak Weapons: Unlocking and Priorities

May 3, 2026
  • About Us
  • Announce
  • Privacy Policy
  • Contact us

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

We've detected you might be speaking a different language. Do you want to change to:
es_ES Spanish
es_ES Spanish
en_US English
pt_BR Portuguese
fr_FR French
it_IT Italian
ru_RU Russian
de_DE German
zh_CN Chinese
ko_KR Korean
ja Japanese
th Thai
hi_IN Hindi
ar Arabic
tr_TR Turkish
pl_PL Polish
id_ID Indonesian
nl_NL Dutch
sv_SE Swedish
Change Language
Close and do not switch language
No result
See all results
  • en_USEnglish
    • es_ESSpanish
    • pt_BRPortuguese
    • fr_FRFrench
    • it_ITItalian
    • de_DEGerman
    • ko_KRKorean
    • jaJapanese
    • zh_CNChinese
    • ru_RURussian
    • pl_PLPolish
    • id_IDIndonesian
    • tr_TRTurkish
    • hi_INHindi
    • thThai
    • arArabic
    • sv_SESwedish
    • nl_NLDutch
  • Gaming
  • Hardware
  • IA
  • Mobile
  • What's new
  • Networks
  • Security
  • Software
  • Tutorials
  • Windows

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

wpDiscuz
RedditBlueskyXMastodonHacker News
Share this:
MastodonVKWhatsAppTelegramSMSLineMessengerFlipboardHacker NewsMixNextdoorPerplexityXingYummly
Your Mastodon Instance