Bear
Well-Known Member
- Joined
- Sep 29, 2016
- Messages
- 128
- Thread Author
-
- #1
Ok, idk what in the world is going on but suddenly yesterday or day before the entire metro thing looks weird..
it's like there is a gray skin cast over the area.. It started about the same time as the faulty nvidia driver update.
the tiles got stuck flashing and then I restarted and that problem went away but had other issues with programs.. upgraded nvidia again last night.. other issues fixed but not this.
Any clue?
it's like there is a gray skin cast over the area.. It started about the same time as the faulty nvidia driver update.
the tiles got stuck flashing and then I restarted and that problem went away but had other issues with programs.. upgraded nvidia again last night.. other issues fixed but not this.
Any clue?
Last edited by a moderator:
Solution
You can try the following. I'd recommend running the following code as a script because the first two commands need to run pretty quick together
First open a elevated powershell prompt and type Set-ExecutionPolicy -Scope LocalMachine this will allow scripts to be run.
Copy the following code into a file and name it whatever.ps1
Then run it from the...
First open a elevated powershell prompt and type Set-ExecutionPolicy -Scope LocalMachine this will allow scripts to be run.
Copy the following code into a file and name it whatever.ps1
Code:
Stop-Process -Name "ShellExperienceHost"
Rename-Item "$($env:USERPROFILE)\Appdata\local\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy" "$($env:USERPROFILE)\Appdata\local\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy.old"
Add-AppxPackage -Path "C:\Windows\SystemApps\ShellExperienceHost_cw5n1h2txyewy\AppxManifest.xml" -Register -DisableDevelopmentMode
Then run it from the...
- Joined
- May 25, 2009
- Messages
- 6,659
Hi
That looks like it's applying transparency to one of the layers and showing what's behind it.
Have you messed around with the color setting to see if it changes, maybe try a different theme and then switch back etc.
See of there's someplace to switch off transparency.
Mike
There is a place to turn transparency on and off under "Colors", see if that helps.
That looks like it's applying transparency to one of the layers and showing what's behind it.
Have you messed around with the color setting to see if it changes, maybe try a different theme and then switch back etc.
See of there's someplace to switch off transparency.
Mike
There is a place to turn transparency on and off under "Colors", see if that helps.
Last edited:
- Joined
- Jul 4, 2015
- Messages
- 8,998
I have seen the flashing titles before, but not the hazy look. The start menu is handled by the ShellExperieceHost.exe process. You can try killing this process and see if that temporarily resolves the issue. It should automatically respawn.
Bear
Well-Known Member
- Joined
- Sep 29, 2016
- Messages
- 128
- Thread Author
-
- #5
yeah, didn't help.. was strange is change just happened... if you notice all the icons have heavy overlayHi
That looks like it's applying transparency to one of the layers and showing what's behind it.
Have you messed around with the color setting to see if it changes, maybe try a different theme and then switch back etc.
See of there's someplace to switch off transparency.
Mike
There is a place to turn transparency on and off under "Colors", see if that helps.
- Joined
- Jul 4, 2015
- Messages
- 8,998
You can try the following. I'd recommend running the following code as a script because the first two commands need to run pretty quick together
First open a elevated powershell prompt and type Set-ExecutionPolicy -Scope LocalMachine this will allow scripts to be run.
Copy the following code into a file and name it whatever.ps1
Then run it from the elevated powershell prompt C:\...pathtpwhatever.sp1
This should reset the Start Menu
First open a elevated powershell prompt and type Set-ExecutionPolicy -Scope LocalMachine this will allow scripts to be run.
Copy the following code into a file and name it whatever.ps1
Code:
Stop-Process -Name "ShellExperienceHost"
Rename-Item "$($env:USERPROFILE)\Appdata\local\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy" "$($env:USERPROFILE)\Appdata\local\Packages\Microsoft.Windows.ShellExperienceHost_cw5n1h2txyewy.old"
Add-AppxPackage -Path "C:\Windows\SystemApps\ShellExperienceHost_cw5n1h2txyewy\AppxManifest.xml" -Register -DisableDevelopmentMode
Then run it from the elevated powershell prompt C:\...pathtpwhatever.sp1
This should reset the Start Menu
Bear
Well-Known Member
- Joined
- Sep 29, 2016
- Messages
- 128
- Thread Author
-
- #7
Code:
Windows PowerShell
Copyright (C) 2016 Microsoft Corporation. All rights reserved.
PS C:\WINDOWS\system32> Set-ExecutionPolicy -Scope LocalMachine
cmdlet Set-ExecutionPolicy at command pipeline position 1
Supply values for the following parameters:
ExecutionPolicy:
Set-ExecutionPolicy : Cannot bind parameter 'ExecutionPolicy'. Cannot convert value "" to type
"Microsoft.PowerShell.ExecutionPolicy". Error: "The identifier name cannot be processed because it is either too
similar or identical to the following enumerator names: Unrestricted, RemoteSigned, AllSigned, Restricted, Default,
Bypass, Undefined. Use a more specific identifier name."
At line:1 char:1
+ Set-ExecutionPolicy -Scope LocalMachine
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Set-ExecutionPolicy], ParameterBindingException
+ FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.PowerShell.Commands.SetExecutionPolicyCommand
PS C:\WINDOWS\system32> Set-ExecutionPolicy -Scope LocalMachine
cmdlet Set-ExecutionPolicy at command pipeline position 1
Supply values for the following parameters:
ExecutionPolicy: c:\reset-startmenu.ps1
Set-ExecutionPolicy : Cannot bind parameter 'ExecutionPolicy'. Cannot convert value "c:\reset-startmenu.ps1" to type
"Microsoft.PowerShell.ExecutionPolicy". Error: "Unable to match the identifier name c:\reset-startmenu.ps1 to a valid
enumerator name. Specify one of the following enumerator names and try again:
Unrestricted, RemoteSigned, AllSigned, Restricted, Default, Bypass, Undefined"
At line:1 char:1
+ Set-ExecutionPolicy -Scope LocalMachine
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidArgument: (:) [Set-ExecutionPolicy], ParameterBindingException
+ FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.PowerShell.Commands.SetExecutionPolicyCommand
PS C:\WINDOWS\system32> Set-ExecutionPolicy -Scope LocalMachine
Similar threads
- Replies
- 0
- Views
- 23
- Solved
- Replies
- 2
- Views
- 4K