Cazale Posted August 13, 2019 Posted August 13, 2019 Has anyone found an easy way to do this (script maybe? I remember there was one for replacing IE for Windows 7, anything similar?). It seems unnecessarily complicated compared to replacing desktop/Start Menu icons.
thimon Posted August 14, 2019 Posted August 14, 2019 You need to set a custom start menu layout via gpo. Within the start menu xml file you can set a custom task bar layout. 2
MrLudwig Posted August 15, 2019 Posted August 15, 2019 MS have a nice page detailing how to do this via the Start Menu XML layout file thimon mentioned above here https://docs.microsoft.com/en-us/windows/configuration/configure-windows-10-taskbar. It works pretty well and there is an option to replace the default pinned icons or add to them. 1
Cazale Posted August 15, 2019 Author Posted August 15, 2019 Thanks. I already created a custom start menu, but didn't realise you could also customise the task bar within it.
David44 Posted August 16, 2019 Posted August 16, 2019 Is there anyone who has already done this and is also willing to share the line from their XML file that does the magic?
tmoon-mint Posted August 16, 2019 Posted August 16, 2019 (edited) This is mine currently. I also have this at the beginning of my file. Apologies not sure how to get it to format properly on here. Edited August 16, 2019 by tmoon-mint 4
Cazale Posted August 19, 2019 Author Posted August 19, 2019 This is mine currently. I also have this at the beginning of my file. Apologies not sure how to get it to format properly on here. Do you have it in with your start menu layout, or separate? I tried adding a very basic scheme to the start menu layout (as described in the Microsoft article above), and it broke the start menu layout and didn't apply any settings to the task bar. It just looked like it wasn't applying at all. I tried a few different of the Microsoft examples, and they all did this. Unfortunately I can't post the XML I used, but I need to do this again in a couple of days, so it happens again I'll post it.
thimon Posted August 19, 2019 Posted August 19, 2019 Hi @Cazale. We've got both File Explorer and Google Chrome pinned to the taskbar within the custom start menu xml, please see below photos for the xml file and the end result (ignore all the other pinned taskbar icons after Google Chrome as I've pinned those). The text highlighted in yellow is what sets the custom taskbar layout. 1
Cazale Posted August 19, 2019 Author Posted August 19, 2019 Looking at that, it looks like I didn't put in the XMLS:taskbar at the top. I'll have another play. Thanks for your replies.
Cazale Posted August 20, 2019 Author Posted August 20, 2019 Yep, it was the xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout" missing from the header that was causing it to fail. Thanks guys. 1
tj2419 Posted September 23, 2019 Posted September 23, 2019 Sorry to revive this but is it possible to link to a website? We have a number of cloud tools but when I create a shortcut save it in a publically accessible area and link to it, it doesn't appear. Thanks
BOOT Posted September 23, 2019 Posted September 23, 2019 Shortcuts on remote paths don't seem to be supported. Also, if your shortcuts are all pointing to the browser .exe, they'll be seen as duplicates and skipped.
thimon Posted September 27, 2019 Posted September 27, 2019 We've put shortcuts to websites in the A-Z list of Apps, such as SIMS and our finance system.
flyinghaggis Posted September 27, 2019 Posted September 27, 2019 You need to set a custom start menu layout via gpo. Within the start menu xml file you can set a custom task bar layout. If you set a custom taskbar layout does this prevent users from customising the taskbar?
thimon Posted September 27, 2019 Posted September 27, 2019 They can still pin their own items as usual. 1
browolf Posted October 9, 2019 Posted October 9, 2019 I can't get this to work at all in the group policy and I can't see anything wrong with the file. deploying to win10 1803. the schema urls produce this message though "The resource you are looking for has been removed, had its name changed, or is temporarily unavailable. " is that normal? xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout">
thimon Posted October 9, 2019 Posted October 9, 2019 @browolf I can see you're pointing directly to the .exe's of the software. I would recommend pointing to the .lnk shortcuts located in %ProgramData%\Microsoft\Windows\Start Menu\Programs or in %ALLUSERSPROFILES% dependant on the software. Our custom xml only points to .lnk shortcuts and has worked across all versions of Windows 10.
browolf Posted October 9, 2019 Posted October 9, 2019 @browolf I can see you're pointing directly to the .exe's of the software. I would recommend pointing to the .lnk shortcuts located in %ProgramData%\Microsoft\Windows\Start Menu\Programs or in %ALLUSERSPROFILES% dependant on the software. Our custom xml only points to .lnk shortcuts and has worked across all versions of Windows 10. I had it before pointing the .lnk shortcuts which didn't work either but then I read on a reddit post that they should be the appids.
BOOT Posted October 10, 2019 Posted October 10, 2019 Unless you're pinning UWP Apps, AppUserModelID should be DesktopApplicationID It is perfectly fine to point to the .exe On 64 bit PCs: {7C5A40EF-A0FB-4BFC-874A-C0F2E0B9FA8E} is for [Program Files (x86)] {6D809377-6AF0-444B-8957-A3773F02200E} is for [Program Files] Unless you're pinning UWP Apps, TaskbarPinList entries should use:
browolf Posted October 10, 2019 Posted October 10, 2019 I've changed it to links but that's not working either xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout">
BOOT Posted October 10, 2019 Posted October 10, 2019 Is any part of it working? None of my layouts start with: Try it without maybe?
Arthur Posted October 10, 2019 Posted October 10, 2019 I've changed it to links but that's not working either The parts highlighted in red shouldn't be there. xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"> Try the following XML... xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout" Version="1" xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"> 1
browolf Posted October 10, 2019 Posted October 10, 2019 (edited) Still nope. I don't think it's the script itself. I've tried endless variations. those red bits were in someone else's script on the previous page. Does the file get copied to the c: drive? Edited October 10, 2019 by browolf
browolf Posted October 11, 2019 Posted October 11, 2019 I've figured out one problem that's not helping. There's a synchronization issue between DCs and the dc, the test machine is using is not getting the full updates.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now