Pin Ribbon using GPO

In Office 2013, the default settings is than the Office Ribbon is hidden. Is it possible to use GPO to enforce the Ribbon be always visible.

Hi,
By default, the full Ribbon is show in Office 2013. If the Ribbon is hidden in your environment, we can use the method below to change it.
For most Office applications, we can use a single registry value to control the ribbon appearance. Outlook is an exception which provides a bit
more customization. There are 24 different registry keys that control the ribbon and quick access toolbar.
Here is the registry value:
Key: HKCU\Software\Microsoft\Office\15.0\Common\Toolbars\<AppName>
DWORD: QuickAccessToolbarStyle
Value:
0   Expanded ribbon. Quick Access Toolbar is above the ribbon. (Default)
1   Expanded ribbon. Quick Access Toolbar is below the ribbon.
4   Collapsed ribbon. Quick Access Toolbar is above the ribbon.
5   Collapsed ribbon. Quick Access Toolbar is below the ribbon.
In the above value, <AppName> is any of the following values:
• Access
• Excel
• OneNote
• PowerPoint
• Project
• Publisher
• Visio
• Word
For Outlook ribbon customization, please refer:
http://blogs.technet.com/b/office_resource_kit/archive/2011/09/12/hiding-the-ribbon-in-office-2010.aspx
Note: This article is for Office 2010, but it also applies to Office 2013. Just change the version number from
14.0 to 15.0 when modifying the registry.
Hope this helps.
Regards,
Steve Fan
Forum Support
Come back and mark the replies as answers if they help and unmark them if they provide no help.
If you have any feedback on our support, please click
here

