Add ability to use custom skin
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<#
|
||||
.SYNOPSIS
|
||||
Generates a random 24-character key suitable for RC_DES_KEY in .env.
|
||||
#>
|
||||
|
||||
$key = -join ((48..57) + (65..90) + (97..122) | Get-Random -Count 24 | ForEach-Object { [char]$_ })
|
||||
Write-Output $key
|
||||
Reference in New Issue
Block a user