USB से अपने पीसी पर डेटा को स्वचालित रूप से कॉपी करें
USB से अपने पीसी पर डेटा को स्वचालित रूप से कॉपी करें
हम कभी-कभी कामना करते हैं कि यदि कोई आपका पीसी में अपना USB डालें तो उसका डेटा अपने सिस्टम में छिपे हुए फॉर्म में स्वचालित रूप से कॉपी हो जाता है।
इसमें सॉफ्टवेयर की कोई आवश्यकता नहीं है। हम कुछ डॉस कमांड की मदद से इसे संभव बनाएंगे।
आरंभ करने दें, नीचे दिए गए चरणों का पालन करें।
इसमें सॉफ्टवेयर की कोई आवश्यकता नहीं है। हम कुछ डॉस कमांड की मदद से इसे संभव बनाएंगे।
आरंभ करने दें, नीचे दिए गए चरणों का पालन करें।
1. open cmd
3. type copy con filename.bat
3. now type “xcopy
i: f:\copied /h /s /c /q /i” remove ” ”
4. type Exit
4. press f6
5. now it will create a batch file named filename.bat
3. type copy con filename.bat
3. now type “xcopy
i: f:\copied /h /s /c /q /i” remove ” ”
4. type Exit
4. press f6
5. now it will create a batch file named filename.bat
xcopy is a command which is used to copy file and folder
i: is the name of your pen-drive drive name replace with your drive name
f:\copied is the name of folder where you wish to copied data is to be placed replace
with your own folder or path
/h is used to copy hidden files also
i: is the name of your pen-drive drive name replace with your drive name
f:\copied is the name of folder where you wish to copied data is to be placed replace
with your own folder or path
/h is used to copy hidden files also
अब इस फाइल को डेस्कटॉप पर कॉपी करें जब भी कोई आपके सिस्टम में अपना USB डालें तो इस फाइल पर क्लिक करें उसका डेटा अपने आप आपके द्वारा निर्दिष्ट फ़ोल्डर में कॉपी हो जाता है।
Comments
Post a Comment