When the tray doesn't install when installing Cold...
# box-products
j
When the tray doesn't install when installing ColdFusion 2021 with CommandBox, is it possible to add something in the server.json file, or a command to get the tray? Below is my server.json file {
Copy code
"app":{
        "cfengine":"Adobe@2021"
    },
    "web":{
        "http":{
            "port":"2020"
        }
    },
    "jvm":{
        "heapSize":512
    }
}
p
after your
"jvm":{....}, "trayEnable":false
Oh you want it to display, then
true
j
Thanks so much this worked 😀
b
Or set it as a server default in the config settings if you want it on for all servers
Copy code
Config set server.defaults.trayEnable=true
j
@bdw429s thanks so much for the tip Brad!