2025-05-27 19:03:00 +03:00
---
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
<br/>
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
melezh UpdateUIPassword \
2025-05-27 20:20:04 +03:00
--proj "C:\Users\bayselonarrend\AppData\Local\Temp\zyu1bxem.yut" \
2025-05-27 19:03:00 +03:00
--pass "***"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
melezh UpdateUIPassword ^
2025-05-27 20:20:04 +03:00
--proj "C:\Users\bayselonarrend\AppData\Local\Temp\zyu1bxem.yut" ^
2025-05-27 19:03:00 +03:00
--pass "***"
```
</TabItem>
</Tabs>
```json title="Result"
{
"result": true
}
```