You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
59 lines
1.4 KiB
Plaintext
Vendored
59 lines
1.4 KiB
Plaintext
Vendored
---
|
|
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/>
|
|
|
|
:::tip
|
|
If a value is modified in a running project, the change may take up to 60 seconds to be applied
|
|
:::
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
melezh UpdateUIPassword \
|
|
--proj "/proj.melezh" \
|
|
--pass "***"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
melezh UpdateUIPassword ^
|
|
--proj "/proj.melezh" ^
|
|
--pass "***"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
```json title="Result"
|
|
{
|
|
"result": true
|
|
}
|
|
```
|