mirror of
https://github.com/rustdesk/doc.rustdesk.com.git
synced 2024-12-28 09:59:40 +01:00
Merge pull request #282 from dinger1986/master
edited batch script to create random password
This commit is contained in:
commit
3c50d2bdda
@ -91,7 +91,14 @@ Write-Output "..............................................."
|
|||||||
|
|
||||||
```bat
|
```bat
|
||||||
REM Assign the value random password to the password variable
|
REM Assign the value random password to the password variable
|
||||||
|
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
|
||||||
|
set alfanum=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
|
||||||
|
|
||||||
set rustdesk_pw=
|
set rustdesk_pw=
|
||||||
|
FOR /L %%b IN (0, 1, 16) DO (
|
||||||
|
SET /A rnd_num=!RANDOM! * 62 / 32768 + 1
|
||||||
|
for /F %%c in ('echo %%alfanum:~!rnd_num!^,1%%') do set pwd=!pwd!%%c
|
||||||
|
)
|
||||||
|
|
||||||
REM Get your config string from your Web portal and Fill Below
|
REM Get your config string from your Web portal and Fill Below
|
||||||
set rustdesk_cfg="configstring"
|
set rustdesk_cfg="configstring"
|
||||||
|
@ -91,7 +91,14 @@ Write-Output "..............................................."
|
|||||||
|
|
||||||
```bat
|
```bat
|
||||||
REM Assign the value random password to the password variable
|
REM Assign the value random password to the password variable
|
||||||
|
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
|
||||||
|
set alfanum=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
|
||||||
|
|
||||||
set rustdesk_pw=
|
set rustdesk_pw=
|
||||||
|
FOR /L %%b IN (0, 1, 16) DO (
|
||||||
|
SET /A rnd_num=!RANDOM! * 62 / 32768 + 1
|
||||||
|
for /F %%c in ('echo %%alfanum:~!rnd_num!^,1%%') do set pwd=!pwd!%%c
|
||||||
|
)
|
||||||
|
|
||||||
REM Get your config string from your Web portal and Fill Below
|
REM Get your config string from your Web portal and Fill Below
|
||||||
set rustdesk_cfg="configstring"
|
set rustdesk_cfg="configstring"
|
||||||
|
Loading…
Reference in New Issue
Block a user