mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 21:15:48 +00:00
65 lines
2.8 KiB
XML
65 lines
2.8 KiB
XML
|
|
<!-- Register "Open With" for .{{ext}} -->
|
|
<Component Id="Reg{{Ext}}OpenWithList" Guid="{{GUID_2}}">
|
|
<RegistryValue Root="HKCR" Key=".{{ext}}\OpenWithList\[APP_EXENAME]" Value=""/>
|
|
</Component>
|
|
<!-- Associate .{{ext}} file extension -->
|
|
<Component Id="Reg{{Ext}}ClassName" Guid="{{GUID_3}}" Condition="NOT EXT_{{EXT}}_CLASSNAME_EXISTS">
|
|
<RegistryValue Root="HKCR" Key="[EXT_{{EXT}}_CLASSNAME]" Value="Flash movie"/>
|
|
</Component>
|
|
|
|
<Component Id="Reg{{Ext}}Ext" Guid="{{GUID_4}}" Condition="NOT EXT_{{EXT}}_EXISTS">
|
|
<RegistryValue Root="HKCR" Key=".{{ext}}" Value="[SWF_CLASS]"/>
|
|
</Component>
|
|
|
|
<Component Id="Reg{{Ext}}Associations" Guid="{{GUID_5}}">
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="[EXT_{{EXT}}_CLASSNAME]\Shell\[VERB]"
|
|
Value="[VERB_NAME]"
|
|
/>
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="[EXT_{{EXT}}_CLASSNAME]\Shell\[VERB]"
|
|
Name="Icon"
|
|
Value=""[INSTALLFOLDER][APP_EXENAME]",0"
|
|
/>
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="[EXT_{{EXT}}_CLASSNAME]\Shell\[VERB]\Command"
|
|
Value=""[INSTALLFOLDER][APP_EXENAME]" "%1""
|
|
/>
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="[EXT_{{EXT}}_CLASSNAME]\Shell\[VERB]"
|
|
Name="MUIVerb"
|
|
Value="@[INSTALLFOLDER][APP_EXENAME],-[VERB_RESOURCE_ID]"
|
|
/>
|
|
</Component>
|
|
|
|
<!-- Associate global verb for .{{ext}} - if anybody changes default app, it won't remove the verbs -->
|
|
<Component Id="Reg{{Ext}}SystemFileAssociations" Guid="{{GUID_6}}" Condition="SYSTEM_FILE_ASSOCIATIONS_EXISTS">
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="SystemFileAssociations\.{{ext}}\Shell\[VERB]"
|
|
Value="[VERB_NAME]"
|
|
/>
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="SystemFileAssociations\.{{ext}}\Shell\[VERB]"
|
|
Name="Icon"
|
|
Value=""[INSTALLFOLDER][APP_EXENAME]",0"
|
|
/>
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="SystemFileAssociations\.{{ext}}\Shell\[VERB]\Command"
|
|
Value=""[INSTALLFOLDER][APP_EXENAME]" "%1""
|
|
/>
|
|
<RegistryValue
|
|
Root="HKCR"
|
|
Key="SystemFileAssociations\.{{ext}}\Shell\[VERB]"
|
|
Name="MUIVerb"
|
|
Value="@[INSTALLFOLDER][APP_EXENAME],-[VERB_RESOURCE_ID]"
|
|
|
|
/>
|
|
</Component> |