Contact UsContact Us

How To Configure Automatic Login For Your Users

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

  1. Open Group Policy Management
  2. Create a new GPO or edit an existing one
  3. Navigate to:
Computer Configuration → Preferences → Windows Settings → Registry
  1. Create a New Registry Item with the following settings:
SettingValue
ActionUpdate
HiveHKEY_LOCAL_MACHINE
Key PathSOFTWARE\WOW6432Node\Texthelp\Read&Write
Value NameProductCode
Value TypeREG_SZ
Value DataYOUR_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
Still need help? Contact us here