विंडोज 7 एक्सपी या विस्टा के लिए माइक्रोसॉफ्ट ईएफएस एन्क्रिप्शन को स्वचालित कैसे करें
कुछ दिनों पहले मुझे एक स्क्रिप्ट बनाने की जरूरत थी, जोकाम पर मेरे अंतिम उपयोगकर्ताओं के लिए फ़ोल्डर एन्क्रिप्ट करेगा। मैंने नीचे कोड लिखा था, फिर उसे एक लॉगिन स्क्रिप्ट में फेंक दिया, जो बाद में मेरे उपयोगकर्ताओं द्वारा उनके सिस्टम पर लॉग इन करने पर चलेगा। एन्क्रिप्शन का उद्देश्य डेस्कटॉप और लैपटॉप पर संग्रहीत संवेदनशील कंपनी डेटा की सुरक्षा करना है। हालांकि प्रक्रिया ने मेरे लिए काम किया, मैं आपको सलाह देता हूं कि तैनाती से पहले इसे अच्छी तरह से परखें!
नीचे दिया गया कोड एक सरल प्रक्रिया है जो कुछ चीजें करती है:
- "मेरा दस्तावेज़" फ़ोल्डर में लॉग इन सभी डेटा का प्रयास करता है।
- "आउटलुक" फ़ोल्डर में लॉग इन सभी डेटा का प्रयास करता है। यह Outlook 2000 और Outlook 2003 .pst और .ost फ़ाइलों का डिफ़ॉल्ट स्थान है।
- स्क्रिप्ट से बाद के संग्रह के लिए एक फ़ाइल में सभी आउटपुट पाइप। फ़ाइल उपयोगकर्ता के "मेरे दस्तावेज़" में लॉग इन के तहत स्थित हो सकती है। फ़ाइल को% computername% .efs कहा जाएगा।
विंडोज एक्स पी
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!
एक टिप्पणी छोड़ें