Cannot pin contact to start menu

I am trying to pin a contact to my start menu and for some reason, when I long press it, the pin to start option is greyed out and unavailable. Can anyone help?

Typically if you try to pin something to homescreen and its greyed out its already pinned.
Try scrolling down on homescreen.
If  i have helped at all a click on the white star below would be nice thanks.
Now using the Lumia 1520

Similar Messages

  • Pinning Apps to Start Menu

    I keep trying to pin a date from the save date app to my start menu and it will go there but if I try to drag and drop it elsewhere it just disappears.

    The trick is to pin the tiles the way you want them, then export the start screen layout and inject into your image.
    It's an awkward system, I know.
    http://blogs.technet.com/b/deploymentguys/archive/2012/10/26/start-screen-customization-with-mdt.aspx
    http://technet.microsoft.com/en-us/library/jj134269
    http://keithga.wordpress.com/2013/08/09/windows-8-1-start-screen-behind-the-scenes/
    Keith Garner - keithga.wordpress.com

  • Cannot reach Windows 7 start menu when using auto-hide

    I have my Windows 7 start menu set to auto-hide. When I am using Spotify in a maximized window, it is not possible to make it appear by moving the mouse to the bottom of the screen. Can someone reproduce this?

    Hi mqh,
    the blog you got this info from assumed that the file "Microsoft.WindowsAPICodePack.Shell.dll" is in the path you are running the Add-Type command. Trying to acquire
    this file can be tedious, since the links are dead, I finally used NuGet in my Visual Studio to get it.
    If you use this to add the library to your current VS Project (create one if necessary), you can find the .dll in one of the project subfolders.
    Cheers,
    Fred
    There's no place like 127.0.0.1

  • Can't pin Acrobat X Pro to Start menu

    My version of Acrobat is 10.1.0, installed in early July. I find that Pin to Start menu is not listed as an option on either the Acrobat X Pro entry or the Acrobat Distiller X entry in the Programs menu.
    With my prior version I had Acrobat pinned to the Start menu. It is an available option for other programs including Adobe Photoshop Elements.
    The Properties of the Acrobat X Pro entry say Target type = Application, Target location is blank, Target is Acrobat X Pro grayed out, Start in is blank, Shortcut key = None, Run = Normal window, Comment = blank, Find Target and Change Icon are grayed out, the Advanced Properties box says "Choose the advanced properties you want for this shortcut" and both options are grayed out but "Run in separate memory space" is checked.
    Added:
    I notice that for Elements in the Programs menu, Norton Security is listed in the right-click options, but not for the Acrobat entries.

    Dave, since you have been kind enough to try to help, can you tell me how to take advantage of the information that I see above my posting in the Adobe forum? I'm not seing it now as I compose this, but to the right of the dark magenta text that says the question status is still not Answered, there were two icons with notes. One said that there is already 1 correct answer (somewhere in the database I assume) and the other said that there are 2 helpful answers. Neither one of the icons or captions was a live link, so I didn't know what to do with them.
    Thanks in advance.

  • How to pin a tile for both modern UI IE and standard desktop IE to start menu in Windows 8.1?

    Hi,
    When we deploy new applications to users we use the new GPO for Win 8.1 called "Pin Apps to Start". There we specify the path to the application and it automatically pins to users start menu on log on.
    But we want to have both the modern UI IE and the standard desktop IE on start menu also, the modern UI IE is already on the start menu by default, but when we add the IE shortcut to the GPO setting it doesn't appear on users start menu. tried the following
    path: c:\program files\internet explorer\iexplore.exe
    anyone know how to do this in Windows 8.1?
    In Windows 8 it works, but since Microsoft blocked this feature to keep the start menu "clean", we need to use the Pin Apps to Start setting in a GPO.
    Kind regards, Magnus Lislevatn

    Hi,
    I want to know the detail GPO settings for the Internet Explorer, both Windows store and the desktop Internet Explorer, besides, does it work for Windows 7 system?
    The Windows store Internet Explorer is an app, it is not located in C:\Program Files, the desktop Internet Explorer is located at C:\Program Files\Internet Explorer.
    that’s why it doesn't appear on users start menu  when you add the IE shortcut to the GPO setting and tried the following path: c:\program files\internet explorer\iexplore.exe
    The suggestion I provided for now is to check whether it just happened to one Windows 8.1 machine, if this happens to any other system, the group policy is responsible for this, posting the group policy setting will help analyze this.
    Regards
    Wade Liu
    TechNet Community Support

  • Pin folder contents to Start Menu

    Hello,
    I know how to pin a single item to the start menu. I am using the following for a single item:
    Function fPinToStart
    Set objShell = CreateObject("Shell.Application")
    Set objFolder = objShell.NameSpace(strPinFrom)
    Set objFolderItem = objFolder.ParseName("google.lnk")
    wscript.echo objFolderItem.Name
    For Each verb In objFolderItem.Verbs()
    wscript.echo verb.name
    If verb.Name = "Pin to Start Men&u" Then
    verb.DoIt()
    End If
    Next
    End Function
    What I need to do though is take the contents of a folder and pin the contents to the start menu. The reason for this is we have 5 or 6 websites that need to easily be accessed on locked down systems. In order to make them easy to access we want to pin to
    the start menu. I know I can create 5 or 6 functions but it seems like I should be able to take the contents of a folder and somehow parse that data so that it can run each item separately. I am using the below to read the contents of a folder. Is there a
    way I can feed it into the above function so that each objFile can be looped through the For Each?
    Function fPinToStartFolder
    Set objShell = CreateObject("Shell.Application")
    Set objFolder = objFSO.GetFolder(strPinFrom)
    Set colFiles = objFolder.Files
    For Each objFile in colFiles
    wscript.echo objFile.Name
    Next
    End Function
    The way I look at it is objShell.NameSpace(strPinFrom) and objFolder.ParseName("google.lnk") need to be dynamic so that fPinToStartFolder can feed the data into fPinToStart one file at a time. Ofcourse the names of the functions are messy. They will
    change as I get a solution.

    Thanks Bill. That got me to a solution for unpinning. Just need to make some changes to my pinning script and I am done. Here is the unpin. Modify it the way you need it for pinning
    Function fGetUserPinnedStartMenu
    fGetUserPinnedStartMenu = "C:\Users\" & strUserName & "\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\StartMenu"
    End Function
    Function fGetFolderContents(objAppData)
    wscript.echo "Pinned Icons Location: " & objAppData
    Set objFolder = objFSO.GetFolder(objAppData)
    Set colFiles = objFolder.Files
    For Each objFile In colFiles
    wscript.echo objFile.Name
    fUnpinFromStart objFile.Name,objAppData
    Next
    End Function
    Function fUnpinFromStart(objFile,objAppData)
    wscript.echo "Unpinning " & objFile
    Set objShell = CreateObject("Shell.Application")
    Set objFolderUnpin = objShell.Namespace(objAppData)
    Set objFolderItem = objFolderUnpin.ParseName(objFile)
    For Each verb In objFolderItem.Verbs()
    If verb.Name = "Unpin from Start Men&u" Then
    verb.DoIt()
    End If
    Next
    End Function
    SET objNetwork = CreateObject("WScript.Network")
    SET objFSO = CreateObject("Scripting.FileSystemObject")
    SET WshShell = CreateObject("wscript.Shell")
    strUserName = objNetwork.UserName
    objAppData = fGetUserPinnedStartMenu
    fGetFolderContents objAppData

  • Why does Firefox show up in my Start Menu in safe mode?

    Almost always after closing Firefox it shows up pinned to my Start Menu in safe mode. What does this mean and why?
    == This happened ==
    A few times a week
    == some time ago

    See [[Firefox is stuck in Safe Mode]]

  • Start Menu Customization

    I've had to install Custom Shell to get the start menu to work the way I want. I like to create folders and move my app shortcuts into the folders. It clears up the clutter. Problem is, you have to go hunting for the folders to do this. Also, I prefer
    a windows 7 style start, so give that option to us.

    Hi,
    Windows 10 Technical Preview already make great progress on Windows Start Menu. If you prefer a Windows 7 style start, you can adopt to unpin all app from Start Menu, then you can got the Start Menu like the screen below:
    You also can choose pin Folder to Start Menu if you like.
    Roger Lu
    TechNet Community Support

  • 2nd Satellite where Start Menu Disappears

    My fiancee just bought a Toshiba Satellite laptop a couple of weeks ago.  It was meant to replace an  older one that seemed to be deteriorating as well as help us make the jump out of XP (I have my own desktop).  One of the problems that had been happening on her older one was that the start menu would disappear and re-appear, making it necessary that we hunt down all those relevant programs the long way.  One day, it finally disappeared for good.  That system had Windows XP on it.
    This one has Windows 7 and it has the same problem.  Just today, the start menu vanished.  I don't know if the start menu will return or if it is gone for good but I have never seen this problem before except on the two Toshiba laptops I have become familiar with.
    I would like to know this is easily fixed or if I should avoid Toshiba computers altogether.
    Thanks in advance.

    Satellite A505-S6980 
    when clicking on the Windows icon, the items that have normally appeared on the left due to frequent use or from having been pinned to the start menu are gone.  All that remained was "My Toshiba."
    So you're saying the Start menu is essentially empty? Use System Restore to bring it back.
       What is System Restore?
    -Jerry

  • Work Resources and Windows 8 Start Menu

    Is there any way to get the Work Resources folder content to automatically Pin to the Start Menu.

    Hi,
    I'm afraid there is no way to pin or map the content to Windows 8 Start Screen or desktop. Only two methods are allowed to access the RemoteApp, Desktop Connection and Web Access.
    Niki Han
    TechNet Community Support

  • Taskbar & Start Menu Bug: App Shortcuts set to Run as Admin don't open pinned/recent files in RaA

    This is pretty self-explanatory.
    Run in Admin does not kick in when launching a file via a Taskbar's pinned app icon, even when the pinned app has been set to 'Run in Admin' mode (under Properties -> Advanced).
    The same thing happens in the Start Menu -- the app can be set (Properties -> Advanced) to Run in Admin mode, and the file does not launch this way.
    Why is this a problem?  Because if one is supposed to use accounts like MS asks, then running as a standard user after having a file created in an admin account, that user cannot alter the doc in any way -- no saves work.  At least this is true for files not on the C partition.  The only way W7 permits saves is to run an app in Admin mode.
    (I've run into this countless times in the span of a few days with Notepad & PSPad.)
    If the W7 team wants to insist that docs won't automatically run in Admin mode under these conditions (which they should!!!!!!), then at least give users a right-click context menu option to Run as Admin from the recent/pinned items list.  Currently there is no such context menu option.
    Thereby, all recent items / pinned items are rendered a useless feature.....
    Still loving this OS.
    a.k.a.

    Sorry but this is not an answer. The answer to the question is that you cannot run pinned items with the same properties as the pinned program.
    I'll use Visual Studio as an option here but I'm assuming this is true for any program.
    Yes, right click on the pinned program and choose the Advanced settings and you can have it  run as administrator by default. For SharePoint development for example this is great (and required). You have to run Visual Studio as admin on the local box
    in order to deploy your solutions from within Visual Studio.
    Even if you pin the program to the start menu or taskbar after you've set it to run as administrator it works.
    What doesn't work are pinned files. Visual Studio will pin the last 5 or so solutions you've opened. This is handy if you're flipping back and forth between solutions and saves you an extra step when launching the program in that you can select it from the
    context menu that appears attached to the taskbar icon.
    However regardless of the setting of the pinned program, files launch in regular user mode and do not respect the "run as administrator" setting on the pinned program. I consider this a bug as it should respect the setting. And as nesmond mentioned, it makes
    pinning solutions in Visual Studio useless if you need to run the program as administrator. So the best scenario you have is to pin it and set it to run as administrator but then manually open the file after launching. There is no way to have the shortcuts
    that are pinned to run as administrator.

  • FF updated something so that history takes up whole bottom half of screen; I cannot surf, or even see start menu. I cannot change menu items so that I am asked before something is downloaded and uopdated automatically. These were NOT my settings!

    My browser was very slow, so I cleared cookies and cache. When FF (4.0) restarted, it said it had installed colourful tabs (which I ALREADY HAD). I opened FF and typed in mmy first TE on my list ( I surf traffic exchanges). But I cannot do so on FF anymore. Only half my computer screen is from the TE or web page, and the bottom HALF of the screen is for History, etc. I cannot even see or access the Start menu or my open tabs at the bottom of the screen, unless I use Control and Escape.
    I got the url from FF 4.0 , uninstalled the old version and reinstalled it. Same thing. I uninstalled it again, straight from my control panel (Windows Vista Home Premium), cleared cookies and cache again, fixed registry problems again, and restarted my computer. STILL same thing!
    I tried to adjust settings, but it will not let me change what I need to. I cannot unclick that updates will be downloaded and installed automatically, and check that I want to be asked each time. I do not know if I can even SEE what was updated, to give you an idea if that could have caused this very nasty problem. Nasty, because until it is fixed, I will not be using FF.

    After following all the instructions given, I poked around safe websites as suggested. I am not sure why this step was needed, as websites functioned rather normally before I came here but I did it anyways and found that the websites still work the same as they did. I can still do everything I used to be able to do. I see no change in the function of the websites.
    However, I still cannot resize, close, or move the browser window. I don't know if Netflix is a safe site or not (too many conflicting opinions on that one from the masses) so I don't know if the issue with the vanishing buttons is still there, but all the issues I had with the browser window itself is still there.
    Even in safe mode the browsers three window control buttons on the top right refuse to let me use them and the window itself will refuse to be moved around.

  • I keep getting the message, "Windows cannot find 'c:\Program Files (x86)\Mozilla Firefox\firefox.exe'. Make sure you typed the name correctly, and then try again." I get it when I either try to open it from the Start menu or from the desktop icon.

    I've just installed Firefox on my laptop and keep getting the message, "Windows cannot find 'c:\Program Files (x86)\Mozilla Firefox\firefox.exe'. Make sure you typed the name correctly, and then try again." I get this message whenever I either try to open it from the Start menu or from the desktop icon. I've never gotten it to work and even uninstalled it and then redownloaded it and still cannot get it to open. Any help would be greatly appreciated!!!!

    Are you installing from the official site? http://www.mozilla.com/firefox
    If you use Windows Explorer (My Computer) to check that path, is the Mozilla Firefox folder there? That is the normal installation location, but I think it's worth checking.
    If the folder isn't there or firefox.exe is not in it, I wonder whether some other software might be interfering. You might want to run some supplemental security scans. These two tools are highly regarded:
    Malwarebytes Anti-malware : http://www.malwarebytes.org/products/malwarebytes_free
    SUPERAntiSpyware : http://www.superantispyware.com/

  • RDS 2012 App-V 5 SP2, Applications are not pinned in the Metro Start Menu

    Hey All,
    I've been building a new App-V 5 Environment using server 2012 R2 for the App-V management\Publishing\Reporting servers.
    I've installed app-v 5 SP2 on the RDS 2012 R2 servers and installed the App-V 5.1 SP1 Hotfix (KB2897087) for the 2012 R2 support.
    I have run into the following issue; When triggering a app-v publishing sync the applications are only added in the classic start menu. The applications aren't pinned in the Metro Start menu like our App-V sp1 RDS 2012 clients.
    I have checked the App-V client eventlogs (including the debug logs) and I haven't been able to find any errors that point out the cause of my issue.
    Has anyone experienced the same issue or has anyone got any tips to get the app-v 5 sp2 client on RDS 2012 R2 to pin the sequences to the Metro Start Menu?
    Thanks.

    This is the default behaviour of Windows 8.1 and Windows Server 2012 R2 - there are no programmatic ways to pin shortcuts to the Start screen.
    Here's a way to customise the Start screen layout: http://stealthpuppy.com/customizing-the-windows-8-1-start-screen-dont-follow-microsofts-guidance/
    Here's how to go it with Group Policy: http://www.grouppolicy.biz/2013/06/customising-windows-8-1-start-screen-layout-with-group-policy/
    Note that neither approach will help you pin shortcuts to the Start screen for users that have already logged on, without overwriting their existing preferences.
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Sometimes I cannot bring up iTunes when I click on the icon. Have even gone to the START Menu and clicked on that icon but it still wont work. The only way I can fix it.....sometimes.....is if I reboot. Please help me 8-) Thanks

    Sometimes I cannot bring up iTunes when I click on the icon. Have even gone to the START Menu and clicked on that icon but it still wont work. The only way I can fix it.....sometimes.....is if I reboot. Please help me 8-) Thanks

    I understand that Firefox is no longer working on your Windows Tablet. The development of Metro did stop and has been discontinued. However what version were you on before this started to happen?

Maybe you are looking for

  • How to pass 100+ tags in a single sql/tag query

    <b>In my current application I have to pass 180+ tags in a single query to retrieve data from iHistorian. I want to know how to pass more thatn 100 tags in a single SQL or TAG Query using OLEDB or UDC connectors. If anybody has done it in the past ,p

  • Can't print from (only) one networked computer

    We have multiple desktops and laptops in our home network. We print to a wireless-network-connected HP Photosmart C7280 All-in-one printer. We are able to print from multiple computers to the printer but from one laptop we cannot. I ran the HP Print

  • How do i get itunes on my new ipad?

    i have failed to get itunes on the ipad please help me . thanks.

  • Mail Signature issues

    I'm having the exact issue described in this article: http://theappleblog.com/2005/12/18/mail-signatures-suck/ I've tried all the solutions suggested in the comments (including http://discussions.apple.com/thread.jspa?messageID=1485526&#1485526 ) but

  • Re: List of P.O.'s with out P.R.'s

    Hi guru's, Can we have any report / any other process by which we can list of P.O.'s without P.R.'s. Its urgent please. thanks tuljasingh.