1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 16:12:49 -05:00

bitwarden main script

This commit is contained in:
Kyle Spearrin
2017-08-19 11:51:13 -04:00
parent 7aaf185365
commit 374bb8305d
2 changed files with 65 additions and 16 deletions

View File

@ -2,22 +2,6 @@ param (
[string]$outputDir = "c:/bitwarden"
)
$year = (Get-Date).year
Write-Host @'
_ _ _ _
| |__ (_) |___ ____ _ _ __ __| | ___ _ __
| '_ \| | __\ \ /\ / / _` | '__/ _` |/ _ \ '_ \
| |_) | | |_ \ V V / (_| | | | (_| | __/ | | |
|_.__/|_|\__| \_/\_/ \__,_|_| \__,_|\___|_| |_|
'@
Write-Host "
Open source password management solutions
Copyright 2015-${year}, 8bit Solutions LLC
https://bitwarden.com, https://github.com/bitwarden
"
if(!(Test-Path -Path $outputDir )){
New-Item -ItemType directory -Path $outputDir
}