Similar Messages

  • Pinning frequently used sqls

    Hi all,
    Please let me know if the steps involved to pin frequently used sql statement in library cache to avoid reparsing
    Thanks for all your help.

    Frequently used SQL ought to be retained in the library cache without pinning. Oracle only starts flushing stuff from the cache once it's full and then it ages out the least-recently used queries.
    So, if you have a persistent problem with excessive reloading of frequently used queries you may need to reconsider the value of your shared_pool_size.
    Cheers, APC

  • Using GPO to deploy Acrobat 9.1

    I am ttying to deploy Acrobat Reader 9.1 using GPO as I have
    in the past for previous versions however this new version has two
    annoyances that I and probably my users will hate. I have got rid
    of things like the EULA using an MST but these 'problems/hates'
    remain.
    1 Extraneous desktop shortcut (acrobat.com)
    2 Prompt for proxy credentials on first load.
    How do i get rid of both please.

    Hello,
    I'm sorry I'm not able to address your question. These forums
    are specific to the
    Acrobat.com website and its set of hosted services, and do
    not cover the Acrobat family of desktop products.
    Any questions related to the Acrobat family of desktop
    products would be best suited in the Acrobat User Forums:
    Link to
    Acrobat Forums
    Thanks!
    Michelle

  • How to disable the ribbon using javascript

    when open a PDF document using acrobat X, there is a Tool ribbon in the top right side (there is also a comment ribbon and share ribbon), how to disable or remove the Tool ribbon using javascript?
    I try to use app.listToolbarButtons() and app.hideToolbarButton(...) but not working.
    Any ideas?

    Not possible.

  • How can i add to Outook 2013's ribbon using VBA and/or get a ribbon button's name within a macro?

    Everything I found on Google for this question refers to Excel or Word and what they say doesn't work for Outlook.
    I need to be able to do two things:
    Add buttons to a custom group on the "Home" tab of the Outlook 2013 ribbon using VBA from within Outlook 2013.
    Within the macro that runs when each button is clicked I want to be able to tell the name of the button that was clicked.
    For #1: I cannot find any useful information online.
    For #2: The idea is that I want to have a variable number of buttons like "Do 1", "Do 2", "Do 3", ..., "Do X" and each of them would run the same macro/sub and within the macro/sub I can see what the name of the button
    is so I know what to do. Otherwise I'd have to create a sub/macro for each button and I'm trying to avoid that.

    Hi IMThreNachoMan,
    >>Just to confirm, I can have the ribbon run a normal macro (Sub Blah()) but not if it tries to reference the ribbon (Sub Blah(c as IRibbonControl))?<<
    I've tested it on managed project, it works as expected, but it seems the *.OfficeUI file makes the VBA as an expectation.
    I'm trying to involve some senior engineers into this issue and it will take some time. Your patience will be greatly appreciated. Sorry for any inconvenience and have a nice day!
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to remove infopath ribbon using Master Page?

    Hi All,
    I would like to remove infopath ribbon using Master Page, using f12 removed like "<div id="s4-ribbonrow"
    class="s4-pr s4-ribbonrowhidetitle" style="display:none">". But how to perform in original master page? Thanks in advance!

    Hi,
    Based on your description, my understanding is that you want to remove InfoPath ribbon using Master Page.
    using F12 to find the <div id=”RibbonWrapper”> section:
    Navigate to :C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\ FormServer.aspx. Add the following CSS into <head runat="server"></head>section:<style type="text/css">
    #RibbonWrapper
    display: none !important;
    </style>
    Best Regards,Lisa Chen
    Lisa Chen
    TechNet Community Support

  • Dynamic ribbon using MFC C++

    Hi,
    So I am trying to program ribbon dynamically with MFC.
    My requirements said I need 3-levels of HUD with the ribbon though.
    I know right now you guys only have 2, not counting the quick access toolbar.
    First level = Categories, Second level = Pane.
    Do you know what’s the best way to go about this? We are considering to use “Outlook navigation pane” on top of the ribbon but I am not sure that we can do that.
    We actually want a custom ribbon depending on the application modes that we are doing.
    So, for example in outlook whenever you click [mail] or [calendar] the ribbon changes but I am not sure how to achieve that. I tried googling but so far what I've found are examples in C# and VB and that's not what I need. 
    Thanks in advance

    Dynamic ribbon programming in MFC C++ IMO is the most powerful UI programming tool out there. I have succeeded in programming the Outlook control to walk through and click on shell files and open them. But little known is the fact that you can not only easily
    design the ribbon using the ribbon resource controller, but you can re-program the ribbon at runtime. This is a very powerful capability far surpassing XAML's useless layer of indirection. You can, for example, add or subtract gallery icons. In Word you can
    see gallery icons in use when selecting styles. But in addition to what you see in Word, you can create new ribbon objects dynamically. Very powerful. There are no examples to be found anywhere which is amazing.
    If I've understood your question, I think I accomplished the ribbon 3rd level you are seeking. I build a ribbon gallery at runtime. Then for each ribbon icon, I create a dropdown list of controls. Again, all dynamically. The user not only sees a dynamic
    list of gallery icons but can manipulate each icon using those dropdown controls.
    Here is a dynamically created icon:
    and here is the dynamically created dropdown list of commands:
    RT

  • Step by Step Screen Saver using GPO

    Hi Guys,
    Can you please provide a step by step on how to deploy ScreenSaver using GPO to our Client users?
    Thanks in advance!!

    >   Thanks for that link, i have one more question about the ".scr file"
    > .. How will i able to have .scr file? because i dont want to use the
    > default blank screensaver to our clients?
    Have a look at the existing ones in system32 or google for others :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • How to enable Clear Type Text Tuner in Windows 7 using GPO?

    Hi,
    I like to enable Clear Type Text Tuner feature in Windows 7 by default on AD users using GPO settings. Is there any settings in GPO (Windows Server 2008 R2 SP1) to achieve it?
    Regards,
    Zain Khan

     Hi,
    Whether the below policy help:
    User Configuration – Administrative Templates – Windows Components – Internet Explorer – Internet Control Panel –
    Advanced Page – Turn off ClearType.
    Regards,
    Yan Li
    Cataleya Li
    TechNet Community Support

  • Possible to use GPO to set autoarchive on specific folder?

    Is it possible to use GPO (or GPO and combination of something else) to set autoarchive settings on a specific folder in Outlook?
    Basically, what I would like to do is this:
    Set autoarchive for Outlook to run once a day.  Leave settings unchecked so it doesn't do anything.
    Then set autoarchive settings on the deleted items folder to permanently delete items older than 14 days
    So in essence I would like to have a policy that automatically permanently deletes items in the deleted items folder that are older than 14 days. 
    Is this possible?  Thanks

    Hi,
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • The most useful GPOs in Windows Server 2012R2

    What are in your opinion the most useful GPOs in Server 2012 R2 that improving the work of the administrator and raising level of network security.
    Cloud you share your opinion. please?
    This topic first appeared in the Spiceworks Community

    Good Morning All,I'm currently trying to run a script to convert all xls files to xlsxI am using a script written here:
    https://gist.github.com/gabceb/954418The script as is:PowershellAdd-Type -AssemblyName Microsoft.Office.Interop.Excel$xlFixedFormat = [Microsoft.Office.Interop.Excel.XlFileFormat]::xlOpenXMLWorkbookwrite-host $xlFixedFormat$excel = New-Object -ComObject excel.application$excel.visible = $false$folderpath = "C:\temp\test\test_1"$filetype ="*xls"Get-ChildItem -Path $folderpath -Include $filetype -recurse | ForEach-Object `{ $path = ($_.fullname).substring(0, ($_.FullName).lastindexOf(".")) "Converting $path" $workbook = $excel.workbooks.open($_.fullname) $path += ".xlsx" $workbook.saveas($path, $xlFixedFormat) $workbook.close() ## Create old folder and move original files here $oldFolder = $path.substring(0, $path....

  • HT3529 am trying to activate vm viewer - keeps asking me for pin - have used every number I have but none work - how do i get past this screen or help finding my pin?

    Am trying to activate vm viewer - it keeps asking me for my PIN - have used every number I ever used for a PIN but none work - how do I get past this screen or get help finding my PIN?

    Are you talking voicemail and the password, if you are contact your phone carrier and they can reset your password.

  • Run Batch file using GPO in all users with Windows 2008 R2

    Dear Sir,
    We have to install one software packages in all laptops using GPO. we have batch file and using this we can install software.
    is there any way to install automatic by this batch file?
    this is not msi packages.
    Regards,
    Sunil 
    SUNIL PATEL SYSTEM ADMINISTRATOR

    > Please provide how to configure...
    https://technet.microsoft.com/en-us/magazine/dd630947.aspx
    https://technet.microsoft.com/library/cc779329.aspx
    Greetings/Grüße,
    Martin
    Mal ein
    gutes Buch über GPOs lesen?
    Good or bad GPOs? - my blog…
    And if IT bothers me -
    coke bottle design refreshment (-:

  • Shortcut to File Server Using GPO

    I would like to be able to push a shortcut out, using GPO to a file server.  The shortcut works individually on a desktop but I can not see how to push it out with GPO.  Basically I want it to go to \\servername and thats it.  I feel like
    it should be a file system object but I dont get a shortcut when I use that.  If I do URL i get an icon but it doesn't load in explorer rather the internet browser.  Any help would be appreciated.

    If I understand well, you would like to push shortcuts to end users desktops so that they can easily browse your File Servers. If this is the case then you can simply proceed like the following:
    Prepare the shortcuts and put them in a share
    Use xcopy command and prepare a script that copies the shortcuts from the share to your computers public profile desktop
    %public%\desktop
    Deploy the script as a startup script
    Once deployed and you restart the target computers, your end users (Domain and Non-Domain users) would be able to see the shortcuts coming on their desktops.
    This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.
    Get Active Directory User Last Logon
    Create an Active Directory test domain similar to the production one
    Management of test accounts in an Active Directory production domain - Part I
    Management of test accounts in an Active Directory production domain - Part II
    Management of test accounts in an Active Directory production domain - Part III
    Reset Active Directory user password

  • Unable to Deploy Software using GPO in Windows Server 2012

    Dear Microsoft Team,
    When I tried to deploy a software using GPO its giving an error -Add operation failed. Unable to extract deployment information from the package. Run validation on the package to ensure that the package is correct

    Hi Subin,
    I agree with Prabhu that the software package you deploy via group policy needs to in the format of .msi. The company or developer who produces the application provides the Windows Installer package .msi file and includes it with the application.
    If a Windows Installer package does not come with an application, you might need to create a Windows Installer package by using a third-party tool.
    Best regards,
    Frank Shen 

Maybe you are looking for

  • Slow Loading

    Ok, Im a bit of a novice at this so I guess you guys are the best people to ask! Just ran a speed test and Im getting 632 Kbps download and 363 Kbps upload. Is that good? Anyway the problem I have is watching video over the internet, such as You Tube

  • Solman 4.0 installation error at Import Abap phase

    Hi All, I have started installing Solution Mangaer 4.0 and in the Import ABAP phase i am getting the following error. D:\usr\sap\ISM\SYS\exe\uc\NTI386\R3load.exe: job finished with 1 error(s) D:\usr\sap\ISM\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 2

  • Sql insert in Java vs. sql dts package

    Hi, I was wondering the speed difference between inserting records to database from Java as oppose to inserting records using a sql server dts package. I'm talking about 3000+ records. See Java when inserting records to database it looks something li

  • HT1414 iphone could not be restored an unknown error occurred 23

    pleas help me repair  my ip with  erro iphone could not be restored an unknown error occurred 23

  • Single page exportation pdf

    Hello! I usually work on my Indesign document double spreaded and what I need to send to my printer is a single page pdf with 3mm bleed. Bleed is related to the 4 sides of each single page: the side of the spine includes me a short bit 3mm of the oth