Tagged Questions
1
vote
2answers
123 views
Android - Is it possible to get the information of a desktop web shortcut?
I'm trying to create an app that gives information of some other specific apps that you have installed on your device. Android lets you, from the package name, to get information of these apps such as ...
2
votes
1answer
657 views
Change Android home screen page programmatically
Here is the sample code which creates some specified shortcuts on the Android home screen:
public void setupShortCut(String iconName, String siteAddress)
{
Intent i = new Intent();
...
0
votes
0answers
107 views
Arguments not passed to Desktop Shortcut in Deployment Project
I put together a deployment project (VS2008) for my project. I want the desktop shortcut to pass two arguments when it is invoked. I've added the values to the Arguments property for the shortcut, but ...
2
votes
2answers
160 views
Pattern to do a wix upgrade without messing with the desktop icons of the users
The Wix setup I'm working on asks the user whether to install a shorcut from the main program on the desktop.
The problem is that during upgrades, the shortcut is removed and then recreated :
If ...
11
votes
2answers
10k views
How to create a shortcut using Powershell or CMD
I want to create a shortcut with Powershell or CMD. What is the command line for it? For example:
C:\Program Files (x86)\ColorPix
This folder has ColorPix.exe I want to create ColorPix.exe's ...
0
votes
2answers
117 views
How to configure a shortcut title through Win API
I create a shortcut by using the Win32 API. This is a COM API whose object model is accessable through IShellLink. I write in C++. Could you please share any ideas on how I can configure a shortcut ...