To enable or disable write protection on Windows 10 Pro, you can check the following options:
- Check Group Policy Settings: If write protection is enabled through Group Policy, you can modify it:
- Open the Group Policy Editor by typing
gpedit.mscin the Run dialog (Win + R). - Navigate to
Computer Configuration > Administrative Templates > Windows Components > BitLocker Drive Encryption > Removable Data Drives. - Look for the policy named "Deny write access to drives not protected by BitLocker" and ensure it is disabled if you want to allow writing to external drives.
- Open the Group Policy Editor by typing
- Registry Editor: You can also check the Registry settings:
- Open the Registry Editor by typing
regeditin the Run dialog. - Navigate to
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies. If theWriteProtectkey exists, set its value to0to disable write protection.
- Open the Registry Editor by typing
- Check Device Properties: Sometimes, the device itself may have a physical switch for write protection. Ensure that it is not enabled.
- Using Command Prompt: You can also use the Diskpart tool:
- Open Command Prompt as an administrator.
- Type
diskpartand press Enter. - Type
list diskto show all disks. - Select your USB or SSD by typing
select disk X(replace X with the disk number). - Type
attributes disk clear readonlyto remove write protection.
- Check for Third-party Software: Some third-party software may enforce write protection. Ensure that no such software is running that could block write access to external drives.
If the issue persists after checking these options, consider testing the USB or SSD on another computer to rule out hardware issues.