ATL Provider Error ATL2026

Error Message

Failed to compile RGS. Syntax error: expected a {, found a string.

The RGS file is missing a left brace after the root key.

The following sample RGS file generates ATL2026.

HKLM
 subkey = 'test'
}

To resolve the error, add a line containing a left brace:

HKLM
{
 subkey = 'test'
}