Feature Request Option to add profiles to the Windows Start Menu #3274

Open
opened 2026-01-30 23:17:29 +00:00 by claunia · 9 comments
Owner

Originally created by @claudio4 on GitHub (Aug 8, 2019).

Allow creating profile based entries in the Windows Start Menu

This will allow the user to launch the specific profile that they want without the need to open the default one

A button in the profile setting adds an entry in the Windows Start Menu with the icon profile and name, this entry launcher the windows terminal in this profile instead of the default one

Maintainer Notes

SPEC REQUIRED

Specifier should build on work already done on #576, because I am betting that it'll be along the same path! (from @DHowett-MSFT)

Originally created by @claudio4 on GitHub (Aug 8, 2019). Allow creating profile based entries in the Windows Start Menu This will allow the user to launch the specific profile that they want without the need to open the default one A button in the profile setting adds an entry in the Windows Start Menu with the icon profile and name, this entry launcher the windows terminal in this profile instead of the default one ### Maintainer Notes **SPEC REQUIRED** Specifier should build on work already done on #576, because I am betting that it'll be along the same path! (from @DHowett-MSFT)
claunia added the Issue-FeatureHelp WantedProduct-TerminalArea-UserInterface labels 2026-01-30 23:17:29 +00:00
Author
Owner

@zadjii-msft commented on GitHub (Aug 8, 2019):

This has little bits of #607 and #576 in it, but seems unique enough to warrant its own issue.

@zadjii-msft commented on GitHub (Aug 8, 2019): This has little bits of #607 and #576 in it, but seems unique enough to warrant its own issue.
Author
Owner

@kowalski7cc commented on GitHub (Aug 14, 2019):

Maybe can be solved with ability to pin secondary tiles to start?
https://docs.microsoft.com/en-us/windows/uwp/design/shell/tiles-and-notifications/secondary-tiles

@kowalski7cc commented on GitHub (Aug 14, 2019): Maybe can be solved with ability to pin secondary tiles to start? https://docs.microsoft.com/en-us/windows/uwp/design/shell/tiles-and-notifications/secondary-tiles
Author
Owner

@DHowett-MSFT commented on GitHub (Aug 16, 2019):

Backlog, spec required, triaged.

@DHowett-MSFT commented on GitHub (Aug 16, 2019): Backlog, spec required, triaged.
Author
Owner

@DHowett-MSFT commented on GitHub (Aug 16, 2019):

Specifier should build on work already done on #576, because I am betting that it'll be along the same path!

@DHowett-MSFT commented on GitHub (Aug 16, 2019): Specifier should build on work already done on #576, because I am betting that it'll be along the same path!
Author
Owner

@marveloo commented on GitHub (Jun 22, 2020):

It would be great to be able to "Pin to Start" and "Pin to Taskbar" any profile we like. And then the profile opened via the Start (or Taskbar) tile should always open in a new window and the opened profile should become the default profile for this particular window, i.e. when I open a new tab in this window it should open the same profile.

@marveloo commented on GitHub (Jun 22, 2020): It would be great to be able to "Pin to Start" and "Pin to Taskbar" any profile we like. And then the profile opened via the Start (or Taskbar) tile should always open in a new window and the opened profile should become the default profile for this particular window, i.e. when I open a new tab in this window it should open the same profile.
Author
Owner

@zadjii-msft commented on GitHub (Feb 9, 2021):

For folks following this thread: A few releases ago, we added your profiles to the taskbar jumplist:
image

which had the side-effect of displaying them in the start menu search as well:

image

I'm leaving this issue open to specifically track allowing you to pin the profiles as Start Menu tiles as well. Thanks!

