Jump to content

Recommended Posts

Posted

Hi all, just after some input.

 

I've removed the custom start menu that we used and want to have a very basic start menu.

 

I've removed the XML we used to have and created one as below

 

 

    xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"
   xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"
   xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"
   xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"
   Version="1">
 
   
     
       
       
     
   
 

 

But it looks like this, no idea where the three boxes are being generated from:

 

Capture.JPG

 

I'm after this affect. no tiles basic list:

 

Capture2.JPG

 

What have i missed?

Posted

Drop this bit of code in above the CustomTaskbarLayoutCollection to achieve the desired result. The key is you need to define the section with nothing inside of it, rather than just not defining the section at all which will revert back to the OS default as currently displayed.

 



  
    
   

Posted

That worked a treat thanks.

 

Where the best place to put the pinned taskbar items such as file explorer?

 

thanks again

Posted

It looks like you've got it correct in your example above, within the CustomTaskBarLayoutCollection.

 

Only issue I found was that the links have to point to a shortcut within the Start Menu folder, rather than the path to the actual .exe. Alternatively, you can link to the AppID which is a more global option and not path dependant, so chrome can be targeted with the following...

 

You can get a full list of AppIDs from opening a powershell window and running get-startapps

Posted
That worked a treat thanks.

 

Where the best place to put the pinned taskbar items such as file explorer?

 

thanks again

 

Do you mean within the xml? If so, you just combine it all so it would be something like this:

 

    xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"
   xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"
   xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"
   xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"
   Version="1">

 
   
     
     
   
 
   
     
       
   
          
     
   
 

Posted (edited)

I've officially broken this now.... no idea why its not working

 

code used:


 

	
		
	

	
		
			
				
				
				
			
			
	

 

what it looks like:

 

ignore to papercut icon, that launches at log in

 

Capture.JPG

 

if i just use:

 


 
 
   
     
   
 

 

i get the following start menu which is what i want:

 

Capture2.JPG

 

if i try and pin anything to the task bar i get the three random tiles as above. Also this computer is missing

Edited by Jaan
Posted (edited)

Not sure if it's needed but I've got the following additional line on the XML I'm currently using.

 

xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"

 

The start of my XML looks like this:

 

       xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"    
      xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"    
      xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"    
      xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"    
      Version="1">

 

Everything else looks okay.

Edited by award-mint
Posted
Not sure if it's needed but I've got the following additional line on the XML I'm currently using.

 

xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"

 

The start of my XML looks like this:

 

       xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"    
      xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"    
      xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"    
      xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"    
      Version="1">

 

Everything else looks okay.

 

Thanks for this. are you able to post your complete xml please?

 

Thanks

Posted

I've added the line you suggested. I currently have a black start menu (Tiles) which is what i'm after. But the taskbar is also blank.

 

	xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout" 
xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"  
xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification" 
xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"
Version="1">
 

	
		
	

	
		
			
				
				
				
			
			
	

Posted

Try the below, this should just pin Edge to the taskbar, with an empty start menu. It should be a starting point.

 


xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"    
xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"    
xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"    
xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"    
Version="1">














Posted

Using the code you provided (i've added different pined items) i just get a blank taskbar. The start menu is as expected. :rolleyes:

 


xmlns="http://schemas.microsoft.com/Start/2014/LayoutModification"    
xmlns:defaultlayout="http://schemas.microsoft.com/Start/2014/FullDefaultLayout"    
xmlns:start="http://schemas.microsoft.com/Start/2014/StartLayout"    
xmlns:taskbar="http://schemas.microsoft.com/Start/2014/TaskbarLayout"    
Version="1">
















Posted
Just to report back here.

 

The above xml works fine on 21H2, but not 1809.

 

EDIT: Actually, its just the admin accounts it works for not standard users. :rolleyes: ...... its a computer based GPO

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...