Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
620 views

Custom source for Windows 7 Start Menu Search

I recently came across an article about Windows 7's new Federated Search and Search Connectors. Basically, you provide users a small XML file (.osdx; an OpenSearch XML file) and they can then use ...
6
votes
1answer
3k views

Use Wix installer to add shortcut to subfolder in startmenu programs

I am trying to add my program shortcut to an existing folder in the start menu shortcuts. For example All Programs -> AppNameFolder -> AppNameVersionFolder -> AppShortcut In order to achieve ...
5
votes
2answers
123 views

How can I group my applications in start menu deployed by clickOnce?

I have created a set of applications which are deployed using clickonce. is it possible to group them in a common start menu item? Background : I have created a series of quantitative finance related ...
3
votes
2answers
4k views

How to “refresh” Windows 7 start menu from NSIS installer?

I have an installer (NSIS) that creates shortcuts in start menu. When I remove the program uninstall removes the folder from: C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start ...
2
votes
2answers
86 views

What does Windows use each resolution version of an .ico for? (e.g., Start Menu, Desktop)?

A designer is making some Windows icons (.ico) for us and I want to make sure the various sizes (16px, 24px, etc.) will look Ok when Windows displays them. I created a Test icon with a # for each ...
2
votes
2answers
563 views

How to 'Refresh' the Vista start menu programmatically

I am working on a piece of code that removes an extra folder we have in the user's start menu. I start by removing all of the shortcuts it contains, and then remove the folder itself. After this is ...
2
votes
3answers
214 views

Replacing the Start Menu

I want to make my own Start Menu replacement and I am trying to figure out what approach to use. There are a number of ways the Start Menu is activated: click on it, hit windows key, hit ctrl+esc keys ...
2
votes
4answers
695 views

Custom Windows 7 Start Menu Search Provider

I'd like to write custom providers for start menu searching, but I can't seem to find where to begin. Things I'd like to be able to do when I type in the search box on the start menu Type "thomas" ...
1
vote
0answers
114 views

Issue creating/removing startmenu shortcuts with Wix

I'm trying to create a shortcut on the program files menu for my application. However, as my company may have a number of products with their own installers I want to have them in sub folders on the ...
1
vote
1answer
263 views

Remove shortcut and associated file with Innosetup

As part of an application update, I want to remove an old start menu entry if it exists, and the file it points to. I tried: [InstallDelete] Type: files; Name: "{group}\User's Manual (PDF)" Type: ...
1
vote
3answers
2k views

How can I disable the Start button (but not the Taskbar) on Windows 7?

On Windows XP, it was possible to disable the Start button with the following code: hTray = FindWindow (TEXT("Shell_TrayWnd"), NULL); if (hTray) { hStartButton = FindWindowEx(hTray, NULL, ...
1
vote
3answers
2k views

Clean Windows 7 Start Menu MRU List

Is there a way to clean the most recently started applications from the Windows 7 start menu programmatically? I'm looking for some registry entries and/or files to delete so the corresponding items ...
1
vote
1answer
87 views

How would I pass my program a string from the start menu search in Windows (like ping)?

When my program is launched from the start menu shortcut I would like to send it a string. I see that ping does this because I can type in ping [and a domain] and it will pop the cmd window and do the ...
0
votes
0answers
11 views

I am trying to add a Start Menu “Program Name” and “Program Link”; but just cannot figure out. Can only get link added. Below is my code

Sub CreateShortCutB(ByVal TargetPath As String, ByVal ShortCutPath As String, ByVal ShortCutname As String, Optional ByVal WorkPath As String, Optional ByVal Window_Style As Integer, Optional ByVal ...
0
votes
0answers
32 views

Using Inno setup, how to make application appear in Most Frequently Used programs

I am using Inno Setup to create an installer for my application. Using the template scripts, I have managed to get the application to be added in the start menu (under Programs) and I have managed ...
0
votes
0answers
31 views

Windows XP %USERPROFILE%\Start Menu not available

I have a very strange problem on 1 of my Windows XP computers. The start menu (with "Use Personlized Menus" turned off) is only showing the C:\Documents and Settings\All Users\Start Menu entries and ...
0
votes
2answers
250 views

Removing exe from windows startmenu quick launch

For work we have two shortcuts that get installed to the start menu with both of them pointing to the same exe (but the second with different command line arguments). Some times windows will pick ...
0
votes
1answer
258 views

Creating start menu shortcuts, result is error LGHT0094

When adding start menu shortcuts light.exe will produce the LGHT0094 error: <Directory Id="ProgramMenuFolder" Name="Menu"> <Directory Id="DirManufacturer" ...
0
votes
1answer
474 views

getting the “friendly” name for window startmenu items/shortcut files

This is curious, some startmenu items seems to resolve to a "friendly" name that's not contained in the actual .lnk file. For example: "c:\ProgramData\Microsoft\Windows\Start ...
0
votes
2answers
522 views

Creating a Windows 7 Taskbar Icon

My Goal I want to make it so that, on first run, my program will make its icon appear in the Windows 7 Taskbar. I know that the icon files are shortcuts in ...
0
votes
0answers
436 views

WM6.5 - C# - Check if Start Menu is Visible

Hi guys, I'm developing an Windows Mobile 6.5 start menu replacement called JWMD Stuick. Currently, I'm able to detect if the Start Menu is created or destroyed by checking GetWindowLong() API.. ...
0
votes
1answer
179 views

Adobe AIR - Option to not create a shortcut when installing an AIR application

Hello Stackoverflow community, Does anyone know if there is an option to not create a shortcut to an AIR application after its installation? Currently, all I have found is an option to choose the ...
0
votes
0answers
67 views

why is win7/ie8 favorites the start menu? [closed]

does anyone know why Win7 Pro IE8 favorites are really the programs in the start menu? I don't see the point, there are usually tons of folders here so it is hard to find internet shortcuts, and why ...
0
votes
2answers
931 views

Is it possible to 'Pin to start menu' using Inno Setup?

I'm using the excellent Inno Setup installer and I notice that some Applications (often from Microsoft) get installed with their launch icon already highly visible ('pinned?') in the start menu (in ...
0
votes
1answer
123 views

Specifying the order of start menu shortcuts

i created shortcuts for some of my exe's in the program menu. For example, I might create shortcuts for a.exe, v.exe, and g.exe. By default, it aligns as a, g, v (in alphabetical order). I want to ...
0
votes
1answer
82 views

Is there a way to change the name of a Start menu link name using a Custom Action

We are localizing our application and need to change the name displayed in the Start menu based on the current UI culture. We would like to do this using a Custom Action during the installation. We ...