@zadjii-msft commented on GitHub (Feb 9, 2021): For folks following this thread: A few releases ago, we added your profiles to the taskbar jumplist: ![image](https://user-images.githubusercontent.com/18356694/107390470-5a394d00-6abd-11eb-9bc3-7fc3c2737c7c.png) which had the side-effect of displaying them in the start menu search as well: ![image](https://user-images.githubusercontent.com/18356694/107390630-7e952980-6abd-11eb-8681-ed273f174484.png) I'm leaving this issue open to specifically track allowing you to pin the profiles as Start Menu tiles as well. Thanks!
Author
Owner

@HendersonSC commented on GitHub (Oct 26, 2022):

FWIW, a similar functionality is possible using shortcuts and batch files. Probably doesn't meet everyone's needs,

example.bat
wt -w 1 -p example_profile

Then its just right click, new->shortcut. Target of cmd /c path/to/example.bat, next, finish. Right click new shortcut pin to {start/taskbar}. In my use case, this has the additional benefit of allowing for complicated terminal tabs, new windows, and passing raw commands, i.e. set local scope path, open ssh tunnel, etc. The limit is seemingly what the wt command can handle.

@HendersonSC commented on GitHub (Oct 26, 2022): FWIW, a similar functionality is possible using shortcuts and batch files. Probably doesn't meet everyone's needs, ``` example.bat wt -w 1 -p example_profile ``` Then its just right click, new->shortcut. Target of `cmd /c path/to/example.bat`, next, finish. Right click new shortcut pin to {start/taskbar}. In my use case, this has the additional benefit of allowing for complicated terminal tabs, new windows, and passing raw commands, i.e. set local scope path, open ssh tunnel, etc. The limit is seemingly what the wt command can handle.
Author
Owner

@claudio4 commented on GitHub (Oct 27, 2022):

FWIW, a similar functionality is possible using shortcuts and batch files. Probably doesn't meet everyone's needs,

example.bat
wt -w 1 -p example_profile

Then its just right click, new->shortcut. Target of cmd /c path/to/example.bat, next, finish. Right click new shortcut pin to {start/taskbar}. In my use case, this has the additional benefit of allowing for complicated terminal tabs, new windows, and passing raw commands, i.e. set local scope path, open ssh tunnel, etc. The limit is seemingly what the wt command can handle.

Yeah, I'm been using my handmade shortcut since the WT allowed for opening specific profiles from the command line. But I still think there is value in the WT creating the shortcuts with just the click of button instead of us doing the manual process.

BTW, You can put the command directly in the shortcut and skip the batch file enterally.

@claudio4 commented on GitHub (Oct 27, 2022): > FWIW, a similar functionality is possible using shortcuts and batch files. Probably doesn't meet everyone's needs, > > ``` > example.bat > wt -w 1 -p example_profile > ``` > > Then its just right click, new->shortcut. Target of `cmd /c path/to/example.bat`, next, finish. Right click new shortcut pin to {start/taskbar}. In my use case, this has the additional benefit of allowing for complicated terminal tabs, new windows, and passing raw commands, i.e. set local scope path, open ssh tunnel, etc. The limit is seemingly what the wt command can handle. Yeah, I'm been using my handmade shortcut since the WT allowed for opening specific profiles from the command line. But I still think there is value in the WT creating the shortcuts with just the click of button instead of us doing the manual process. BTW, You can put the command directly in the shortcut and skip the batch file enterally.
Author
Owner

@zadjii-msft commented on GitHub (Oct 27, 2022):

FWIW, since there aren't tiles in Windows 11's start menu anymore, I'd reckon it's highly unlikely we (the Terminal team) get around to this ourselves. The API doesn't seem terribly challenging to use, and it shouldn't be too hard to add a button to the Settings UI to activate this. If someone's passionate about adding the button for Windows 10, we'd still accept the PR. I just wanted to make sure everyone was aware of where this landed on the priorities.

@zadjii-msft commented on GitHub (Oct 27, 2022): FWIW, since there aren't tiles in Windows 11's start menu anymore, I'd reckon it's highly unlikely we (the Terminal team) get around to this ourselves. [The API](https://docs.microsoft.com/en-us/windows/uwp/design/shell/tiles-and-notifications/secondary-tiles) doesn't seem terribly challenging to use, and it shouldn't be too hard to add a button to the Settings UI to activate this. If someone's passionate about adding the button for Windows 10, **we'd still accept the PR**. I just wanted to make sure everyone was aware of where this landed on the priorities.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#3274