as780611as
一般會員
積分 529
發文 96
註冊 2008-5-28
狀態 離線
|
#1 [原創]不用軟體就可以建立硬碟和隨身碟鎖
打開記事本,複製下列語法,命名為autorun.inf
[autorun]
open=autorun.bat
shell\open\command=autorun.bat
shell\open\explore=autorun.bat
打開記事本,複製下列語法,命名為autorun.bat
@echo off
title=BAT密碼鎖
:back
set /p CHS=請輸入正確的密碼 :
if /i "%CHS%"=="as780611as是大白痴c" (
cd c:
explorer c:
exit
)
if /i "%CHS%"=="as780611as是大白痴d" (
cd d:
explorer d:
exit
)
if /i "%CHS%"=="as780611as是大白痴e" (
cd e:
explorer e:
exit
)
if /i "%CHS%"=="as780611as是大白痴f" (
cd f:
explorer f:
exit
)
if /i "%CHS%"=="as780611as是大白痴g" (
cd g:
explorer g:
exit
)
if /i "%CHS%"=="as780611as是大白痴h" (
cd h:
explorer h:
exit
)
goto back
as780611as是大白痴c是譬喻,隨使用者高興命名密碼,密碼後面代表要進入的硬碟
隨身碟把起來重新插就可以用,硬碟需要重新啟動explorer
打開記事本,複製下列語法,命名為explorer重新啟動.bat
@echo off
taskkill /im explorer.exe /f
start explorer.exe
這樣一來就可以重新啟動explorer
大家請踴躍回復
[ Last edited by as780611as on 2008-10-6 at 09:48 AM ]
|
|