-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to load PowerToys settings app version 0.58.0 #18015
Comments
/bugreport |
I think it's my same problem: |
I didn't even get error message. 😆 So you got atleast something. |
Hi @krystofkrticka |
@boromyr do you have installed all new dependencies for PowerToys because there were some changes to them. For example I have all of them .NET 6.0.4, WebView2 and Windows App SDK Runtime 1.0.3 |
@davidegiacometti Tried that and still same issue. Weird thing is that on my other computer it works just fine. |
All installed, Windows App SDK Runtime 1.0.3 was installed during installation. |
PowerToys setup install all the new requirements. Unfortunately from a quick look to the logs I can't find relevant informations. |
I don't see anything related to powertoys in event viewer. |
Settings doesn't open. Probably the same problem: |
@boromyr |
Same here, double clicking or clicking right click>settings does nothing |
The system detected an overflow of a stack-based buffer in |
Same issue for me as well. Edition Windows 11 Pro |
In some of the bug reports I check that have errors in the event viewer for Settings, pointing to a crash in Could users experiencing this try to see if they can generate a dump file to send through GitHub? One way of achieving this would be by creating an entry in the Registry Editor ( It should look something like this in the end (but for Settings instead of KeyboardManagerEditor): After that, please replicate the bug, navigate to The idea is that this could show us the stack trace and help pinpoint what the issue might be. |
@jaimecbernardo tried that but I didn't get any DMP file. Should I try to somehow hook that process with Visual Studio. Because I already have installed all required packages required to build PowerToys from source. |
Facing the same issue once again; cannot launch any GUI based functionality or settings. Here's my dump/bug report: |
I tried this with the previous versions 0.60.0 and 0.58.0 and settings doesn't open either. W11, no riva tuner or MSI. Very odd because 0.58.0 was released before I started using my current laptop, meaning I started with 0.58.0 on my laptop. So 0.58.0 settings opened before, but now it does not. |
Facing exactly with my PC, and it worked perfectly alright a few months ago. |
I was experiencing this same issue, the inability to open settings after install or upgrade. I was able to replicate it on my machine and resolved it by checking the "Unblock" option on the PowerToys installer and redeploying it. We download the exe and deploy it to machines with a deployment software (PDQ) which was working great until this issue crept up. Checking that box on the file properties has now alleviated the issue, for now at least. I hope this might help others. Thanks. |
I actually do not use the normal installer, but rather the wix package to build an installer from it, so I do not think this applies to me. |
I'm not finding the Security part at the bottom show up in the general tab when I open up properties of the installer. Am on a work laptop though. |
Well, while unchecking that and doing a reinstall to my station and a few others seems to have worked, it may have been luck as we are still having the issue on other stations. None of our stations have either MSI Afterburner or RivaTuner. I've had luck fixing the issue with repeated uninstall and reinstall until it randomly works. |
My issues with opening settings went away with the latest 0.65 release. Now, all working as expected. Thanks to the devs!! |
Well, I had this same issue somewhere around 0.63 I believe. I had to enable UAC and it immediately started working again, after that I could disable UAC once more and PT settings kept working. It didn't return since. I never run PT as admin, user-mode only. |
I'm not running PowerToys as admin either, and my UAC is enabled as expected. |
Re-enabling UAC worked for me. |
PowerToysReport_2023-01-05-09-55-28.zip I am still facing this same issue when trying to run as Admin on Windows 10 & PowerToys v0.64.1 |
@JFergen Can you try updating to latest version v0.66 and see if the issue is still there? |
That seems to have fixed it actually!
|
Still happening with 0.66 - first happened for me with 0.64. |
@MoritzMH Can you attach the latest bug report after updating to v0.66? Thanks |
PowerToysReport_2023-01-12-08-52-34.zip Having the problem again with v0.66 :( |
Same, W11 Pro, version 21H2 OS build 22000.1335, no MSI Afterburner or RivaTuner, PowerToysReport_2023-01-13-23-35-49.zip |
Sorry, what exactly should I attach?
Stefan Markovic ***@***.***> schrieb am Mi. 11. Jan. 2023 um
08:48:
|
PowerToysReport_2023-01-17-08-14-40.zip The Settings do not open. I'm working with Admin-Privileges, no MSI Afterburner or RivaTuner. |
PowerToysReport_2023-01-17-19-04-33.zip |
Same thing here. Don't know why this got closed. It's been broken for almost 9 months now 😕 |
TL;DR: Try running this windows install uninstall troubleshooter thing then uninstall your current version. Then install the latest version. If that doesn't work, follow the rest of this below. Best of luck! 🙃 Link to download uninstall install troubleshooter After rolling up my sleeves and deciding that enough is enough I spent the whole morning working on it and finally got it to work. I don't know how much of this will help others, but here are the steps that I went through.
I don't know how much of the above is necessary but that's what worked for me. I'm attaching the Program install uninstall troubleshooter program here as well as the scripts that I used to clear the registry. Personally I'd try just running the Program Install Uninstall first and then try uninstalling through the installer before trying to replicate the whole mess above. There was another registry key that I deleted manually as well by just looking for keys with power toys in the registry. EVERYTHING IS DO AT YOUR OWN RISK. And I DO NOT recommend messing with registries and such unless you know what you're doing and are aware of the consequences (which are that you can corrupt your whole system and lose all your data). Good luck! 😁👍 Link to download uninstall install troubleshooter #CleanUp tool 1.0
#Copyright (C) 2022 Microsoft Corporation
#Tool to clean PowerToys settings inside AppData folder and registry
#Deleting json settings files in %AppData%/Local/Microsoft/PowerToys.
[String]$SettingsPath = $Env:LOCALAPPDATA + '\Microsoft\PowerToys'
if (Test-Path -Path $SettingsPath -PathType Any)
{
Remove-Item -Path $SettingsPath -Recurse
}
#Deleting SuperFancyZones registry key
[String]$SuperFancyZones = "HKCU:\Software\SuperFancyZones"
if (Test-Path -Path $SuperFancyZones -PathType Any)
{
Remove-Item -Path $SuperFancyZones -Recurse
}
#Deleting PowerRename registry key
[String]$PowerRename = "HKCU:\Software\Microsoft\PowerRename"
if (Test-Path -Path $PowerRename -PathType Any)
{
Remove-Item -Path $PowerRename -Recurse
}
#Deleting ImageResizer registry key
[String]$ImageResizer = "HKCU:\Software\Microsoft\ImageResizer"
if (Test-Path -Path $ImageResizer -PathType Any)
{
Remove-Item -Path $ImageResizer -Recurse
}
#Deleting DontShowThisDialogAgain registry key
[String]$DontShowThisDialogAgain = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\DontShowMeThisDialogAgain\{e16ea82f-6d94-4f30-bb02-d6d911588afd}"
if (Test-Path -Path $DontShowThisDialogAgain -PathType Any)
{
Remove-Item -Path $DontShowThisDialogAgain
} |
Updating to 0.67.0 fixed this for me |
0.67 didn't work for me. My (6th) bug report is attached. @taeuscherpferd I tried doing your method, first used uninstall troubleshooter to uninstall it, said it made some changes, but upon install no settings popup. Steps 3-7 I have no idea what's up so did nothing based off them. So I uninstalled again using the powertoys uninstaller from step 2. I ran each of your powershell commands, 1 chunk at a time, 5 total. If I ran all together, it gave a error saying something like "Cannot remove item. The directory is not empty." I also added the -Force flag to the Remove-Item lines. When I clicked the latest release installer, it showed up a popup that said modify setup, and the only options were uninstall or cancel. I don't know why it says I had powertoys installed. So I clicked uninstalled and launched the installer again and installed it. With the latest release 0.67, settings still does not show. Here is the bug report after doing these steps. Wish I knew enough of debugging and .NET to fix this: PowerToysReport_2023-02-04-14-12-29.zip |
@kleenkanteen Sorry to hear that your still having trouble. :( Something that I thought of while reading your comment here. Do you have multiple versions of powertoys installed in the add / remove software section of settings? I remember I had 2 versions while I was going through this issue. Something that might have gotten lost in the wall of instructions up there was that I had to use the same version to uninstall that I had originally installed with So for example, when I saw my duplicated versions in the add / remove software section I went and found an installer that matched the earlier version, and used that installer to uninstall. Then used the latest version to install. If you don't know which installer you used originally my best advice would be to try using version 0.64.1. I think that that is the one that I used to solve it. Best of luck to you, hope it helps 🤞 * For reference this is the add / remove dialog I was talking about 👍 |
@taeuscherpferd I think you are using w10? I am using w11 so my apps screen looks a bit different. Pic attached. I don't remember 2 versions being installed and on the apps page. Here is how it looks now: I only used the keyboard remapping part of powertoys. But I've switched to autohotkey since. So long powertoys, salute |
Microsoft PowerToys version
0.58.0
Running as admin
Area(s) with issue?
Settings
Steps to reproduce
This started happening after updating PowerToys to version 0.58.0
✔️ Expected Behavior
Settings app opens after clicking settings button in tray.
❌ Actual Behavior
Nothing happens when clicking settings button in tray.
Other Software
No response
The text was updated successfully, but these errors were encountered: