Windows 7 XP 또는 Vista 용 Microsoft EFS 암호화를 자동화하는 방법
며칠 전에 스크립트를 만들어야했습니다.직장에서 최종 사용자의 폴더를 암호화합니다. 아래 코드를 작성한 다음 로그인 스크립트로 던져서 사용자가 시스템에 로그온 할 때 실행되도록했습니다. 암호화의 목적은 데스크톱 및 랩톱에 저장된 중요한 회사 데이터를 보호하는 것입니다. 프로세스가 저에게 효과적이지만 배포하기 전에 철저히 테스트하는 것이 좋습니다.
아래 코드는 몇 가지 작업을 수행하는 간단한 프로세스입니다.
- 로그인 한 사용자의 "내 문서"폴더에있는 모든 데이터를 암호화합니다.
- 로그인 한 사용자 "Outlook"폴더의 모든 데이터를 암호화합니다. 이 위치는 Outlook 2000 및 Outlook 2003이 .pst 및 .ost 파일을 저장하는 기본 위치입니다.
- 나중에 수집 할 수 있도록 스크립트의 모든 출력을 파일로 파이프합니다. 파일은 로그인 한 사용자의 "내 문서"아래에 있습니다. 파일 이름은 % computername % .efs입니다.
윈도우 XP
REM @echo off REM EFS MyDoc & Outlook EFS Encryption Script Version 1.1 REM https://www.groovypost.com REM REM Script Created by MrGroove (groovyPost.com) REM REM This program is free software; not to be redistributed REM without permission of groovyPost.com REM echo ***** >> "%userprofile%my documents%computername%.efs" REM EFS Encryption Script Version 1.1 REM ====================================================== REM First, let"s create a file to store all the work were doing and for history echo ****** >> "%userprofile%my documents%computername%.efs" echo ****** >> "%userprofile%my documents%computername%.efs" REM ====================================================== echo %date% %time% >> "%userprofile%My documents%computername%.efs" REM =================================================== REM Now were going to update all files to ensure no files are encrypted with old keys cipher /u >> "%userprofile%My documents%computername%.efs" REM =================================================== REM Begin encryption of the "My Documents" folder cipher /a /e /h /i /q /s:"%userprofile%My Documents" >> "%userprofile%My documents%computername%.efs" REM ====================================================== REM Begin encrption of the "Outlook" folder where the OST and PST files are stored cipher /a /e /h /i /q /s:"%userprofile%Local SettingsApplication DataMicrosoftOutlook" >> "%userprofile%My documents%computername%.efs" REM ================================================== REM More House Keeping echo %date% %time% >> "%userprofile%My documents%computername%.efs" echo ****** >> "%userprofile%My documents%computername%.efs" echo ****** >> "%userprofile%My documents%computername%.efs" REM ================================================== REM ================================================== REM All Done!
윈도우 7
REM @echo off REM EFS MyDoc & Outlook EFS Encryption Script Version 1.1 REM https://www.groovypost.com REM REM Script Created by MrGroove (groovyPost.com) REM REM This program is free software; not to be redistributed REM without permission of groovyPost.com REM echo ***** >> "%userprofile%documents%computername%.efs" REM EFS Encryption Script Version 1.1 REM ====================================================== REM First, let"s create a file to store all the work were doing and for history echo ****** >> "%userprofile%documents%computername%.efs" echo ****** >> "%userprofile%documents%computername%.efs" REM ====================================================== echo %date% %time% >> "%userprofile%documents%computername%.efs" REM =================================================== REM Now were going to update all files to ensure no files are encrypted with old keys cipher /u >> "%userprofile%documents%computername%.efs" REM =================================================== REM Begin encryption of the "Documents" folder cipher /a /e /h /i /q /s:"%userprofile%Documents" >> "%userprofile%documents%computername%.efs" REM ====================================================== REM Begin encrption of the "Outlook" folder where the OST and PST files are stored cipher /a /e /h /i /q /s:"%userprofile%Local SettingsApplication DataMicrosoftOutlook" >> "%userprofile%documents%computername%.efs" REM ================================================== REM More House Keeping echo %date% %time% >> "%userprofile%documents%computername%.efs" echo ****** >> "%userprofile%documents%computername%.efs" echo ****** >> "%userprofile%documents%computername%.efs" REM ================================================== REM ================================================== REM All Done!
코멘트를 남겨주세요