Posted On March 31, 2019

Block USB in Windows 7 using Group Policy

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Block USB in Windows 7 using Group Policy
Create and assign a group policy to the appropriate OU with this configuration:
Computer Configuration >> Administrative Templates >> System >> Removable Storage Access
Removable Disks: Deny execute access Enabled
Removable Disks: Deny read access Enabled
Removable Disks: Deny write access Enabled

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Install PowerShell Module on An Offlined Computer

# Download the desired module onto a 'jump host' (an intermediary computer that has access…

Enabling Unix Newline ‘LF’ Support for Windows 10 Version 1706 or Higher

Please note that the following PoSH commands won't work on earlier versions of Windows (e.g.…

Last Logon Dates of List of AD Accounts

import-module activedirectory$output=""Get-Content C:\Users\kimconnect\Desktop\targetAccounts.txt | Foreach-Object -Process{ #  cast an array object as string before using…