Main Forum > General Computer Support

Windows 10 Start button not working

<< < (2/4) > >>

Shane:
You have to make sure to open powershell as administrator for that command to work by the way :wink:

Shane

jhapperson:

--- Quote from: Shane on August 27, 2015, 02:09:14 pm ---You have to make sure to open powershell as administrator for that command to work by the way :wink:

Shane

--- End quote ---
I had a hard time getting to powershell as administrator to do this.  I am not blaming your software since I have been peeling the onion of Win 10.  It is like playing wackamole!  Very frustrating.  I keep searching the web for fixes to the current problem.  That is how I found your software!  I love this site.

professor_jonny:
I'm having the same problem and it has to re deploy the packages using the power shell script but after a restart the problem come's back :-(

Is there a way to permanently fix this issue this issue?
the issuie is tied to me runnning ccleaner or free registry defrag.

I did a fresh install ran those programs and the problem came up I then reformatted and did the same thing and verified one of these two programs caused this issues.

As you can imagine I would like to find the cause and repair it is there some way I can take a before and after registry image and compare the two in an easy way to find the problem or offending keys causing the problem?

I'm using the same power shell script above but I made it start up in a admin window using some trickery in the script but I have to run it every time I start windows or the start menu and all the metro apps don't work.

I had to enable execution of scripts from power shell but it automatically fixes my problem on boot now.


--- Code: ---function IsAdministrator
{
    $Identity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
    $Principal = New-Object System.Security.Principal.WindowsPrincipal($Identity)
    $Principal.IsInRole([System.Security.Principal.WindowsBuiltInRole]::Administrator)
}


function IsUacEnabled
{
    (Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Policies\System).EnableLua -ne 0
}

#

#
if (!(IsAdministrator))
{
    if (IsUacEnabled)
    {
        [string[]]$argList = @('-NoProfile', '-NoExit', '-File', $MyInvocation.MyCommand.Path)
        $argList += $MyInvocation.BoundParameters.GetEnumerator() | Foreach {"-$($_.Key)", "$($_.Value)"}
        $argList += $MyInvocation.UnboundArguments
        Start-Process PowerShell.exe -Verb Runas -WorkingDirectory $pwd -ArgumentList $argList
        return
    }
    else
    {
        throw "You must be administrator to run this script"
    }
}
Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
exit
--- End code ---

pablo204:
Hi,

could you please tell me how I can open powershell as admin if i cannot go into the start menu?  I also have the same problem - i cant click on start menu nor the serch bar nor the icons on the right.

Thanks

Julian:
Can you run a batch file as administrator?
--- Quote from: pablo204 on September 05, 2015, 01:23:40 am ---Hi,

could you please tell me how I can open powershell as admin if i cannot go into the start menu?  I also have the same problem - i cant click on start menu nor the serch bar nor the icons on the right.

Thanks

--- End quote ---

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version