9月17
现在保护自己隐私的重要性想必大家都知道吧。大到顶顶有名的陈冠希,小到我们这的一对无名小夫妻,都因为没保护好隐私而受到精神上的压力。
今天我就给大家讲讲如何保护自己的隐私。
首先就是自己要有保护意识,不把自己的资料公布在互联网上,就算是正规网站也存在资料被盗的危险,不妨上网注册会员的时候用假资料(个人观点,出现问题自行负责),弄个专门用来注册会员的邮箱,找回密码时也方便点,还避免被垃圾邮件攻击,影响自己的工作。
上网后学会清理上网记录,360上面就有个清理使用痕迹的功能,可以抹去个人使用电脑后留下的痕迹,比如最近打开的文档,运行的程序等。
给自己的隐私文件加密或者隐藏。我不喜欢那些加密解密的软件,一来麻烦,而来不够安全(加密好的解密慢,加密快的强度不够)。我呢,则比较偏爱将文件隐藏,用自己的方法。
创建隐藏文件夹 保存为 creat.bat
@echo off
rd D:\autorun.inf\/q/s
md D:\autorun.inf
md D:\autorun.inf\免疫01................\
md D:\autorun.inf\免疫02................\
md D:\autorun.inf\免疫03................\
md D:\autorun.inf\免疫04................\
……
md D:\autorun.inf\免疫110................\
md D:\autorun.inf\免疫111................\
md D:\autorun.inf\免疫112................\
md D:\autorun.inf\免疫113................\
attrib +s +h D:\autorun.inf
进入隐藏文件夹(输入Y或y就可以进入隐藏文件夹D:\autorun.inf\免疫51................\,直接双击文件夹进入会报错) 保存为 删除.bat
@echo off
setlocal enableextensions
echo ____________________________________________________________
echo ^| ^|
echo 确定删除全部?YES/NO
echo ^|____________________________________________________________^|
set /P Gd= -^> (Y/N):
echo.
if "%Gd%"=="Y" start D:\autorun.inf\免疫51................\
if "%Gd%"=="y" start D:\autorun.inf\免疫51................\
注意:creat.bat运行一次就可,在隐藏文件夹保存文件后再次运行creat.bat会清空原来保存的文件!
Now the importance of protecting privacy have been more and more important.
Today, I am here to gave you a tip about how to protect your privacy.
First is,do not publish your own information on the Internet, even a super site has the risk of data theft,you can register members with false information (personal point of view).
Cleaning up the Internet records when you leave the computer,such as the recently opened documents, running programs, and so on.
I do not like those of the encryption and decryption software, (if the encryption is good it will be slow, fast encryption will be easily decrypt). So i prefer to hide documents in my own way.
Save these codes as creat.bat ,then run creat.bat to create a hidden folder.
@echo off
rd D:\autorun.inf\/q/s
md D:\autorun.inf
md D:\autorun.inf\immune01................\
md D:\autorun.inf\immune02................\
md D:\autorun.inf\immune03................\
md D:\autorun.inf\immune04................\
……
md D:\autorun.inf\immune110................\
md D:\autorun.inf\immune111................\
md D:\autorun.inf\immune112................\
md D:\autorun.inf\immune113................\
attrib +s +h D:\autorun.inf
Since double-click directly into the folder will be reported Wrong,you can not enter the hiden document dirctely save these codes as delete. Bat,of course its function is not to delete ( input y or Y you will be able to enter the hidden folder D: \ autorun.inf \immune51 ................ \ )
@echo off
setlocal enableextensions
echo ____________________________________________________________
echo ^| ^|
echo determined to delete all? YES/NO YES / NO
echo ^|____________________________________________________________^|
set /P Gd= -^> (Y/N):
echo.
if "%Gd%"=="Y" start D:\autorun.inf\immune51................\
if "%Gd%"=="y" start D:\autorun.inf\immune51................\
Attention: creat.bat can be only run once,or the files in hidden document will be lost.
今天我就给大家讲讲如何保护自己的隐私。
首先就是自己要有保护意识,不把自己的资料公布在互联网上,就算是正规网站也存在资料被盗的危险,不妨上网注册会员的时候用假资料(个人观点,出现问题自行负责),弄个专门用来注册会员的邮箱,找回密码时也方便点,还避免被垃圾邮件攻击,影响自己的工作。
上网后学会清理上网记录,360上面就有个清理使用痕迹的功能,可以抹去个人使用电脑后留下的痕迹,比如最近打开的文档,运行的程序等。
给自己的隐私文件加密或者隐藏。我不喜欢那些加密解密的软件,一来麻烦,而来不够安全(加密好的解密慢,加密快的强度不够)。我呢,则比较偏爱将文件隐藏,用自己的方法。
创建隐藏文件夹 保存为 creat.bat
@echo off
rd D:\autorun.inf\/q/s
md D:\autorun.inf
md D:\autorun.inf\免疫01................\
md D:\autorun.inf\免疫02................\
md D:\autorun.inf\免疫03................\
md D:\autorun.inf\免疫04................\
……
md D:\autorun.inf\免疫110................\
md D:\autorun.inf\免疫111................\
md D:\autorun.inf\免疫112................\
md D:\autorun.inf\免疫113................\
attrib +s +h D:\autorun.inf
进入隐藏文件夹(输入Y或y就可以进入隐藏文件夹D:\autorun.inf\免疫51................\,直接双击文件夹进入会报错) 保存为 删除.bat
@echo off
setlocal enableextensions
echo ____________________________________________________________
echo ^| ^|
echo 确定删除全部?YES/NO
echo ^|____________________________________________________________^|
set /P Gd= -^> (Y/N):
echo.
if "%Gd%"=="Y" start D:\autorun.inf\免疫51................\
if "%Gd%"=="y" start D:\autorun.inf\免疫51................\
注意:creat.bat运行一次就可,在隐藏文件夹保存文件后再次运行creat.bat会清空原来保存的文件!
Now the importance of protecting privacy have been more and more important.
Today, I am here to gave you a tip about how to protect your privacy.
First is,do not publish your own information on the Internet, even a super site has the risk of data theft,you can register members with false information (personal point of view).
Cleaning up the Internet records when you leave the computer,such as the recently opened documents, running programs, and so on.
I do not like those of the encryption and decryption software, (if the encryption is good it will be slow, fast encryption will be easily decrypt). So i prefer to hide documents in my own way.
Save these codes as creat.bat ,then run creat.bat to create a hidden folder.
@echo off
rd D:\autorun.inf\/q/s
md D:\autorun.inf
md D:\autorun.inf\immune01................\
md D:\autorun.inf\immune02................\
md D:\autorun.inf\immune03................\
md D:\autorun.inf\immune04................\
……
md D:\autorun.inf\immune110................\
md D:\autorun.inf\immune111................\
md D:\autorun.inf\immune112................\
md D:\autorun.inf\immune113................\
attrib +s +h D:\autorun.inf
Since double-click directly into the folder will be reported Wrong,you can not enter the hiden document dirctely save these codes as delete. Bat,of course its function is not to delete ( input y or Y you will be able to enter the hidden folder D: \ autorun.inf \immune51 ................ \ )
@echo off
setlocal enableextensions
echo ____________________________________________________________
echo ^| ^|
echo determined to delete all? YES/NO YES / NO
echo ^|____________________________________________________________^|
set /P Gd= -^> (Y/N):
echo.
if "%Gd%"=="Y" start D:\autorun.inf\immune51................\
if "%Gd%"=="y" start D:\autorun.inf\immune51................\
Attention: creat.bat can be only run once,or the files in hidden document will be lost.
如何快速获得QQ旋风积分
喝奶有风险 饮用须谨慎


13:30

