Automate restoration of visual effects after a WebEx call ends
When I participate in a WebEx call that involves screen sharing (even if I'm not sharing my screen), WebEx disables some of the visual effects (Windows 10 1709) under "Advanced System Settings">Advanced>Performance>Settings, notably "Show window contents while dragging".
When the call ends, the effects remain disabled. To get them back I have to open up the dialog (which still shows everything as checked and set to "Adjust for best appearance"), switch it off of best appearance, and then switch it back and hit OK.
I used ProcMon to sniff the reg keys that get set when I hit OK on the dialog box, but setting them manually doesn't restore the effects.
How can I either prevent WebEx from disabling the effects or script restoring them to a single button push?
windows windows-registry visual-effects webex
add a comment |
When I participate in a WebEx call that involves screen sharing (even if I'm not sharing my screen), WebEx disables some of the visual effects (Windows 10 1709) under "Advanced System Settings">Advanced>Performance>Settings, notably "Show window contents while dragging".
When the call ends, the effects remain disabled. To get them back I have to open up the dialog (which still shows everything as checked and set to "Adjust for best appearance"), switch it off of best appearance, and then switch it back and hit OK.
I used ProcMon to sniff the reg keys that get set when I hit OK on the dialog box, but setting them manually doesn't restore the effects.
How can I either prevent WebEx from disabling the effects or script restoring them to a single button push?
windows windows-registry visual-effects webex
add a comment |
When I participate in a WebEx call that involves screen sharing (even if I'm not sharing my screen), WebEx disables some of the visual effects (Windows 10 1709) under "Advanced System Settings">Advanced>Performance>Settings, notably "Show window contents while dragging".
When the call ends, the effects remain disabled. To get them back I have to open up the dialog (which still shows everything as checked and set to "Adjust for best appearance"), switch it off of best appearance, and then switch it back and hit OK.
I used ProcMon to sniff the reg keys that get set when I hit OK on the dialog box, but setting them manually doesn't restore the effects.
How can I either prevent WebEx from disabling the effects or script restoring them to a single button push?
windows windows-registry visual-effects webex
When I participate in a WebEx call that involves screen sharing (even if I'm not sharing my screen), WebEx disables some of the visual effects (Windows 10 1709) under "Advanced System Settings">Advanced>Performance>Settings, notably "Show window contents while dragging".
When the call ends, the effects remain disabled. To get them back I have to open up the dialog (which still shows everything as checked and set to "Adjust for best appearance"), switch it off of best appearance, and then switch it back and hit OK.
I used ProcMon to sniff the reg keys that get set when I hit OK on the dialog box, but setting them manually doesn't restore the effects.
How can I either prevent WebEx from disabling the effects or script restoring them to a single button push?
windows windows-registry visual-effects webex
windows windows-registry visual-effects webex
edited Jan 12 at 5:32
Techrocket9
asked Feb 2 '18 at 17:26
Techrocket9Techrocket9
2001113
2001113
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
These settings are found in the registry under HKEY_CURRENT_USERControl PanelDesktop.
For example, "Show window contents while dragging" is found in the key
DragFullWindows, and its value should be 1 to enable.
To apply, you will need to sign out and sign in again or to restart the computer.
Documentation about DragFullWindows and other options can be found
in this Microsoft article.
1
I'm specifically looking for a solution that doesn't require logging out or rebooting; I want to do the same thing that the dialog I mentioned in my question does.
– Techrocket9
Feb 2 '18 at 22:24
You can try, as after all this works for webex without any of this. At most, a little script that kills Explorer and restarts it is the same as logout+in.
– harrymc
Feb 2 '18 at 22:44
It's already 1 after WebEx does its damage.
– Techrocket9
Feb 5 '18 at 16:02
If you kill explorer and restart it, is this restored? You can do that via a .bat script with two lines:taskkill /f /im explorer.exeandstart explorer.exe.
– harrymc
Feb 5 '18 at 19:04
1
It is not restored.
– Techrocket9
Feb 6 '18 at 16:33
|
show 2 more comments
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%2f1291472%2fautomate-restoration-of-visual-effects-after-a-webex-call-ends%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
These settings are found in the registry under HKEY_CURRENT_USERControl PanelDesktop.
For example, "Show window contents while dragging" is found in the key
DragFullWindows, and its value should be 1 to enable.
To apply, you will need to sign out and sign in again or to restart the computer.
Documentation about DragFullWindows and other options can be found
in this Microsoft article.
1
I'm specifically looking for a solution that doesn't require logging out or rebooting; I want to do the same thing that the dialog I mentioned in my question does.
– Techrocket9
Feb 2 '18 at 22:24
You can try, as after all this works for webex without any of this. At most, a little script that kills Explorer and restarts it is the same as logout+in.
– harrymc
Feb 2 '18 at 22:44
It's already 1 after WebEx does its damage.
– Techrocket9
Feb 5 '18 at 16:02
If you kill explorer and restart it, is this restored? You can do that via a .bat script with two lines:taskkill /f /im explorer.exeandstart explorer.exe.
– harrymc
Feb 5 '18 at 19:04
1
It is not restored.
– Techrocket9
Feb 6 '18 at 16:33
|
show 2 more comments
These settings are found in the registry under HKEY_CURRENT_USERControl PanelDesktop.
For example, "Show window contents while dragging" is found in the key
DragFullWindows, and its value should be 1 to enable.
To apply, you will need to sign out and sign in again or to restart the computer.
Documentation about DragFullWindows and other options can be found
in this Microsoft article.
1
I'm specifically looking for a solution that doesn't require logging out or rebooting; I want to do the same thing that the dialog I mentioned in my question does.
– Techrocket9
Feb 2 '18 at 22:24
You can try, as after all this works for webex without any of this. At most, a little script that kills Explorer and restarts it is the same as logout+in.
– harrymc
Feb 2 '18 at 22:44
It's already 1 after WebEx does its damage.
– Techrocket9
Feb 5 '18 at 16:02
If you kill explorer and restart it, is this restored? You can do that via a .bat script with two lines:taskkill /f /im explorer.exeandstart explorer.exe.
– harrymc
Feb 5 '18 at 19:04
1
It is not restored.
– Techrocket9
Feb 6 '18 at 16:33
|
show 2 more comments
These settings are found in the registry under HKEY_CURRENT_USERControl PanelDesktop.
For example, "Show window contents while dragging" is found in the key
DragFullWindows, and its value should be 1 to enable.
To apply, you will need to sign out and sign in again or to restart the computer.
Documentation about DragFullWindows and other options can be found
in this Microsoft article.
These settings are found in the registry under HKEY_CURRENT_USERControl PanelDesktop.
For example, "Show window contents while dragging" is found in the key
DragFullWindows, and its value should be 1 to enable.
To apply, you will need to sign out and sign in again or to restart the computer.
Documentation about DragFullWindows and other options can be found
in this Microsoft article.
answered Feb 2 '18 at 17:49
harrymcharrymc
258k14271573
258k14271573
1
I'm specifically looking for a solution that doesn't require logging out or rebooting; I want to do the same thing that the dialog I mentioned in my question does.
– Techrocket9
Feb 2 '18 at 22:24
You can try, as after all this works for webex without any of this. At most, a little script that kills Explorer and restarts it is the same as logout+in.
– harrymc
Feb 2 '18 at 22:44
It's already 1 after WebEx does its damage.
– Techrocket9
Feb 5 '18 at 16:02
If you kill explorer and restart it, is this restored? You can do that via a .bat script with two lines:taskkill /f /im explorer.exeandstart explorer.exe.
– harrymc
Feb 5 '18 at 19:04
1
It is not restored.
– Techrocket9
Feb 6 '18 at 16:33
|
show 2 more comments
1
I'm specifically looking for a solution that doesn't require logging out or rebooting; I want to do the same thing that the dialog I mentioned in my question does.
– Techrocket9
Feb 2 '18 at 22:24
You can try, as after all this works for webex without any of this. At most, a little script that kills Explorer and restarts it is the same as logout+in.
– harrymc
Feb 2 '18 at 22:44
It's already 1 after WebEx does its damage.
– Techrocket9
Feb 5 '18 at 16:02
If you kill explorer and restart it, is this restored? You can do that via a .bat script with two lines:taskkill /f /im explorer.exeandstart explorer.exe.
– harrymc
Feb 5 '18 at 19:04
1
It is not restored.
– Techrocket9
Feb 6 '18 at 16:33
1
1
I'm specifically looking for a solution that doesn't require logging out or rebooting; I want to do the same thing that the dialog I mentioned in my question does.
– Techrocket9
Feb 2 '18 at 22:24
I'm specifically looking for a solution that doesn't require logging out or rebooting; I want to do the same thing that the dialog I mentioned in my question does.
– Techrocket9
Feb 2 '18 at 22:24
You can try, as after all this works for webex without any of this. At most, a little script that kills Explorer and restarts it is the same as logout+in.
– harrymc
Feb 2 '18 at 22:44
You can try, as after all this works for webex without any of this. At most, a little script that kills Explorer and restarts it is the same as logout+in.
– harrymc
Feb 2 '18 at 22:44
It's already 1 after WebEx does its damage.
– Techrocket9
Feb 5 '18 at 16:02
It's already 1 after WebEx does its damage.
– Techrocket9
Feb 5 '18 at 16:02
If you kill explorer and restart it, is this restored? You can do that via a .bat script with two lines:
taskkill /f /im explorer.exe and start explorer.exe .– harrymc
Feb 5 '18 at 19:04
If you kill explorer and restart it, is this restored? You can do that via a .bat script with two lines:
taskkill /f /im explorer.exe and start explorer.exe .– harrymc
Feb 5 '18 at 19:04
1
1
It is not restored.
– Techrocket9
Feb 6 '18 at 16:33
It is not restored.
– Techrocket9
Feb 6 '18 at 16:33
|
show 2 more comments
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%2f1291472%2fautomate-restoration-of-visual-effects-after-a-webex-call-ends%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