--- sidebar_position: 6 description: Update UI password and other functions to work with Melezh in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Update UI password Changes the password for logging into the web console `Function UpdateUIPassword(Val Project, Val Password) Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | Project | --proj | String | ✔ | Project filepath | | Password | --pass | String | ✔ | New password | Returns: Structure Of KeyAndValue - Result of password change
:::tip If a value is modified in a running project, the change may take up to 60 seconds to be applied :::
```bash melezh UpdateUIPassword \ --proj "/proj.melezh" \ --pass "***" ``` ```batch melezh UpdateUIPassword ^ --proj "/proj.melezh" ^ --pass "***" ``` ```json title="Result" { "result": true } ```