我使用 DOTRAS 库在 Visual C# 中创建了一个代码,该库在网络连接中创建了 pppoe 拨号程序。但我无法弄清楚如何在桌面上创建拨号快捷方式。我一般知道如何在 c# 中创建应用程序快捷方式,但无法获取网络连接快捷方式代码。任何建议都将是可观的。
问问题
198 次
1 回答
1
这是我所知道的最好的:
string destDir = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
string destFileName = @"Connect To Example.lnk";
// Create .lnk file
string path = System.IO.Path.Combine(destDir, destFileName);
FileStream fs = File.Create(path);
fs.Close();
// Instantiate a ShellLinkObject that references the .lnk we created
Shell32.Shell shell = new Shell32.Shell();
Shell32.Folder shellFolder = shell.NameSpace(destDir);
Shell32.FolderItem shellFolderItem = shellFolder.Items().Item(destFileName);
Shell32.ShellLinkObject shellLinkObject = (Shell32.ShellLinkObject)shellFolderItem.GetLink;
// Set .lnk properties
shellLinkObject.Arguments = "-d Example";
shellLinkObject.Description = "Example Connection";
shellLinkObject.Path = @"%windir%\System32\rasphone.exe";
shellLinkObject.WorkingDirectory = "%windir%";
shellLinkObject.Save(path);
将“示例”替换为您的连接名称
于 2017-03-17T15:02:53.407 回答