Skip to main content

Programs disappear from All Programs in XP

The Problem:-
When you Click Start button and navigate to "All Programs",you find the menu is missing.





Resolution 1:   The only way I found around it was to do a system restore to a previous date and that fixed the problem
Resolution 2:
Start>Run>Regedit>ok
Now navigate to the following keys:-
HKEY CURRENT USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell FoldersSet Start Menu value to "%USERPROFILE%\Start Menu"

HKEY LOCAL MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders Set Common Start Menu value to "%ALLUSERSPROFILE%\Start Menu"

Close the registry editor and restart the machine



****************************************************************************  



Comments

Popular posts from this blog

Installing Nagios 4 on Ubuntu 14 04 LTS

Create a list of local administrators with PowerShell

1.        Create folder :    C:\Temp 2.        Save a text file with the name servers.txt and add server names 3.        Create a .PS1 file with the name “ Get-LocalGroupMembers . ps1 ”with below PowerShell code: **********************************************************     [ CmdletBinding () ] Param (     [ Parameter (    ValueFromPipeline = $true ,                 ValueFromPipelineByPropertyName = $true                 ) ]     [ string []]     $ComputerName = $env:ComputerName ,     [ Parameter () ]     [ string ]     $LocalGroupName = "Administrators" ,   ...