.net .vdproj - 应用程序快捷方式
我正在为简单的 Windows 表单创建 .vdproj
设置。我已向用户的程序菜单(在文件夹中)添加了一个快捷方式,但是当我单击该快捷方式时,它只是打开安装文件夹。如何设置它来运行 .exe 程序?
我只是尝试将 .exe
名称放入快捷方式的“参数”中 - 还没有成功。我认为这可能比这更直观。看起来“目标”可能是要设置的属性 - 但它给了我一个选择列表 - 而我的 .exe
不在要选择的列表中。
谢谢,
Neal Walters
更新 1
我正在使用 VS2008 SP1。
我在“用户程序菜单”下添加了一个名为“RCT”的文件夹(这是我的应用程序名称)。我右键单击该文件夹,然后看到“添加”,其中带有指向子菜单的箭头和“创建 RCT 的快捷方式”。我尝试的第一件事是“创建 RCT 的快捷方式”,这就是我发布这个问题的原因。一旦快捷方式出现,属性窗口似乎是配置它的唯一方法。 我将“目标”和“工作文件夹”(所有 3 个属性)设置为“应用程序文件夹”。 现在,当我单击快捷方式时,它会打开磁盘目录: C:\Users\uxnxw01\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\RCT
如果我右键单击“用户的程序菜单”,我会看到一个链接“添加快捷方式”到用户的程序菜单”。我真的想要一个快捷方式“在”用户的程序菜单中,而不是“到”用户的程序菜单。
“添加”子菜单有四个选项:文件夹、项目输出、文件、程序集。
解决方案 - 基于 Heinzi 的回复:
我想我现在明白了 - 你右键单击空白区域(在“名称...类型...”下 - 不是然后我看到“创建新快捷方式”,微软的设计真是令人困惑!您点击的项目。
I'm creating a .vdproj
setup for a simple Windows form. I have added a shortcut to the user's program menu (in a folder), but when I click the shortcut, it just opens the install folder. How do I set it up to run the .exe program?
I just tried putting the .exe
name in the "Argument" for the shortcut - no luck yet. I thought it might be more intuitive than that. It also seems like "Target" might be the property to set - but it gives me a pick list - and my .exe
is not in the list of things to pick.
Thanks,
Neal Walters
Update 1:
I'm using VS2008 SP1.
I added a folder under "User's Program menu" called "RCT" (that's my application name). I right click on that folder and I see "Add" with an arrow to submenu and "Create shortcut to RCT". The first thing I tried was the "Create shortcut to RCT", which is what lead me to post this question. Once the shortcut is there, it looks like the Properties Windows is the only way to configure it.
I set the "Target", and "Working Folder" (all 3 properties) to "Application Folder".
Now when I click the shortcut, it opens disk directory: C:\Users\uxnxw01\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\RCT
If I right click on "User's Program Menu" I see a link "Add shortcut to user's program menu". I really want a shortcut "in" the user's program menu, not "to" the user's program menu.
The "Add" submenu has four options: Folder, Project Output, File, Assembly.
SOLUTION - based on Heinzi's response:
I think I got it now - you right-click on the white space (under "name ... type..."- not on the folder. Then I see "create new shortcut". What a confusing design on the part of Microsoft! Seems like you would click on the folder and "add new shortcut". Instead they give you "Add shortcut to..." the item you click on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
单击
创建新快捷方式
后,不要选择应用程序文件夹,而是双击应用程序文件夹。然后来自的主要输出
应该是可选的。After clicking on
Create New Shortcut
, instead of selecting the application folder, double-click on the application folder. ThenPrimary output from <YourApplication>
should be selectable.