ĐĂNG TIN
logo
Online:
Visits:
Stories:
Profile image
Tác giả: Cơ Duyên
Trang tin cá nhân | Bài đã đăng
Lượt xem

Hiện tại:
1h trước:
24h trước:
Tổng số:
Tự động mã hóa EFS trong Windows XP, Vista hoặc Windows 7
Thursday, January 12, 2012 11:12
% of readers think this story is Fact. Add your two cents.


 Trong bài viết dưới đây, chúng tôi sẽ hướng dẫn các bạn cách tạo script để tự động quá trình mã hóa theo chuẩn dữ liệu của tài khoản người dùng mỗi khi họ đăng nhập

 Mục đích của việc mã hóa theo cách này là bảo vệ những tài liệu, thông tin bí mật của cá nhân, tổ chức hoặc công ty, sau đó sao lưu chúng trên thiết bị lưu trữ bên ngoài.

Cụ thể, đoạn mã dưới đây sẽ thực hiện một số chức năng như:

 - Mã hóa toàn bộ dữ liệu trong thư mục My Documents, Outlook – đây cũng là nơi lưu trữ mặc định của file *.pst*.ost trong Outlook 2000, Outlook 2003.

 - Xuất toàn bộ dữ liệu output từ đoạn script vào 1 file khác, ở thư mục My documents của tài khoản người dùng, với tên cụ thể có dạng %computername%.efs

Cách thực hiện trên Windows XP:

REM @echo off
REM EFS MyDoc & Outlook EFS Encryption Script Version 1.1
REM http://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!

Với Windows Vista, 7: 

REM @echo off
REM EFS MyDoc & Outlook EFS Encryption Script Version 1.1
REM http://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!

Chúc các bạn thành công!

(T.Anh GroovyPost)

(Theo quantrimang)

Tin nổi bật trong ngày
Tin mới nhất

Register

Newsletter

Email this story

If you really want to ban this commenter, please write down the reason:

If you really want to disable all recommended stories, click on OK button. After that, you will be redirect to your options page.