Right-click context menu in Windows Explorer is always slow/hanging
I noticed that whenever I click on any folder in Windows Explorer (and many times on files), there will be a noticeable lag. I discovered that the cause of this turned out to be Google Drive and that disabling context menu options using apps like ShellExView or manually editing registry settings would solve the slow/hanging problem.
However: What if I sometimes want to still use the Google Drive context menu options in case I want to share a link to a folder? It's annoying to be forced to have to either completely disable this useful feature or deal with the right-click menu being constantly slow all time.
The problem (before/after exiting Google Drive):
So, the question is: How can I get the best of both worlds? That is: Faster right-click while also being able to occasionally access Google Drive's useful share features?
windows context-menu google-drive google-drive-file-stream
add a comment |
I noticed that whenever I click on any folder in Windows Explorer (and many times on files), there will be a noticeable lag. I discovered that the cause of this turned out to be Google Drive and that disabling context menu options using apps like ShellExView or manually editing registry settings would solve the slow/hanging problem.
However: What if I sometimes want to still use the Google Drive context menu options in case I want to share a link to a folder? It's annoying to be forced to have to either completely disable this useful feature or deal with the right-click menu being constantly slow all time.
The problem (before/after exiting Google Drive):
So, the question is: How can I get the best of both worlds? That is: Faster right-click while also being able to occasionally access Google Drive's useful share features?
windows context-menu google-drive google-drive-file-stream
add a comment |
I noticed that whenever I click on any folder in Windows Explorer (and many times on files), there will be a noticeable lag. I discovered that the cause of this turned out to be Google Drive and that disabling context menu options using apps like ShellExView or manually editing registry settings would solve the slow/hanging problem.
However: What if I sometimes want to still use the Google Drive context menu options in case I want to share a link to a folder? It's annoying to be forced to have to either completely disable this useful feature or deal with the right-click menu being constantly slow all time.
The problem (before/after exiting Google Drive):
So, the question is: How can I get the best of both worlds? That is: Faster right-click while also being able to occasionally access Google Drive's useful share features?
windows context-menu google-drive google-drive-file-stream
I noticed that whenever I click on any folder in Windows Explorer (and many times on files), there will be a noticeable lag. I discovered that the cause of this turned out to be Google Drive and that disabling context menu options using apps like ShellExView or manually editing registry settings would solve the slow/hanging problem.
However: What if I sometimes want to still use the Google Drive context menu options in case I want to share a link to a folder? It's annoying to be forced to have to either completely disable this useful feature or deal with the right-click menu being constantly slow all time.
The problem (before/after exiting Google Drive):
So, the question is: How can I get the best of both worlds? That is: Faster right-click while also being able to occasionally access Google Drive's useful share features?
windows context-menu google-drive google-drive-file-stream
windows context-menu google-drive google-drive-file-stream
asked Jan 17 at 5:48
chunk_splitchunk_split
7816
7816
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I've created a solution that allows you to get the both of best worlds:
- Speed up right click menu by disabling Google Drive options from the context menu, but...
- Still allows you to access them when holding down the shift key. This is also typically known as the "extended" right-click context menu.
Normally this isn't necessary and can configured to work this way by just adding an Extended
registry key. However, since Google Drive (a.k.a. Backup & Sync) utilizes the ContextMenuHandlers
registry key (see below) it cannot be hidden without doing it permanently or using a hack/workaround like this one.
I write an AutoHotkey script to workaround this problem with pretty good results. Notice how the first click is very fast, but the second one is much slower (the main problem) but still at least allows access to the Google Drive context options. I've posted the code here along with detailed instructions on how to set it up:
Script: https://github.com/patricknelson/google-drive-context-fix
How it works:
Basically, this is a hack. It just bludgeons the registry keys necessary for showing these context menus depending on if you're A.) In Windows Explorer at the time and B.) currently pressing the shift key or not. It's not pretty, but it allows you to access the context options when you want to without having them enabled all of the time.
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersDriveFS 28 or later
HKEY_CLASSES_ROOT*shellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOT*shellexContextMenuHandlersDriveFS 28 or later
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%2f1395225%2fright-click-context-menu-in-windows-explorer-is-always-slow-hanging%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I've created a solution that allows you to get the both of best worlds:
- Speed up right click menu by disabling Google Drive options from the context menu, but...
- Still allows you to access them when holding down the shift key. This is also typically known as the "extended" right-click context menu.
Normally this isn't necessary and can configured to work this way by just adding an Extended
registry key. However, since Google Drive (a.k.a. Backup & Sync) utilizes the ContextMenuHandlers
registry key (see below) it cannot be hidden without doing it permanently or using a hack/workaround like this one.
I write an AutoHotkey script to workaround this problem with pretty good results. Notice how the first click is very fast, but the second one is much slower (the main problem) but still at least allows access to the Google Drive context options. I've posted the code here along with detailed instructions on how to set it up:
Script: https://github.com/patricknelson/google-drive-context-fix
How it works:
Basically, this is a hack. It just bludgeons the registry keys necessary for showing these context menus depending on if you're A.) In Windows Explorer at the time and B.) currently pressing the shift key or not. It's not pretty, but it allows you to access the context options when you want to without having them enabled all of the time.
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersDriveFS 28 or later
HKEY_CLASSES_ROOT*shellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOT*shellexContextMenuHandlersDriveFS 28 or later
add a comment |
I've created a solution that allows you to get the both of best worlds:
- Speed up right click menu by disabling Google Drive options from the context menu, but...
- Still allows you to access them when holding down the shift key. This is also typically known as the "extended" right-click context menu.
Normally this isn't necessary and can configured to work this way by just adding an Extended
registry key. However, since Google Drive (a.k.a. Backup & Sync) utilizes the ContextMenuHandlers
registry key (see below) it cannot be hidden without doing it permanently or using a hack/workaround like this one.
I write an AutoHotkey script to workaround this problem with pretty good results. Notice how the first click is very fast, but the second one is much slower (the main problem) but still at least allows access to the Google Drive context options. I've posted the code here along with detailed instructions on how to set it up:
Script: https://github.com/patricknelson/google-drive-context-fix
How it works:
Basically, this is a hack. It just bludgeons the registry keys necessary for showing these context menus depending on if you're A.) In Windows Explorer at the time and B.) currently pressing the shift key or not. It's not pretty, but it allows you to access the context options when you want to without having them enabled all of the time.
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersDriveFS 28 or later
HKEY_CLASSES_ROOT*shellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOT*shellexContextMenuHandlersDriveFS 28 or later
add a comment |
I've created a solution that allows you to get the both of best worlds:
- Speed up right click menu by disabling Google Drive options from the context menu, but...
- Still allows you to access them when holding down the shift key. This is also typically known as the "extended" right-click context menu.
Normally this isn't necessary and can configured to work this way by just adding an Extended
registry key. However, since Google Drive (a.k.a. Backup & Sync) utilizes the ContextMenuHandlers
registry key (see below) it cannot be hidden without doing it permanently or using a hack/workaround like this one.
I write an AutoHotkey script to workaround this problem with pretty good results. Notice how the first click is very fast, but the second one is much slower (the main problem) but still at least allows access to the Google Drive context options. I've posted the code here along with detailed instructions on how to set it up:
Script: https://github.com/patricknelson/google-drive-context-fix
How it works:
Basically, this is a hack. It just bludgeons the registry keys necessary for showing these context menus depending on if you're A.) In Windows Explorer at the time and B.) currently pressing the shift key or not. It's not pretty, but it allows you to access the context options when you want to without having them enabled all of the time.
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersDriveFS 28 or later
HKEY_CLASSES_ROOT*shellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOT*shellexContextMenuHandlersDriveFS 28 or later
I've created a solution that allows you to get the both of best worlds:
- Speed up right click menu by disabling Google Drive options from the context menu, but...
- Still allows you to access them when holding down the shift key. This is also typically known as the "extended" right-click context menu.
Normally this isn't necessary and can configured to work this way by just adding an Extended
registry key. However, since Google Drive (a.k.a. Backup & Sync) utilizes the ContextMenuHandlers
registry key (see below) it cannot be hidden without doing it permanently or using a hack/workaround like this one.
I write an AutoHotkey script to workaround this problem with pretty good results. Notice how the first click is very fast, but the second one is much slower (the main problem) but still at least allows access to the Google Drive context options. I've posted the code here along with detailed instructions on how to set it up:
Script: https://github.com/patricknelson/google-drive-context-fix
How it works:
Basically, this is a hack. It just bludgeons the registry keys necessary for showing these context menus depending on if you're A.) In Windows Explorer at the time and B.) currently pressing the shift key or not. It's not pretty, but it allows you to access the context options when you want to without having them enabled all of the time.
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOTDirectoryshellexContextMenuHandlersDriveFS 28 or later
HKEY_CLASSES_ROOT*shellexContextMenuHandlersGDContextMenu
HKEY_CLASSES_ROOT*shellexContextMenuHandlersDriveFS 28 or later
answered Jan 17 at 5:48
chunk_splitchunk_split
7816
7816
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%2f1395225%2fright-click-context-menu-in-windows-explorer-is-always-slow-hanging%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