mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2026-04-13 11:16:20 +00:00
73
content/client/windows/MSI/_index.en.md
Normal file
73
content/client/windows/MSI/_index.en.md
Normal file
@@ -0,0 +1,73 @@
|
||||
---
|
||||
title: MSI
|
||||
weight: 49
|
||||
---
|
||||
|
||||
The MSI package supports command line parameters for silent installation.
|
||||
|
||||
### Parameters
|
||||
|
||||
### INSTALLFOLDER
|
||||
|
||||
The installation folder.
|
||||
|
||||
**Default**: `[ProgramFiles6432Folder]\[app name]`, usually `C:\Program Files\[app name]`.
|
||||
|
||||
|
||||
### CREATESTARTMENUSHORTCUTS
|
||||
|
||||
Whether to create a start menu shortcut.
|
||||
|
||||
**Default**:
|
||||
1. Install. Defaults to `1`.
|
||||
2. Upgrade. Defaults to the last installed options.
|
||||
|
||||
| No | Value | Desc |
|
||||
| :---: | :---: | :---: |
|
||||
| 1 | `1` | Yes |
|
||||
| 2 | `0` | No |
|
||||
| 3 | `Y` | Yes, same as `1` |
|
||||
| 4 | `N` | No, same as `0` |
|
||||
|
||||
### CREATEDESKTOPSHORTCUTS
|
||||
|
||||
Whether to create a desktop shortcut.
|
||||
|
||||
**Default**:
|
||||
1. Install. Defaults to `1`.
|
||||
2. Upgrade. Defaults to the last installed options.
|
||||
|
||||
| No | Value | Desc |
|
||||
| :---: | :---: | :---: |
|
||||
| 1 | `1` | Yes |
|
||||
| 2 | `0` | No |
|
||||
| 3 | `Y` | Yes, same as `1` |
|
||||
| 4 | `N` | No, same as `0` |
|
||||
|
||||
## Examples
|
||||
|
||||
**Caution**: For versions prior to `2024-08-05`, there are issues with silent installation and silent repair. Please uninstall first, then install.
|
||||
|
||||
### Install with installation parameters
|
||||
|
||||
Silent installation, set the installation path, do not create a desktop shortcut, create a start menu shortcut.
|
||||
|
||||
```
|
||||
msiexec /i RustDesk-1.msi /qn INSTALLFOLDER="D:\Program Files\RustDesk" CREATESTARTMENUSHORTCUTS="Y" CREATEDESKTOPSHORTCUTS="N" /l*v install.log
|
||||
```
|
||||
|
||||
**Note**: `/l*v install.log` means printing the execution log to `install.log`.
|
||||
|
||||
### Upgrade, without parameters
|
||||
|
||||
Upgrade with the previous installation path and installation options.
|
||||
|
||||
```
|
||||
msiexec /i RustDesk-2.msi /qn /l*v install.log
|
||||
```
|
||||
|
||||
### Upgrade, modify installation options
|
||||
|
||||
```
|
||||
msiexec /i RustDesk-1.msi /qn INSTALLFOLDER="C:\Program Files\RustDesk" CREATESTARTMENUSHORTCUTS="N" CREATEDESKTOPSHORTCUTS="N" /l*v install.log
|
||||
```
|
||||
74
content/client/windows/MSI/_index.zh-cn.md
Normal file
74
content/client/windows/MSI/_index.zh-cn.md
Normal file
@@ -0,0 +1,74 @@
|
||||
---
|
||||
title: MSI
|
||||
weight: 49
|
||||
---
|
||||
|
||||
|
||||
MSI 安装支持命令行参数,以方便静默安装。
|
||||
|
||||
### 参数
|
||||
|
||||
### INSTALLFOLDER
|
||||
|
||||
安装目录。
|
||||
|
||||
**默认**: `[ProgramFiles6432Folder]\[app name]`,一般为 `C:\Program Files\[app name]`。
|
||||
|
||||
|
||||
### CREATESTARTMENUSHORTCUTS
|
||||
|
||||
是否创建 start menu 快捷方式。
|
||||
|
||||
**默认**:
|
||||
1. 安装。默认为 `1`。
|
||||
2. 升级。默认为上次安装时的选项。
|
||||
|
||||
| 编号 | 值 | 说明 |
|
||||
| :---: | :---: | :---: |
|
||||
| 1 | `1` | 是 |
|
||||
| 2 | `0` | 否 |
|
||||
| 3 | `Y` | 是,同 `1` |
|
||||
| 4 | `N` | 否,同 `0` |
|
||||
|
||||
### CREATEDESKTOPSHORTCUTS
|
||||
|
||||
是否创建桌面快捷方式。
|
||||
|
||||
**默认**:
|
||||
1. 安装。默认为 `1`。
|
||||
2. 升级。默认为上次安装时的选项。
|
||||
|
||||
| 编号 | 值 | 说明 |
|
||||
| :---: | :---: | :---: |
|
||||
| 1 | `1` | 是 |
|
||||
| 2 | `0` | 否 |
|
||||
| 3 | `Y` | 是,同 `1` |
|
||||
| 4 | `N` | 否,同 `0` |
|
||||
|
||||
## 示例
|
||||
|
||||
**注意**: 对于 `2024-08-05` 之前的版本,执行 静默安装 和 静默修复 时会有问题。请先执行卸载,再执行安装。
|
||||
|
||||
### 指定参数安装
|
||||
|
||||
静默安装,设置安装路径,不创建桌面快捷方式,创建 start menu 快捷方式。
|
||||
|
||||
```
|
||||
msiexec /i RustDesk-1.msi /qn INSTALLFOLDER="D:\Program Files\RustDesk" CREATESTARTMENUSHORTCUTS="Y" CREATEDESKTOPSHORTCUTS="N" /l*v install.log
|
||||
```
|
||||
|
||||
**注**: `/l*v install.log` 表示打印执行日志到 `install.log` 中。
|
||||
|
||||
### 升级,不指定参数
|
||||
|
||||
以原来的 安装路径 和 安装参数升级。
|
||||
|
||||
```
|
||||
msiexec /i RustDesk-2.msi /qn /l*v install.log
|
||||
```
|
||||
|
||||
### 升级,修改安装参数
|
||||
|
||||
```
|
||||
msiexec /i RustDesk-2.msi /qn INSTALLFOLDER="C:\Program Files\RustDesk" CREATESTARTMENUSHORTCUTS="N" CREATEDESKTOPSHORTCUTS="N" /l*v install.log
|
||||
```
|
||||
6
content/client/windows/_index.de.md
Normal file
6
content/client/windows/_index.de.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Windows
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/client/windows)
|
||||
4
content/client/windows/_index.en.md
Normal file
4
content/client/windows/_index.en.md
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
title: Windows
|
||||
weight: 4
|
||||
---
|
||||
6
content/client/windows/_index.es.md
Normal file
6
content/client/windows/_index.es.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Windows
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/client/windows)
|
||||
6
content/client/windows/_index.pt.md
Normal file
6
content/client/windows/_index.pt.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Windows
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/client/windows)
|
||||
6
content/client/windows/_index.zh-cn.md
Normal file
6
content/client/windows/_index.zh-cn.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
title: Windows
|
||||
weight: 4
|
||||
---
|
||||
|
||||
[English](/docs/en/client/windows)
|
||||
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: Windows Portable-Erhöhung
|
||||
weight: 49
|
||||
---
|
||||
|
||||
Portable Windows-Programme haben keine Administratorrechte, was zu den folgenden Problemen führen kann:
|
||||
|
||||
- Der Bildschirm kann nicht übertragen werden, wenn das UAC-Fenster (Benutzerkontensteuerung) angezeigt wird.
|
||||
- Wenn ein übergeordnetes Fenster, z. B. der Task-Manager, geöffnet wird, reagiert die Maus nicht mehr.
|
||||
|
||||
Durch die Erhöhung der Berechtigungen kann RustDesk während des Starts oder in einer Sitzung einen Prozess mit Administratorrechten erstellen, der Bildschirmfotos und Mausoperationen ausführen kann, wodurch die oben genannten Probleme vermieden werden.
|
||||
|
||||
### Erhöhen beim Starten
|
||||
|
||||
Auf diese Weise müssen entfernte Benutzer bei der Verbindung keine Berechtigungsanfrage stellen. Es gibt zwei Methoden:
|
||||
|
||||
* Methode 1: Ändern Sie den Namen des tragbaren Programms so, dass er `-qs-` enthält (Versionen 1.2.0, 1.2.1, 1.2.2, 1.2.3 enden mit `qs.exe`). Klicken Sie mit der linken Maustaste auf `Ausführen` und im UAC-Fenster auf `Akzeptieren`.
|
||||
|
||||
* Methode 2: Klicken Sie mit der rechten Maustaste und führen Sie das Programm als Administrator aus.
|
||||
|
||||
### Erhöhen auf der Steuerungsseite
|
||||
|
||||
Die kontrollierte Seite kann direkt auf `Akzeptieren und Erhöhen` klicken, wenn eine Verbindung hergestellt wird, oder auf `Erhöhen`, wenn bereits eine Verbindung besteht.
|
||||
|
||||
| Verbinden | Verbunden |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
|
||||
### Anfrage der Erhöhung auf der Steuerungsseite
|
||||
|
||||
Nach der Auswahl von `Erhöhte Rechte anfordern` aus dem Aktionsmenü wird das folgende Dialogfeld angezeigt. Wenn Sie `Den entfernten Benutzer zur Authentifizierung auffordern` wählen, müssen Sie keinen Benutzernamen und kein Passwort eingeben, aber der Benutzer auf dem entfernten Computer muss über Administratorrechte verfügen. Wenn Sie `Benutzernamen und Passwort des Administrators übertragen` wählen, muss der Benutzer auf dem entfernten Computer nur im UAC-Fenster zustimmen. Nachdem Sie die Anfrage gesendet haben, warten Sie bitte, bis der Benutzer auf der anderen Seite das UAC-Fenster akzeptiert hat. Nach der Bestätigung wird eine Erfolgsmeldung angezeigt. Beachten Sie, dass es **bei beiden Methoden erforderlich ist, dass jemand auf der kontrollierten Seite das UAC-Fenster akzeptiert**. Wenn also auf der anderen Seite niemand verfügbar ist, sollte auf der Steuerungsseite keine Aufschaltung beantragt werden.
|
||||
|
||||
| Menü | Dialog |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
| **Warten** | **Erfolg** |
|
||||
|  |  |
|
||||
|
||||
### Wie Sie wählen
|
||||
|
||||
| Szenario | Methode |
|
||||
| :---: | :---: |
|
||||
| Keine Erhöhung erforderlich | Das Programm installieren |
|
||||
| Kein Benutzer auf der kontrollierten Seite verfügbar | Umbenennen<br/>*oder*<br/> Als Administrator ausführen |
|
||||
| Benutzer am kontrollierten Ende verfügbar<br/>*und*<br/> Sofortige Erhöhung beim Verbinden<br/>*und*<br/> Akzeptieren-via-Klick-Verbindung | Klicken Sie auf `Akzeptieren und Erhöhen`, wenn Sie die Verbindung auf der kontrollierten Seite erhalten. |
|
||||
| Benutzer am kontrollierten Ende verfügbar<br/>*und*<br/> Erhöhung nach Bedarf | Klicken Sie im Fenster für die Verbindungsverwaltung am kontrollierten Ende auf `Erhöhen`.<br/>*oder*<br/> Abfrage der Erhöhung auf der kontrollierten Seite |
|
||||
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: Windows Portable Elevation
|
||||
weight: 49
|
||||
---
|
||||
|
||||
Windows portable programs do not have administrator privileges, which can lead to the following issues:
|
||||
|
||||
- The screen cannot be transmitted when the UAC (User Account Control) window pops up.
|
||||
- When an elevated window, such as the Task Manager, pops up, the mouse becomes unresponsive.
|
||||
|
||||
By elevating privileges, RustDesk can create a process with administrator privileges during startup or a session, enabling it to perform screenshotting and mouse operations, thereby avoiding the above problems.
|
||||
|
||||
### Elevate at startup
|
||||
|
||||
This way, remote users don't need to request elevation when connecting. There are two methods:
|
||||
|
||||
* Method 1: Change the name of the portable program to include `-qs-` (1.2.0, 1.2.1, 1.2.2, 1.2.3 versions end with `qs.exe`). Click the left mouse button to run, click `Accept` in the UAC window.
|
||||
|
||||
* Method 2: Right-click and run as administrator.
|
||||
|
||||
### Elevate at the controlled end
|
||||
|
||||
The controlled end can directly click `Accept and Elevate` when connecting, or click `Elevate` when already connected.
|
||||
|
||||
| Connecting | Connected |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
|
||||
### Request elevation at the control end
|
||||
|
||||
After selecting `Request Elevation` from the action menu, the following dialog box will appear. If you choose `Ask the remote user for authentication`, you won't need to input a username and password, but the user on the remote computer must have administrator privileges. If you select `Transmit the username and password of administrator`, the user on the remote computer only needs to accept in the UAC window. After sending the request, please wait for the user on the other side to accept the UAC window. Upon confirmation, a success message will appear. Note that **both methods require someone on the controlled end to accept the UAC window**. Therefore, if there is no one available on the other side, elevation should not be requested at the control end.
|
||||
|
||||
| Menu | Dialog |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
| **Wait** | **Success** |
|
||||
|  |  |
|
||||
|
||||
### How to Choose
|
||||
|
||||
| Scenario | Method |
|
||||
| :---: | :---: |
|
||||
| No elevation required | Install the program |
|
||||
| No user available at the controlled end | Rename<br/>*or*<br/> Run with administrator |
|
||||
| User available at the controlled end<br/>*and*<br/> Immediate elevation when connected<br/>*and*<br/> Accept-via-click connection | Click `Accept and Elevate` when receiving the connection at the controlled end |
|
||||
| User available at the controlled end<br/>*and*<br/> Elevation as needed | Click `Elevate` on the connection management window at the controlled end<br/>*or*<br/> Request elevation at the control end |
|
||||
@@ -0,0 +1,47 @@
|
||||
---
|
||||
title: Windows Portable Elevation
|
||||
weight: 49
|
||||
---
|
||||
|
||||
Los programas portables de Windows no tienen privilegios de administrador, esto puede causar los siguientes problemas:
|
||||
|
||||
- La pantalla no puede ser transmitida mientras se muestra la pantalla de UAC (User Account Control).
|
||||
- cuando alguna ventana de alguna aplicación ejecutada con derechos de administrador esta abierta, el puntero no responderá al control remoto.
|
||||
|
||||
Mediante la elevación de privilegios, RustDesk puede crear un proceso con privilegios de administrador al iniciar el equipo o al sesión de usuario de esta manera evita los problemas antes mencionados.
|
||||
|
||||
### Elevación al encendido del equipo
|
||||
|
||||
Mediante estos métodos, los usuarios remotos no necesitan pedir la elevación de permisos cuando se conectan
|
||||
|
||||
* Método 1: Agrega esta linea `-qs-` al nombre del ejecutable portable (las versiones 1.2.0, 1.2.1, 1.2.2 terminan con `qs.exe`). Ejecuta el archivo y da en `Aceptar` en la ventana de UAC
|
||||
|
||||
* Método 2: Click secundario y ejecutar como administrador
|
||||
|
||||
|
||||
### Elevar en el lado controlado
|
||||
|
||||
El lado controlado puede hacer click en `Aceptar y Elevar` cuando se este conectando o hacer click en `Elevate` una vez este conectado.
|
||||
|
||||
| Conectando | Conectado |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
|
||||
### Pide la elevación de permisos del lado controlador
|
||||
|
||||
Después de seleccionar en el menu de acción `Solicitar Elevación`, la siguiente ventana va a aparecer. si elegís `Preguntar al remoto por autenticación`, no necesitaras ingresar un usuario y contraseña, pero el usuario remoto deberá tener permisos de administrador. si seleccionas `Transmitir el nombre de usuario y contraseña del administrador`, el usuario remoto solo debe aceptar la petición del UAC. Después de enviar la petición, espera a que el usuario remoto confirme el dialogo del UAC. Una vez confirmado, un mensaje de éxito aparecerá. Ten en cuenta que **ambos métodos necesitan a alguien en la maquina controlada para confirmar el dialogo UAC**. Por lo tanto si no hay nadie en el lado controlado, la elevación no debe pedirse desde el lado de control.
|
||||
|
||||
| Menu | Dialogo |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
| **Wait** | **Success** |
|
||||
|  |  |
|
||||
|
||||
### How to Choose
|
||||
|
||||
| Situación | Método |
|
||||
| :---: | :---: |
|
||||
| No elevación requerida | Instala el programa |
|
||||
| Usuario no disponible en el lado controlado | Renombra<br/>*o*<br/> Ejecuta como administrador |
|
||||
| Usuario disponible en el lado controlado<br/>*and*<br/> Elevación inmediata en la conexión<br/>*y*<br/> Aceptar conexión mediante click | Hace click en `Aceptar y elevar` Cuando recibas la conexión del lado controlador |
|
||||
| Usuario disponible en el lado controlador<br/>*y*<br/> Elevación Es necesaria | Hace click en `Elevar` en la ventana de control de la conexión en el lado controlado<br/>*o*<br/> Pide la elevación en el lado controlador |
|
||||
@@ -0,0 +1,44 @@
|
||||
---
|
||||
title: Elevação de Privilégios portáteis Windows
|
||||
weight: 49
|
||||
---
|
||||
|
||||
Programas portáteis do Windows não possuem privilégios de administrador, o que pode levar aos seguintes problemas:
|
||||
|
||||
- A tela não pode ser transmitida quando a janela de Controle de Conta de Usuário (UAC) aparece.
|
||||
- Quando uma janela elevada, como o Gerenciador de Tarefas, aparece, o mouse fica sem resposta.
|
||||
|
||||
**Ao elevar privilégios, o RustDesk pode criar um processo com privilégios de administrador durante a inicialização ou uma sessão, permitindo realizar captura de tela e operações com o mouse, evitando assim os problemas acima.**
|
||||
|
||||
### Elevar na inicialização
|
||||
Dessa forma, usuários remotos não precisam solicitar elevação ao se conectar. Existem dois métodos:
|
||||
|
||||
* Método 1: Altere o nome do programa portátil para incluir `-qs-` (versões 1.2.0, 1.2.1, 1.2.2, 1.2.3 terminam em `qs.exe`). Clique com o botão esquerdo do mouse para executar, clique em `Aceitar` na janela do UAC.
|
||||
|
||||
* Método 2: Clique com o botão direito e execute como administrador.
|
||||
|
||||
### Elevar na extremidade controlada
|
||||
|
||||
A extremidade controlada pode clicar diretamente em `Aceitar e Elevar` ao conectar ou clicar em `Elevar` quando já estiver conectado.
|
||||
|
||||
| Conectando | Conectado |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
|
||||
### Solicitar elevação na extremidade de controle
|
||||
|
||||
Após selecionar `Solicitar Elevação` no menu de ação, a seguinte caixa de diálogo aparecerá. Se você escolher `Pedir autenticação ao usuário remoto`, não será necessário inserir um nome de usuário e senha, mas o usuário no computador remoto deve ter privilégios de administrador. Se você selecionar `Transmitir o nome de usuário e senha do administrador`, o usuário no computador remoto só precisa aceitar na janela do UAC. Após enviar o pedido, aguarde o usuário do outro lado aceitar a janela do UAC. Após a confirmação, uma mensagem de sucesso aparecerá. Observe que ambos os métodos requerem que alguém na extremidade controlada aceite a janela do UAC. Portanto, se não houver ninguém disponível do outro lado, a elevação não deve ser solicitada na extremidade de controle.
|
||||
|
||||
| Menu | Dialogo |
|
||||
| :---: | :---: |
|
||||
|  |  |
|
||||
| **Aguardando** | **Sucesso** |
|
||||
|  |  |
|
||||
|
||||
### Como escolher
|
||||
| Cenário | Método |
|
||||
| :---: | :---: |
|
||||
| Não é necessária elevação | Instalar o programa |
|
||||
| Nenhum usuário disponível na extremidade controlada | Renomear<br/>*ou*<br/> Executar como administrador |
|
||||
| Usuário disponível na extremidade controlada<br/>*e*<br/> Elevação imediata ao conectar<br/>*e*<br/> Conexão aceitar-por-clique | Clicar em `Aceitar e Elevar` ao receber a conexão na extremidade controlada |
|
||||
| Usuário disponível na extremidade controlada<br/>*e*<br/> Elevação conforme necessário | Clicar em `Elevar` na janela de gerenciamento de conexão na extremidade controlada<br/>*ou*<br/> solicitar elevação na extremidade de controle |
|
||||
@@ -0,0 +1,52 @@
|
||||
---
|
||||
title: Windows Portable 提权
|
||||
weight: 49
|
||||
---
|
||||
|
||||
在Windows下,Portable程序没有管理员权限,这会导致以下问题:
|
||||
|
||||
* 当UAC(用户账户控制)窗口弹出时,画面无法传输。
|
||||
* 当弹出被提权的窗口(如任务管理器)时,鼠标操作不响应。
|
||||
|
||||
通过提权, RustDesk在启动时或会话过程中可以创建一个具有管理员权限的进程,用于截屏和鼠标操作,从而避免了上述问题。
|
||||
|
||||
### 启动时提权
|
||||
|
||||
这种方式,连接时不需要再请求提升。有两种方法:
|
||||
|
||||
* 方法一:更改portable程序的名称,名称中需包含`-qs-`(1.2.0,1.2.1,1.2.2版本以`qs.exe`结尾)。鼠标左键点击运行,并在UAC窗口点击允许。
|
||||
|
||||
* 方法二: 右键以管理员权限运行。
|
||||
|
||||
### 被控端主动提权
|
||||
|
||||
被控端可以在对方发起连接时,直接点击`接受并提权`,或在已经连接的情况下点击`提权`。
|
||||
|
||||
| 正在连接 | 已连接 |
|
||||
| :--------------------------------------: | :--------------------------------------: |
|
||||
|  |  |
|
||||
|
||||
### 控制端主动提权
|
||||
|
||||
在点击动作菜单中的`请求提权`后,将弹出下面的对话框。如果选择`请求远程用户授权`,则无需输入用户名和密码,但需要电脑对面的用户具有管理员权限。如果选择`发送管理员用户的账号和密码`,则只需要对面用户在UAC窗口点击确认。发送请求后,请等待对面用户确认UAC窗口, 然后将提示成功。需要注意的是,这两种方式**都需要被控端有人在UAC窗口点击确认**。因此,如果对面没有人,则被控端不应该主动请求提权。
|
||||
|
||||
| 菜单 | 对话框 |
|
||||
| :--------------------------------------: | :--------------------------------------: |
|
||||
|  |  |
|
||||
| **等待** | **成功** |
|
||||
|  |  |
|
||||
|
||||
### 如何选择
|
||||
|
||||
| 情形 | 方式 |
|
||||
| :------------------------------: | :------------------------: |
|
||||
| 无需处理提权 | 安装程序 |
|
||||
| 被控端没有人 | 重命名<br>或右键以管理员权限运行 |
|
||||
| 被控端有人<br/>且通过点击确认连接<br/>且连接时立即提权 | 被控端接收连接时点击`接受并提权` |
|
||||
| 被控端有人<br/>且仅必要时提权 | 被控端通过连接管理窗口提权<br/>或主控端请求提权 |
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 49 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
Reference in New Issue
Block a user