Can you force the window to appear where you set your default internet browser?
up vote
1
down vote
favorite
Is there any way you can trigger (from either the command line or some vbscript) the pop-up window to appear that allows you to select your default internet browser?
The pop-up I'm talking about is similar to the one below:
Closest I can get so far is calling %appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
but that still requires two additional clicks.
windows-10 browser batch vbscript
add a comment |
up vote
1
down vote
favorite
Is there any way you can trigger (from either the command line or some vbscript) the pop-up window to appear that allows you to select your default internet browser?
The pop-up I'm talking about is similar to the one below:
Closest I can get so far is calling %appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
but that still requires two additional clicks.
windows-10 browser batch vbscript
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
Is there any way you can trigger (from either the command line or some vbscript) the pop-up window to appear that allows you to select your default internet browser?
The pop-up I'm talking about is similar to the one below:
Closest I can get so far is calling %appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
but that still requires two additional clicks.
windows-10 browser batch vbscript
Is there any way you can trigger (from either the command line or some vbscript) the pop-up window to appear that allows you to select your default internet browser?
The pop-up I'm talking about is similar to the one below:
Closest I can get so far is calling %appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
but that still requires two additional clicks.
windows-10 browser batch vbscript
windows-10 browser batch vbscript
edited Aug 15 at 8:29
asked Aug 14 at 13:39
Richard
3,38542556
3,38542556
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
0
down vote
Partial answer:
In the CMD prompt, in the Run dialog, or as a new shortcut, enter the following shell command.
explorer shell:::{17CD9488-1228-4B2F-88CE-4298E93E0966}
This displays the Default Programs dialog.
From there, click on Set your default programs.
Scroll down to Web browser to make changes.
Admittedly, this three-step process should be condensed to a single command, and if someone knows of a command-line option for Default Programs or another way to go directly to Default apps, please comment!
BTW, the default browser can be set silently through Group Policy or Deployment Image Servicing and Management (DISM).
Best I've managed so far is to launch%appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
which is one less click than yours :)
– Richard
Aug 15 at 8:28
@Richard, thanks, however that depends on the PC having that link (the one I'm at does not). Have you examined the properties of that link, to make this work generally?
– DrMoishe Pippik
Aug 15 at 17:04
add a comment |
up vote
0
down vote
This is the closest you can get:
start ms-settings:defaultapps
More here.
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Partial answer:
In the CMD prompt, in the Run dialog, or as a new shortcut, enter the following shell command.
explorer shell:::{17CD9488-1228-4B2F-88CE-4298E93E0966}
This displays the Default Programs dialog.
From there, click on Set your default programs.
Scroll down to Web browser to make changes.
Admittedly, this three-step process should be condensed to a single command, and if someone knows of a command-line option for Default Programs or another way to go directly to Default apps, please comment!
BTW, the default browser can be set silently through Group Policy or Deployment Image Servicing and Management (DISM).
Best I've managed so far is to launch%appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
which is one less click than yours :)
– Richard
Aug 15 at 8:28
@Richard, thanks, however that depends on the PC having that link (the one I'm at does not). Have you examined the properties of that link, to make this work generally?
– DrMoishe Pippik
Aug 15 at 17:04
add a comment |
up vote
0
down vote
Partial answer:
In the CMD prompt, in the Run dialog, or as a new shortcut, enter the following shell command.
explorer shell:::{17CD9488-1228-4B2F-88CE-4298E93E0966}
This displays the Default Programs dialog.
From there, click on Set your default programs.
Scroll down to Web browser to make changes.
Admittedly, this three-step process should be condensed to a single command, and if someone knows of a command-line option for Default Programs or another way to go directly to Default apps, please comment!
BTW, the default browser can be set silently through Group Policy or Deployment Image Servicing and Management (DISM).
Best I've managed so far is to launch%appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
which is one less click than yours :)
– Richard
Aug 15 at 8:28
@Richard, thanks, however that depends on the PC having that link (the one I'm at does not). Have you examined the properties of that link, to make this work generally?
– DrMoishe Pippik
Aug 15 at 17:04
add a comment |
up vote
0
down vote
up vote
0
down vote
Partial answer:
In the CMD prompt, in the Run dialog, or as a new shortcut, enter the following shell command.
explorer shell:::{17CD9488-1228-4B2F-88CE-4298E93E0966}
This displays the Default Programs dialog.
From there, click on Set your default programs.
Scroll down to Web browser to make changes.
Admittedly, this three-step process should be condensed to a single command, and if someone knows of a command-line option for Default Programs or another way to go directly to Default apps, please comment!
BTW, the default browser can be set silently through Group Policy or Deployment Image Servicing and Management (DISM).
Partial answer:
In the CMD prompt, in the Run dialog, or as a new shortcut, enter the following shell command.
explorer shell:::{17CD9488-1228-4B2F-88CE-4298E93E0966}
This displays the Default Programs dialog.
From there, click on Set your default programs.
Scroll down to Web browser to make changes.
Admittedly, this three-step process should be condensed to a single command, and if someone knows of a command-line option for Default Programs or another way to go directly to Default apps, please comment!
BTW, the default browser can be set silently through Group Policy or Deployment Image Servicing and Management (DISM).
edited Aug 14 at 18:47
answered Aug 14 at 18:37
DrMoishe Pippik
9,46721230
9,46721230
Best I've managed so far is to launch%appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
which is one less click than yours :)
– Richard
Aug 15 at 8:28
@Richard, thanks, however that depends on the PC having that link (the one I'm at does not). Have you examined the properties of that link, to make this work generally?
– DrMoishe Pippik
Aug 15 at 17:04
add a comment |
Best I've managed so far is to launch%appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
which is one less click than yours :)
– Richard
Aug 15 at 8:28
@Richard, thanks, however that depends on the PC having that link (the one I'm at does not). Have you examined the properties of that link, to make this work generally?
– DrMoishe Pippik
Aug 15 at 17:04
Best I've managed so far is to launch
%appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
which is one less click than yours :)– Richard
Aug 15 at 8:28
Best I've managed so far is to launch
%appdata%MicrosoftWindowsStart MenuProgramsSystem ToolsDefault Apps.lnk
which is one less click than yours :)– Richard
Aug 15 at 8:28
@Richard, thanks, however that depends on the PC having that link (the one I'm at does not). Have you examined the properties of that link, to make this work generally?
– DrMoishe Pippik
Aug 15 at 17:04
@Richard, thanks, however that depends on the PC having that link (the one I'm at does not). Have you examined the properties of that link, to make this work generally?
– DrMoishe Pippik
Aug 15 at 17:04
add a comment |
up vote
0
down vote
This is the closest you can get:
start ms-settings:defaultapps
More here.
add a comment |
up vote
0
down vote
This is the closest you can get:
start ms-settings:defaultapps
More here.
add a comment |
up vote
0
down vote
up vote
0
down vote
This is the closest you can get:
start ms-settings:defaultapps
More here.
This is the closest you can get:
start ms-settings:defaultapps
More here.
answered Nov 21 at 9:00
shawn
966
966
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1348989%2fcan-you-force-the-window-to-appear-where-you-set-your-default-internet-browser%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown