Windows 10 Start Menu and Search not working
This is a problem I've ran into on multiple machines now. The Windows 10 Start Menu and/or Search (Cortana) stops working even after restarting the computer.
windows-10 windows-search
migrated from stackoverflow.com Aug 9 '17 at 19:14
This question came from our site for professional and enthusiast programmers.
add a comment |
This is a problem I've ran into on multiple machines now. The Windows 10 Start Menu and/or Search (Cortana) stops working even after restarting the computer.
windows-10 windows-search
migrated from stackoverflow.com Aug 9 '17 at 19:14
This question came from our site for professional and enthusiast programmers.
add a comment |
This is a problem I've ran into on multiple machines now. The Windows 10 Start Menu and/or Search (Cortana) stops working even after restarting the computer.
windows-10 windows-search
This is a problem I've ran into on multiple machines now. The Windows 10 Start Menu and/or Search (Cortana) stops working even after restarting the computer.
windows-10 windows-search
windows-10 windows-search
asked Aug 9 '17 at 16:08
Easton James HarveyEaston James Harvey
1626
1626
migrated from stackoverflow.com Aug 9 '17 at 19:14
This question came from our site for professional and enthusiast programmers.
migrated from stackoverflow.com Aug 9 '17 at 19:14
This question came from our site for professional and enthusiast programmers.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
I've found that a good old system reboot will do the trick, however if that doesn't work, this fix has worked quite often.
If you can’t open or type anything in the Windows 10 search menu, please try one or both of these methods:
Method 1: Right click on the start menu or press Windows + X keys on the keyboard, select and open Command prompt (admin). Then enter the below commands and hit Enter key:
Command 1:
PowerShell -ExecutionPolicy Unrestricted
Now enter the below command and hit Enter key:
Command 2:
Get-AppXPackage -AllUsers |Where-Object {$.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)AppXManifest.xml"}
If the issue still persist, follow the second method:
Method 2: Open the Task Manager by pressing CTRL+Shift+ESC keys. Or you can open it by right clicking on the taskbar if it works.
Then click File an then Run New Task. Make sure you have a check mark beside “Create this task with administrative privileges”. Now type Powershell.
Type the following in the Powershell prompt:
Command: $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + 'AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Wait till the process completed and then close the Powershell window. Now, reboot the computer and check if that fixed the issue.
1
For me both commands end with errors ;(
– Nickon
Apr 22 '18 at 8:17
add a comment |
I had the same issue. After looking at many different solutions, what worked for me was as follows:
Click on the start menu and locate the Cortana app in the apps lookup. Right-click -> more -> app settings. Scroll down to Reset and hit the reset button. Worked instantly for me and could start searching through the Cortana search.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f1239275%2fwindows-10-start-menu-and-search-not-working%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I've found that a good old system reboot will do the trick, however if that doesn't work, this fix has worked quite often.
If you can’t open or type anything in the Windows 10 search menu, please try one or both of these methods:
Method 1: Right click on the start menu or press Windows + X keys on the keyboard, select and open Command prompt (admin). Then enter the below commands and hit Enter key:
Command 1:
PowerShell -ExecutionPolicy Unrestricted
Now enter the below command and hit Enter key:
Command 2:
Get-AppXPackage -AllUsers |Where-Object {$.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)AppXManifest.xml"}
If the issue still persist, follow the second method:
Method 2: Open the Task Manager by pressing CTRL+Shift+ESC keys. Or you can open it by right clicking on the taskbar if it works.
Then click File an then Run New Task. Make sure you have a check mark beside “Create this task with administrative privileges”. Now type Powershell.
Type the following in the Powershell prompt:
Command: $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + 'AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Wait till the process completed and then close the Powershell window. Now, reboot the computer and check if that fixed the issue.
1
For me both commands end with errors ;(
– Nickon
Apr 22 '18 at 8:17
add a comment |
I've found that a good old system reboot will do the trick, however if that doesn't work, this fix has worked quite often.
If you can’t open or type anything in the Windows 10 search menu, please try one or both of these methods:
Method 1: Right click on the start menu or press Windows + X keys on the keyboard, select and open Command prompt (admin). Then enter the below commands and hit Enter key:
Command 1:
PowerShell -ExecutionPolicy Unrestricted
Now enter the below command and hit Enter key:
Command 2:
Get-AppXPackage -AllUsers |Where-Object {$.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)AppXManifest.xml"}
If the issue still persist, follow the second method:
Method 2: Open the Task Manager by pressing CTRL+Shift+ESC keys. Or you can open it by right clicking on the taskbar if it works.
Then click File an then Run New Task. Make sure you have a check mark beside “Create this task with administrative privileges”. Now type Powershell.
Type the following in the Powershell prompt:
Command: $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + 'AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Wait till the process completed and then close the Powershell window. Now, reboot the computer and check if that fixed the issue.
1
For me both commands end with errors ;(
– Nickon
Apr 22 '18 at 8:17
add a comment |
I've found that a good old system reboot will do the trick, however if that doesn't work, this fix has worked quite often.
If you can’t open or type anything in the Windows 10 search menu, please try one or both of these methods:
Method 1: Right click on the start menu or press Windows + X keys on the keyboard, select and open Command prompt (admin). Then enter the below commands and hit Enter key:
Command 1:
PowerShell -ExecutionPolicy Unrestricted
Now enter the below command and hit Enter key:
Command 2:
Get-AppXPackage -AllUsers |Where-Object {$.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)AppXManifest.xml"}
If the issue still persist, follow the second method:
Method 2: Open the Task Manager by pressing CTRL+Shift+ESC keys. Or you can open it by right clicking on the taskbar if it works.
Then click File an then Run New Task. Make sure you have a check mark beside “Create this task with administrative privileges”. Now type Powershell.
Type the following in the Powershell prompt:
Command: $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + 'AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Wait till the process completed and then close the Powershell window. Now, reboot the computer and check if that fixed the issue.
I've found that a good old system reboot will do the trick, however if that doesn't work, this fix has worked quite often.
If you can’t open or type anything in the Windows 10 search menu, please try one or both of these methods:
Method 1: Right click on the start menu or press Windows + X keys on the keyboard, select and open Command prompt (admin). Then enter the below commands and hit Enter key:
Command 1:
PowerShell -ExecutionPolicy Unrestricted
Now enter the below command and hit Enter key:
Command 2:
Get-AppXPackage -AllUsers |Where-Object {$.InstallLocation -like "*SystemApps*"} | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($.InstallLocation)AppXManifest.xml"}
If the issue still persist, follow the second method:
Method 2: Open the Task Manager by pressing CTRL+Shift+ESC keys. Or you can open it by right clicking on the taskbar if it works.
Then click File an then Run New Task. Make sure you have a check mark beside “Create this task with administrative privileges”. Now type Powershell.
Type the following in the Powershell prompt:
Command: $manifest = (Get-AppxPackage Microsoft.WindowsStore).InstallLocation + 'AppxManifest.xml' ; Add-AppxPackage -DisableDevelopmentMode -Register $manifest
Wait till the process completed and then close the Powershell window. Now, reboot the computer and check if that fixed the issue.
answered Aug 9 '17 at 16:08
Easton James HarveyEaston James Harvey
1626
1626
1
For me both commands end with errors ;(
– Nickon
Apr 22 '18 at 8:17
add a comment |
1
For me both commands end with errors ;(
– Nickon
Apr 22 '18 at 8:17
1
1
For me both commands end with errors ;(
– Nickon
Apr 22 '18 at 8:17
For me both commands end with errors ;(
– Nickon
Apr 22 '18 at 8:17
add a comment |
I had the same issue. After looking at many different solutions, what worked for me was as follows:
Click on the start menu and locate the Cortana app in the apps lookup. Right-click -> more -> app settings. Scroll down to Reset and hit the reset button. Worked instantly for me and could start searching through the Cortana search.
add a comment |
I had the same issue. After looking at many different solutions, what worked for me was as follows:
Click on the start menu and locate the Cortana app in the apps lookup. Right-click -> more -> app settings. Scroll down to Reset and hit the reset button. Worked instantly for me and could start searching through the Cortana search.
add a comment |
I had the same issue. After looking at many different solutions, what worked for me was as follows:
Click on the start menu and locate the Cortana app in the apps lookup. Right-click -> more -> app settings. Scroll down to Reset and hit the reset button. Worked instantly for me and could start searching through the Cortana search.
I had the same issue. After looking at many different solutions, what worked for me was as follows:
Click on the start menu and locate the Cortana app in the apps lookup. Right-click -> more -> app settings. Scroll down to Reset and hit the reset button. Worked instantly for me and could start searching through the Cortana search.
answered Jan 11 at 10:59
OrkemOrkem
1
1
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.
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%2f1239275%2fwindows-10-start-menu-and-search-not-working%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