我有一个应用程序 A 在桌面上创建一个链接到另一个应用程序 B 的快捷方式。应用程序 B 在启动时必须检查是否需要更新某些文件并将其下载到 B 应用程序文件夹但如果我从桌面上的快捷方式打开它,应用程序 B 下载桌面上的所有更新文件。如果有办法告诉创建的链接只是为了不更改执行上下文,我已经搜索了答案。
在桌面上创建 .lnk 的代码如下:
Type t = Type.GetTypeFromCLSID(new Guid("72C24DD5-D70A-438B-8A42-98424B88AFB8")); //Windows Script Host Shell Object
dynamic shell = Activator.CreateInstance(t);
try
{
var lnk = shell.CreateShortcut(Environment.GetFolderPath(Environment.SpecialFolder.DesktopDirectory)+"/"+string.Format("{0}.lnk", Name));
try
{
lnk.TargetPath = Path;
lnk.IconLocation = Path+", 0";
lnk.Save();
}
finally
{
Marshal.FinalReleaseComObject(lnk);
}
}
finally
{
Marshal.FinalReleaseComObject(shell);
}