Showing posts with label password. Show all posts
Showing posts with label password. Show all posts

Tuesday, October 22, 2019

MSSQL: 取消DB用戶密碼自動過期


  1. Expand Security - Logins
  2. Right click - properties
  3. Untick "enforce password expiration"

Thursday, June 6, 2019

zip: tar zip with password

Encrypt:
tar cz folder_to_encrypt | openssl enc -aes-256-cbc -e > out.tar.gz.enc

Decrypt:
openssl enc -aes-256-cbc -d -in out.tar.gz.enc | tar xz

Reference: https://superuser.com/questions/162624/how-to-password-protect-gzip-files-on-the-command-line