hot questions tagged desktopshortcut - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T01:10:17Zhttp://stackoverflow.com/feeds/tag?tagnames=desktopshortcut&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1385590/how-to-remove-a-desktop-shortcut-by-innosetup5How to remove a desktop shortcut by Innosetuptrudger2009-09-06T12:45:02Z2009-09-06T13:30:36Z
<p>How can I remove a desktop shortcut by Innosetup? It's created by previous version and not needed anymore. I tried delete it in [InstallDelete]</p>
<pre><code>[InstallDelete]
Type: files; Name: {userdesktop}\Shortcut Name
</code></pre>
<p>and delete the file in "ssInstall" of CurStepChanged event handler</p>
<pre><code>DeleteFile(ExpandConstant('{userdesktop}\Shortcut Name'));
</code></pre>
<p>But they don't work. Any suggestion is appreciated!</p>
http://stackoverflow.com/questions/145440/deploy-a-desktop-shortcut-to-a-device-running-windows-ce-4-2-vs20050Deploy a Desktop Shortcut to a Device running Windows CE 4.2 (VS2005)Mitch Wheat2008-09-28T07:56:21Z2009-07-01T09:55:05Z
<p>I have an application written using VS2005 in C# targeting the Compact Framework 2.0 SP2. As part of the solution, I have CAB deploy project which deploys to the device without a problem. What I can't do is create a shortcut to my application on the devices desktop.</p>
<p>I have spent several hours reading various bits of documentation (why is the search at the MSDN site so bad?), followed the instructions but no joy. </p>
<p>What I've done is:</p>
<ul>
<li>Add the "Windows Folder" node to the File System</li>
<li>Created a folder underneath that named "Desktop"</li>
<li>Created a shortcut to the Applications Primary Output and placed that in the "Desktop" folder</li>
</ul>
<p>What am I missing?</p>