728x90
간혹 배치파일은 만들다 보면 계정의 비밀번호를 넣는 경우가 있다.
하지만 보안적인 문제가 발생 되기에 암호화를 해서 넣을 수가 있다.
Search하니 역시나 원하는 답이 있었다. ㅋㅋㅋ
1. 파워쉘을 실행한다.
"password" | ConvertTo-SecureString -AsPlainText -Force | ConvertFrom-SecureString
The output is luckily not the unencrypted password we entered, it is a string containing the encrypted version of the password.
결과
01000000d08c9ddf0115d1118c7a00c04fc297eb01000000b9fe0ca15a2ffb4a9e172d76a87afae40000000002000000000003660000c000000010000000875
eab73cc326c4acb70b609f170da6d0000000004800000a0000000100000001efe13d29355bea97995960f306c0009180000005a906fee5e408ccf685bbc56dd
1c3e3c91472d168c17d38a140000008bf9a9f060d1c46d1d96441d2080218ff0ada1a6
출처
<http://blog.coretech.dk/rja/store-encrypted-password-in-a-powershell-script/>
728x90
'IT이야기 > Powershell' 카테고리의 다른 글
디스크 사용가능한 퍼센테이지 쿼리 파워쉘 (0) | 2016.02.15 |
---|---|
CSV 파일을 이용한 Foreach Query (0) | 2016.02.05 |
IPv6 해제 (1) | 2015.11.11 |
파워쉘에서 결과 값 카운터 하기 (0) | 2015.06.15 |
사용자 계정 만료일자 추출 (0) | 2015.05.19 |