This guide explains how administrators can automatically activate Read&Write for users by deploying a product code. Once deployed, users won’t need to log in manually.
⚠️ Important: An internet connection is still required for activation.
Option 1: Deploy via Windows Registry (Manual Method)
Use this method if you want to manually configure a single machine.
Step 1: Create the Registry Key
Navigate to the following location:
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Texthelp\Read&Write
If the key doesn’t exist, create it.
Step 2: Add the Product Code
Create a new String Value with the following details:
- Name: ProductCode
- Type: REG_SZ
- Value: YOUR_PRODUCT_CODE
👉 You can find your product code in your onboarding email after purchase.
Option 2: Deploy Using PowerShell (Recommended for Automation)
This method is ideal for scripting and deploying across multiple machines.
PowerShell Script
$path = "HKLM:\SOFTWARE\WOW6432Node\Texthelp\Read&Write" if (-not (Test-Path $path)) { New-Item -Path $path -Force | Out-Null } Set-ItemProperty -Path $path -Name "ProductCode" -Value "YOUR_PRODUCT_CODE" -Type String
What this script does:
- Creates the registry key if it doesn’t already exist
- Adds your product code automatically
Option 3: Deploy via Group Policy (GPO)
Use this method if you manage multiple domain-joined computers and want central control.
Step 1: Ensure the Registry Path Exists
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Texthelp\Read&Write
Step 2: Define the Product Code
You will create a registry value with:
- Name: ProductCode
- Type: REG_SZ
- Value: YOUR_PRODUCT_CODE
Step 3: Configure Group Policy
- Open Group Policy Management
- Create a new GPO or edit an existing one
- Navigate to:
Computer Configuration → Preferences → Windows Settings → Registry
- Create a New Registry Item with the following settings:
| Setting | Value |
|---|---|
| Action | Update |
| Hive | HKEY_LOCAL_MACHINE |
| Key Path | SOFTWARE\WOW6432Node\Texthelp\Read&Write |
| Value Name | ProductCode |
| Value Type | REG_SZ |
| Value Data | YOUR_PRODUCT_CODE |
Step 4: Apply the Policy
- Link the GPO to the Organisational Unit (OU) containing your target computers
- Once applied, the product code will automatically be added to each machine
What Happens Next?
After deployment:
- Users can open Read&Write without entering a licence
- Activation happens automatically (internet required)
Quick Tips
- ✅ Use PowerShell or GPO for multiple devices
- ✅ Double-check the registry path and spelling
- ✅ Ensure devices have internet access