---
title: "Hide the developer menu in Player"
slug: "hide-the-developer-menu-in-player"
updated: 2022-09-18T02:21:30Z
published: 2022-09-18T02:21:30Z
canonical: "support.tulip.co/hide-the-developer-menu-in-player"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://support.tulip.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Hide the developer menu in Player

## Purpose

*Learn how to hide the Developer Menu in the {{glossary.Tulip Player}}*

The Developer Menu on the Tulip Player can be hidden in the following two ways:



## **Using a settings.json File**


:::(Info) (Note)
This method applies for all users of the PC.
:::

* Create a “settings.json” file in your `C:\ProgramData\tulip\settings` folder. If this folder path does not already exist, you will need to create it.
* Ensure that all other users of the PC have “READ” privileges on this file.
* Open the file in Notepad or any text editor and add the following content to it: 


```
{  
  "disableDeveloperMenu": true  
}
```

:::(Info) (Note)
If this file already exists and has other contents, simply add the `“disableDeveloperMenu”: true` entry, separated by a comma from other file entries.
:::


![](https://cdn.document360.io/7c6ff534-cad3-4fc8-9583-912c4016362f/Images/Documentation/How%20to%20Hide%20the%20Developer%20Menu%20in%20Tulip%20Player_463357505.png){height="" width="600"}

At this stage, you can launch the Tulip Player and confirm the “Developer” menu should no longer be available in the top menu bar.




## **Using Environment Variables**


### For the current user:


* Open a PowerShell terminal and execute the following command to set an environment variable named


`"TULIP_PLAYER_DISABLE_DEVELOPER_MENU"`  equal to `"true`"


```
[Environment]::SetEnvironmentVariable("TULIP_PLAYER_DISABLE_DEVELOPER_MENU", "true", [EnvironmentVariableTarget]::User)
```


### For all users on the PC:


* Open a PowerShell terminal as **Administrator** and execute the following command to set an environment variable named: `“TULIP_PLAYER_DISABLE_DEVELOPER_MENU”`  equal to  `“true”`


```
[Environment]::SetEnvironmentVariable("TULIP_PLAYER_DISABLE_DEVELOPER_MENU", "true", [EnvironmentVariableTarget]::Machine)
```



---

Did you find what you were looking for?



You can also head to [community.tulip.co](https://community.tulip.co/?utm_source=intercom&utm_medium=article-link&utm_campaign=all) to post your question or see if others have faced a similar question!
