-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Description
⚙️ Issue Checklist
- I have read the guidelines.
- I checked for duplicate issues.
- I searched for existing discussions.
- I checked for an existing pull request that addresses this issue.
📜 What part of Winutil are you having issues with?
Tweaks
📝 Provide a clear and concise description of the issue.
The Right-click menu tweak does nothing, PowerShell output does not seem to match invoke script listed in documentation. Clicking Undo Selected Tweaks reverses the same value as running the tweak does.
🔄 Steps to reproduce the issue.
1: Run Winutil
2: Go to Tweaks, enable Set Classic Right-Click Menu
3: Click Run Tweaks
4: Watch output
❌ Paste the full error output (if available).
Running Script for WPFTweaksRightClickMenu
Restarting explorer.exe ...
Set HKCU:\Software\Microsoft\Windows\CurrentVersion\CrossDeviceResume\Configuration\IsResumeAllowed to 1
-- Tweaks are Finished ---
Running Script for WPFTweaksRightClickMenu
Restarting explorer.exe ...
Set HKCU:\Software\Microsoft\Windows\CurrentVersion\CrossDeviceResume\Configuration\IsResumeAllowed to 0
--- Undo Tweaks are Finished ---
🖼️ Additional context.
This is the invoke script and the undo script listed in the documentation:
"
New-Item -Path "HKCU:\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" -Name "InprocServer32" -force -value ""
Write-Host Restarting explorer.exe ...
$process = Get-Process -Name "explorer"
Stop-Process -InputObject $process
"
"
Remove-Item -Path "HKCU:\Software\Classes\CLSID{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" -Recurse -Confirm:$false -Force
# Restarting Explorer in the Undo Script might not be necessary, as the Registry change without restarting Explorer does work, but just to make sure.
Write-Host Restarting explorer.exe ...
$process = Get-Process -Name "explorer"
Stop-Process -InputObject $process
"
I tried this in the paid version and the free version, both produce the same result.
I haven't been able to find anything talking about this in the github issues or the discord server support channel. If you have any insights, I'd love to hear them. Thank you.