如何使用Inno Setup在“发送到”文件夹中创建指向我的程序的链接,以便它显示在Windows资源管理器的“发送到”上下文菜单中?
“发送至”文件夹已有directory constant,但如何在其中创建链接?
答案 0 :(得分:2)
与任何其他快捷方式一样,使用[Icons]
section中的条目:
[Icons]
Name: "{usersendto}\My Prog"; Filename: "{app}\MyProg.exe"
在Inno Setup 5.6.1中,{sendto}
常量已重命名为{usersendto}
。
答案 1 :(得分:1)
对我来说,以下工作可行:
[Icons]
Name: "{usersendto}\My Prog"; Filename: "{app}\MyProg.exe"