Inno Setup Document Icon Not Showing

Struggling a bit with getting a Document Icon showing in Explorer. Here is the relevant bits from the Inno Setup Script. The file association works, the ico file exists and I’ve verified that it has 4 images in it but Windows Explorer doesn’t update to show the proper document icon. Any ideas?

[code]
[Setup]
ChangesAssociations = yes

[Registry]
Root: HKCR; Subkey: “.rs_template”; ValueData: “{#MyAppName}”; Flags: uninsdeletevalue; ValueType: string; ValueName: “”
Root: HKCR; Subkey: “{#MyAppName}”; ValueData: “Program {#MyAppName}”; Flags: uninsdeletekey; ValueType: string; ValueName: “”
Root: HKCR; Subkey: “{#MyAppName}\DefaultIcon”; ValueData: “{app}\My App Resources\Document.ico,3”; ValueType: string; ValueName: “”; Flags: uninsdeletekey;
Root: HKCR; Subkey: “{#MyAppName}\shell\open\command”; ValueData: “”"{app}\{#MyAppExeName}"" “”%1"""; ValueType: string; ValueName: “”; Flags: uninsdeletekey[/code]