vistalover07
Sophomore Member
Posts: 179
OS: Project 2000
Theme: Constantly Changing/Maple
CPU: Intel I5-10400f/Celeron N3350
RAM: 16gb/4gb
GPU: RTX 3060 12GB/Intel HD Graphics 500
Computer Make/Model: ASUS X541NA
Member is Online
|
Post by vistalover07 on Oct 16, 2023 0:27:13 GMT -8
Is there any way I can replace the actual windows shutdown dialogue with this or is this pretty much just for Open-Shell or similar third-party shortcuts? Yeah, open the open shell settings, then click on "Customize start menu" then right click on empty space and select "Insert new item", after this in dropdown menu set item to "custom" then put this file in "command", give it a name and done!
|
|
|
Post by diaryproductsour on Nov 4, 2023 19:00:50 GMT -8
now i'm not a very smart person but with what am i supposed to use the / commands to change the style.
|
|
grand
New Member
Posts: 13
OS: Windows 10 Enterprise KN 2016 LTSB
Theme: Modern/Classic Hybrid (Aerolite + BasicTheme)
CPU: i7-3770 @ 4.55GHz
RAM: 16GB DDR3 2400MHz
GPU: GTX 1070Ti
|
Post by grand on Nov 6, 2023 5:29:32 GMT -8
Is there any way I can replace the actual windows shutdown dialogue with this or is this pretty much just for Open-Shell or similar third-party shortcuts? Yeah, open the open shell settings, then click on "Customize start menu" then right click on empty space and select "Insert new item", after this in dropdown menu set item to "custom" then put this file in "command", give it a name and done! Do you know if it's possible to replace the actual "Shut Down..." button in the classic menu rather than adding a new custom item above it? I can't find a setting that allows editing that.
|
|
|
Post by ephemeralViolette on Nov 6, 2023 5:50:22 GMT -8
Yeah, open the open shell settings, then click on "Customize start menu" then right click on empty space and select "Insert new item", after this in dropdown menu set item to "custom" then put this file in "command", give it a name and done! Do you know if it's possible to replace the actual "Shut Down..." button in the classic menu rather than adding a new custom item above it? I can't find a setting that allows editing that. Not without modifying the Open-Shell source code. It isn't likely that Open-Shell would accept a PR, either.
|
|
herit://that1cutie
Sophomore Member
sad girl times
Posts: 165
OS: Windows 10
Theme: Shitbox Edition
|
Post by herit://that1cutie on Nov 17, 2023 21:29:54 GMT -8
Is there any way I can replace the actual windows shutdown dialogue with this or is this pretty much just for Open-Shell or similar third-party shortcuts? Yeah, open the open shell settings, then click on "Customize start menu" then right click on empty space and select "Insert new item", after this in dropdown menu set item to "custom" then put this file in "command", give it a name and done! I did not mean the Open Shell default, I have already done that. I meant the *actual* Windows default shutdown itself. This would make it so that I could use this program when I press alt-f4 in the desktop instead of the default Windows one, which does not have the dither. Again, I already did this in Open Shell and I want to be able to have this window pull up from the exit hotkey, not the Start Menu.
|
|
AnyKey
Sophomore Member
Posts: 248
OS: Windows 10 Pro 22H2
Theme: XP Classic Theme
CPU: AMD Ryzen 7 3700X
RAM: 16 GB 1333 MHz DDR4
GPU: Nvidia Geforce RTX 2070 Super
|
Post by AnyKey on Nov 17, 2023 21:51:00 GMT -8
Yeah, open the open shell settings, then click on "Customize start menu" then right click on empty space and select "Insert new item", after this in dropdown menu set item to "custom" then put this file in "command", give it a name and done! I did not mean the Open Shell default, I have already done that. I meant the *actual* Windows default shutdown itself. This would make it so that I could use this program when I press alt-f4 in the desktop instead of the default Windows one, which does not have the dither. Again, I already did this in Open Shell and I want to be able to have this window pull up from the exit hotkey, not the Start Menu. This mod should help you.
|
|
|
Post by amogos on Mar 18, 2024 6:54:05 GMT -8
how do i change the style
|
|
|
Post by ephemeralViolette on Mar 18, 2024 11:58:51 GMT -8
how do i change the style Provide a /style launch argument, as documented in the README.
|
|
|
Post by R.O.B. on Mar 19, 2024 21:10:18 GMT -8
I noticed that this is missing the ability to cleanly exit explorer.exe by pressing Ctrl + Alt + Shift while pressing the Cancel button (or just closing the dialog in general). After doing a bit of research into how Windows handles this, I was able to implement this feature myself. In the HandleShutdown function, this code is executed when the dialog is closed: case SHTDN_NONE: break;
Simply adding these lines of code before the break is all it takes to get this working: if ((GetAsyncKeyState(VK_LCONTROL) || GetAsyncKeyState(VK_RCONTROL)) && GetAsyncKeyState(VK_MENU) && (GetAsyncKeyState(VK_LSHIFT) || GetAsyncKeyState(VK_RSHIFT))) { HWND hWndTray = FindWindow(L"Shell_TrayWnd", NULL); PostMessage(hWndTray, 0x5B4, 0, 0); }
I don't do a whole lot of coding, so I'm not 100% sure that this is the best solution. But it does seem to get the job done well enough. Hope this helps anyone else who was missing this functionality! Compiled version: ClassicShutdown.zip (78.9 KB)
|
|