成人性生交大片免费看视频r_亚洲综合极品香蕉久久网_在线视频免费观看一区_亚洲精品亚洲人成人网在线播放_国产精品毛片av_久久久久国产精品www_亚洲国产一区二区三区在线播_日韩一区二区三区四区区区_亚洲精品国产无套在线观_国产免费www

主頁(yè) > 知識(shí)庫(kù) > 批處理設(shè)置windows服務(wù)器的代碼ThecSafe1.9.4第1/3頁(yè)

批處理設(shè)置windows服務(wù)器的代碼ThecSafe1.9.4第1/3頁(yè)

熱門(mén)標(biāo)簽:谷歌地圖標(biāo)注時(shí)間 廣州云外呼系統(tǒng)公司 岳陽(yáng)縣地圖標(biāo)注app 好的人工智能電話(huà)機(jī)器人 地圖標(biāo)注銷(xiāo)售數(shù)據(jù) 中國(guó)地圖標(biāo)注省份顏色 百應(yīng)ai電話(huà)機(jī)器人銷(xiāo)售怎么樣 云南旅游地圖標(biāo)注app 地圖標(biāo)注位置有用嗎
@Echo Off
TITLE  常來(lái)網(wǎng)服務(wù)器高級(jí)安全設(shè)置器

:start
CLS
COLOR 1f
Rem 使用COLOR命令對(duì)控制臺(tái)輸出顏色進(jìn)行更改
MODE con: COLS=32 LINES=21
Rem MODE語(yǔ)句為設(shè)定窗體的寬和高
Set tm1=%time:~0,2%
Set tm2=%time:~3,2%
Set tm3=%time:~6,2%
Echo %date% %tm1%點(diǎn)%tm2%分%tm3%秒 
Echo ================================
Echo 請(qǐng)選擇要進(jìn)行的操作,然后按回車(chē)
Echo ───────────────
Echo.
Echo A. 一鍵搞定/全自動(dòng)設(shè)置服務(wù)器
Echo 0. 清理系統(tǒng)垃圾文件
Echo 1. 給系統(tǒng)危險(xiǎn)文件設(shè)置權(quán)限
Echo 2. 給系統(tǒng)危險(xiǎn)文件夾設(shè)置權(quán)限
Echo 3. 系統(tǒng)服務(wù)優(yōu)化
Echo 4. 注冊(cè)表危險(xiǎn)組件刪除
Echo 5. 防DDOS洪水攻擊處理
Echo 6. 導(dǎo)入常來(lái)網(wǎng)專(zhuān)用安全策略
Echo 7. 重啟IIS使設(shè)置生效
Echo 8. 刷新當(dāng)前時(shí)間
Echo 9. 鎖定計(jì)算機(jī)
Echo L. 注銷(xiāo)當(dāng)前用戶(hù)
Echo Q. 退出安全設(shè)置器
Echo.

:cho 
Set Choice=
Set /P Choice=選擇:
Rem 設(shè)定變量"Choice"為用戶(hù)輸入的字符
If Not "%Choice%"=="" Set Choice=%Choice:~0,1%
Rem 如果輸入大于1位,取第1位,比如輸入132,則返回值為1
Echo.
If /I "%Choice%"=="A" Goto Auto
If /I "%Choice%"=="0" Goto Clear
If /I "%Choice%"=="1" Goto SetFile
If /I "%Choice%"=="2" Goto SetFolder
If /I "%Choice%"=="3" Goto Service
If /I "%Choice%"=="4" Goto Reg
If /I "%Choice%"=="5" Goto Ddos
If /I "%Choice%"=="6" Goto Ipsec
If /I "%Choice%"=="7" Goto restartiis
If /I "%Choice%"=="8" Goto start
If /I "%Choice%"=="9" Goto lock
If /I "%Choice%"=="L" Goto logoff
If /I "%Choice%"=="Q" Goto End
Rem 為避免出現(xiàn)返回值為空或含空格而導(dǎo)致程序異常,需在變量外另加雙引號(hào)
Rem 注意,If語(yǔ)句需要雙等于號(hào)
Rem 如果輸入的字符不是以上數(shù)字,將返回重新輸入
Echo 選擇無(wú)效,請(qǐng)重新輸入
Echo.
Goto cho

:Clear
CLS
MODE con: COLS=80 LINES=18
COLOR 70
Echo.
Echo 正在清理系統(tǒng)垃圾文件,請(qǐng)稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.*
del /f /s /q %windir%\temp\*.*
del /f /s /q %userprofile%\cookies\*.*
del /f /s /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"

Echo 清理系統(tǒng)垃圾完成! 請(qǐng)按任意鍵返回并選1繼續(xù)...
PAUSE >nul
Goto start

:SetFile
CLS
MODE con: COLS=80 LINES=18
COLOR 70
Echo.
Rem 刪除系統(tǒng)危險(xiǎn)文件的訪(fǎng)問(wèn)權(quán)限,只留管理組成員

cscript.exe xcacls.vbs "%SystemDrive%/boot.ini" /G Administrators:F
cscript.exe xcacls.vbs "%SystemDrive%/boot.ini" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemDrive%/AUTOEXEC.BAT" /G Administrators:F
cscript.exe xcacls.vbs "%SystemDrive%/AUTOEXEC.BAT" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemDrive%/Program Files/Internet Explorer/iexplore.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemDrive%/Program Files/Internet Explorer/iexplore.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/net.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/net.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/net1.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/net1.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/cmd.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/cmd.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/ftp.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/ftp.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/scrrun.dll" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/scrrun.dll" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/shell.dll" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/shell.dll" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/netstat.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/netstat.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/regedit.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/regedit.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/secedit.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/secedit.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/gpresult.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/gpresult.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/gpupdate.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/gpupdate.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/at.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/at.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/attrib.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/attrib.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/format.com" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/format.com" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/logoff.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/logoff.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/shutdown.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/shutdown.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/telnet.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/telnet.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/wscript.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/wscript.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/doskey.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/doskey.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/help.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/help.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/ipconfig.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/ipconfig.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/nbtstat.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/nbtstat.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/print.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/print.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/xcopy.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/xcopy.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/edit.com" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/edit.com" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/regedt32.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/regedt32.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/reg.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/reg.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/register.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/register.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/replace.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/replace.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/nwscript.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/nwscript.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/share.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/share.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/ping.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/ping.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/ipsec6.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/ipsec6.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/netsh.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/netsh.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/debug.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/debug.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/route.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/route.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/tracert.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/tracert.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/powercfg.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/powercfg.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/nslookup.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/nslookup.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/arp.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/arp.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/rsh.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/rsh.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/netdde.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/netdde.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/mshta.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/mshta.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/mountvol.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/mountvol.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/tftp.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/tftp.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/setx.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/setx.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/find.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/find.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/finger.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/finger.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/where.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/where.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/regsvr32.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/regsvr32.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/cacls.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/cacls.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/sc.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/sc.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/shadow.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/shadow.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/runas.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/runas.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/wshom.ocx" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/wshom.ocx" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/wshext.dll" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/wshext.dll" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/shell32.dll" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/shell32.dll" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/zipfldr.dll" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/zipfldr.dll" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/PCHealth/HelpCtr/Binaries/msconfig.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/PCHealth/HelpCtr/Binaries/msconfig.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/notepad.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/notepad.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/regedit.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/regedit.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/winhelp.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/winhelp.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/winhlp32.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/winhlp32.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/notepad.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/notepad.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/edlin.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/edlin.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/posix.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/posix.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/atsvc.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/atsvc.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/qbasic.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/qbasic.exe" /G Administrators:F

cscript.exe xcacls.vbs "%SystemRoot%/system32/runonce.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/runonce.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/syskey.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/syskey.exe" /D Guests:F /E

cscript.exe xcacls.vbs "%SystemRoot%/system32/cscript.exe" /G Administrators:F
cscript.exe xcacls.vbs "%SystemRoot%/system32/cscript.exe" /D Guests:F /E

Echo 給系統(tǒng)危險(xiǎn)文件設(shè)置權(quán)限設(shè)定完畢! 請(qǐng)按任意鍵返回并選2繼續(xù)...
PAUSE >nul
Goto start

:SetFolder
CLS
MODE con: COLS=80 LINES=18
COLOR 70
Echo.
Rem 刪除C盤(pán)所有的Everone權(quán)限
cd/ 

cscript.exe xcacls.vbs "%SystemDrive%" /r "Everyone" /e 
cscript.exe xcacls.vbs "%SystemRoot%" /r "Everyone" /e 
@REM "cscript.exe xcacls.vbs "%SystemRoot%/Registration" /r "Everyone" /e " 這個(gè)不能去Everyone權(quán)限
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings" /r "Everyone" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users" /r "Everyone" /e 
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Documents"  /r "Everyone" /e 
cscript.exe xcacls.vbs "%SystemDrive%/Inetpub/aspnet_client"  /r "Everyone" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft"  /r "Everyone" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft/HTML Help"  /r "Everyone" /e

Rem 刪除C盤(pán)所有的CREATOR OWNER權(quán)限
cd/ 

cscript.exe xcacls.vbs "%SystemRoot%" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemDrive%" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemRoot%/repair" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/wbem" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/config" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemDrive%/Program Files" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemDrive%/Program Files/WindowsUpdate" /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Documents"  /r "CREATOR OWNER" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data"  /r "CREATOR OWNER" /e

Rem 刪除C盤(pán)所有的Power Users權(quán)限
cd/ 

cscript.exe xcacls.vbs "%SystemRoot%" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemRoot%/repair" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/wbem" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/config" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Program Files" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Program Files/WindowsUpdate" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users" /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Documents"  /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data"  /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft"  /r "Power Users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft/HTML Help"  /r "Power Users" /e

Rem 刪除C盤(pán)所有的TERMINAL SERVER USER權(quán)限
cd/ 

cscript.exe xcacls.vbs "%SystemDrive%/Program Files" /r "TERMINAL SERVER USER" /e

Rem 添加Guests組拒絕權(quán)限[IUSR_XXX或某個(gè)虛擬主機(jī)用戶(hù)組禁止列目錄,可有效防止FSO類(lèi)木馬]
cd/

cscript.exe xcacls.vbs "%SystemDrive%/Program Files" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/repair" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/system32" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/system32/config" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/system32/inetsrv" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/system32/inetsrv/MetaBack" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/system32/inetsrv/ASP Compiled Templates" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/IIS Temporary Compressed Files" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET Files" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemRoot%/Microsoft.NET/Framework/v2.0.50727/Temporary ASP.NET Files" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft/Crypto/DSS/achineKeys" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft/Crypto/RSA/MachineKeys" /D Guests:1;1 /E
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data/Microsoft/HTML Help" /D Guests:1;1 /E

Rem 刪除C盤(pán)的所有的users的訪(fǎng)問(wèn)權(quán)限
cd/

cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users" /r "users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Documents"  /r "users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings/All Users/Application Data"  /r "users" /e
cscript.exe xcacls.vbs "%SystemDrive%" /r "users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Program Files" /r "users" /e
cscript.exe xcacls.vbs "%SystemDrive%/Documents and Settings" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/addins" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/AppPatch" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/Connection Wizard" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/Debug" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/Driver Cache" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/Help" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/IIS Temporary Compressed Files" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/java" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/msagent" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/mui" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/repair" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/Resources" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/security" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/TAPI" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/twain_32" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/Web" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/3com_dmi" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/administration" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/Cache" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/CatRoot2" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/Com" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/config" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/dhcp" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/drivers" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/export" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/icsxml" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/lls" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/LogFiles" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/MicrosoftPassport" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/mui" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/oobe" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/system32/ShellExt" /r "users" /e
@Rem cscript.exe xcacls.vbs "%SystemRoot%/system32/wbem" /r "users" /e 這里影響.NET程序的正常運(yùn)行,所以去掉!

Rem 添加IIS_WPG的訪(fǎng)問(wèn)權(quán)限
cscript.exe xcacls.vbs "%SystemDrive%" /g IIS_WPG:;b468 /e
cscript.exe xcacls.vbs "%SystemRoot%" /g IIS_WPG:b1468;b1468 /e
cscript.exe xcacls.vbs "%SystemDrive%/Program Files" /g IIS_WPG:r /e
cscript.exe xcacls.vbs "%SystemRoot%/Downloaded Program Files" /g IIS_WPG:c /e
cscript.exe xcacls.vbs "%SystemRoot%/Help" /g IIS_WPG:c /e
cscript.exe xcacls.vbs "%SystemRoot%/IIS Temporary Compressed Files" /g IIS_WPG:c /e
cscript.exe xcacls.vbs "%SystemRoot%/Offline Web Pages" /g IIS_WPG:c /e
cscript.exe xcacls.vbs "%SystemRoot%/System32" /g IIS_WPG:c /e
cscript.exe xcacls.vbs "%SystemRoot%/Tasks" /g IIS_WPG:c /e
cscript.exe xcacls.vbs "%SystemRoot%/Web" /g IIS_WPG:c /e

Rem 添加iis_wpg的訪(fǎng)問(wèn)權(quán)限[裝了MACFEE的軟件專(zhuān)用]
Rem cscript.exe xcacls.vbs "%SystemDrive%/Program Files/Network Associates" /g IIS_WPG:r /e

Rem 添加users的訪(fǎng)問(wèn)權(quán)限
cscript.exe xcacls.vbs "%SystemRoot%/temp" /g Everyone:m /e
cscript.exe xcacls.vbs "%SystemDrive%/Program Files/Common Files" /g Users:r /e
cscript.exe xcacls.vbs "%SystemRoot%/Microsoft.NET/Framework" /g users:b1468;b1468 /e



Rem 禁止[列出文件夾 / 讀取數(shù)據(jù)]此權(quán)限出現(xiàn)
Rem ------------------------------------------- 
Rem 添加Users的訪(fǎng)問(wèn)權(quán)限[裝了PHP的服務(wù)器專(zhuān)用]
cscript.exe xcacls.vbs "C:\php5" /g users:b468;b468 /e
cscript.exe xcacls.vbs "%SystemRoot%/system32" /r "users" /e
cscript.exe xcacls.vbs "%SystemRoot%/System32" /g users:b468;b468 /e
Rem ------------------------------------------- 

Rem 刪除D盤(pán)的所有的users的訪(fǎng)問(wèn)權(quán)限 
cscript.exe xcacls.vbs "D:\" /r "users" /e
cscript.exe xcacls.vbs "D:\" /r "everyone" /e
cscript.exe xcacls.vbs "D:\" /r "CREATOR OWNER" /e

Rem 刪除E盤(pán)的所有的users的訪(fǎng)問(wèn)權(quán)限 
cscript.exe xcacls.vbs "E:\" /r "users" /e
cscript.exe xcacls.vbs "E:\" /r "everyone" /e
cscript.exe xcacls.vbs "E:\" /r "CREATOR OWNER" /e

Rem 刪除F盤(pán)的所有的users的訪(fǎng)問(wèn)權(quán)限 
cscript.exe xcacls.vbs "F:\" /r "users" /e
cscript.exe xcacls.vbs "F:\" /r "everyone" /e
cscript.exe xcacls.vbs "F:\" /r "CREATOR OWNER" /e

Rem 刪除C盤(pán)Windows下的所有的危險(xiǎn)文件夾

attrib %SystemRoot%/Web/printers -s -r -h
del %SystemRoot%\Web\printers\*.* /s /q /f
rd %SystemRoot%\Web\printers /s /q

attrib %SystemRoot%\Help\iisHelp -s -r -h
del %SystemRoot%\Help\iisHelp\*.* /s /q /f
rd %SystemRoot%\Help\iisHelp /s /q

attrib %SystemRoot%\system32\inetsrv\iisadmpwd -s -r -h
del %SystemRoot%\system32\inetsrv\iisadmpwd\*.* /s /q /f
rd %SystemRoot%\system32\inetsrv\iisadmpwd /s /q

Echo 給系統(tǒng)危險(xiǎn)文件夾設(shè)置權(quán)限設(shè)定完畢! 請(qǐng)按任意鍵返回并選3繼續(xù)...
PAUSE >nul
Goto start

:Service
CLS
MODE con: COLS=80 LINES=18
COLOR 70
Echo.

@REM Application Experience Lookup Service
@REM 在應(yīng)用程序啟動(dòng)時(shí)為應(yīng)用程序處理應(yīng)用程序兼容性查找請(qǐng)求。
@REM 建議: 禁用
sc config AeLookupSvc start= DISABLED
sc stop AeLookupSvc

@REM Background Intelligent Transfer Service
@REM 在后臺(tái)傳輸客戶(hù)端和服務(wù)器之間的數(shù)據(jù)。如果禁用了 BITS,一些功能,如 Windows Update,就無(wú)法正常運(yùn)行。
@REM 建議: 禁用
sc config BITS start= DISABLED
sc stop BITS

@REM DHCP Client
@REM 為此計(jì)算機(jī)注冊(cè)并更新 IP 地址。如果此服務(wù)停止,計(jì)算機(jī)將不能接收動(dòng)態(tài) IP 地址和 DNS 更新。如果此服務(wù)被禁用,所有明確依賴(lài)它的服務(wù)都將不能啟動(dòng)。
@REM 建議: 禁用
sc config Dhcp start= DISABLED
sc stop Dhcp

@REM Network Location Awareness (NLA)
@REM 收集并保存網(wǎng)絡(luò)配置和位置信息,并在信息改動(dòng)時(shí)通知應(yīng)用程序。
@REM 建議: 禁用
sc config Nla start= DISABLED
sc stop Nla

@REM Secondary Logon
@REM 啟用替換憑據(jù)下的啟用進(jìn)程。如果此服務(wù)被終止,此類(lèi)型登錄訪(fǎng)問(wèn)將不可用。如果此服務(wù)被禁用,任何依賴(lài)它的服務(wù)將無(wú)法啟動(dòng)。
@REM 建議: 禁用
sc config seclogon start= DISABLED
sc stop seclogon

@REM TCP/IP NetBIOS Helper
@REM 提供 TCP/IP (NetBT) 服務(wù)上的 NetBIOS 和網(wǎng)絡(luò)上客戶(hù)端的 NetBIOS 名稱(chēng)解析的支持,從而使用戶(hù)能夠共享文件、打印和登錄到網(wǎng)絡(luò)。如果此服務(wù)被停用,這些功能可能不可用。如果此服務(wù)被禁用,任何依賴(lài)它的服務(wù)將無(wú)法啟動(dòng)。
@REM 建議: 禁用
sc config LmHosts start= DISABLED
sc stop LmHosts

@REM Wireless Configuration
@REM 啟用 IEEE 802.11 適配器的自動(dòng)配置。如果此服務(wù)停止,自動(dòng)配置將不可用。如果此服務(wù)被禁用,所有明確依賴(lài)它的服務(wù)都將不能啟動(dòng)。
@REM 建議: 禁用
sc config WZCSVC start= DISABLED
sc stop WZCSVC

@REM Distributed Transaction Coordinator
@REM 協(xié)調(diào)跨多個(gè)數(shù)據(jù)庫(kù)、消息隊(duì)列、文件系統(tǒng)等資源管理器的事務(wù)。如果停止此服務(wù),則不會(huì)發(fā)生這些事務(wù)。如果禁用此服務(wù),顯式依賴(lài)此服務(wù)的其他服務(wù)將無(wú)法啟動(dòng)。
@REM 建議: 禁用
sc config MSDTC start= DISABLED
sc stop MSDTC

@REM Smart Card (智慧卡)
@REM 微軟:管理這個(gè)計(jì)算機(jī)所讀取智能卡的存取。如果這個(gè)服務(wù)被停止,這個(gè)計(jì)算機(jī)將無(wú)法讀取智能卡。如果這個(gè)服務(wù)被停用,任何明確依存于它的服務(wù)將無(wú)法啟動(dòng)。
@REM 補(bǔ)充: 如果你不使用 Smart Card ,那就可以關(guān)了
@REM 依存: Plug and Play
@REM 建議: 禁用
sc config   SCardSvr start= DISABLED
sc stop SCardSvr

@REM Internet Connection Firewall (ICF) / Internet Connection Sharing (ICS)[For XP]
@REM 微軟:為您的家用網(wǎng)絡(luò)或小型辦公室網(wǎng)絡(luò)提供網(wǎng)絡(luò)地址轉(zhuǎn)譯、尋址及名稱(chēng)解析服務(wù)和/或防止干擾的服務(wù)。
@REM 補(bǔ)充: 如果你不使用因特網(wǎng)聯(lián)機(jī)共享(ICS)或是 XP 內(nèi)含的因特網(wǎng)聯(lián)機(jī)防火墻(ICF)你可以關(guān)掉
@REM 依存: Application Layer Gateway Service、Network Connections、Network Location Awareness(NLA)、remote Access Connection Manager
@REM 建議: 禁用
sc config   SharedAccess start= DEMAND
sc stop SharedAccess

@REM Windows Image Acquisition (WIA) (Windows影像取得程序)
@REM 微軟: 為掃描儀和數(shù)字相機(jī)提供影像擷取服務(wù)。
@REM 補(bǔ)充:如果掃描儀和數(shù)字相機(jī)內(nèi)部具有支持WIA功能的話(huà),那就可以直接看到圖檔,不需要其它的驅(qū)動(dòng)程序,所以沒(méi)有掃描儀和數(shù)字相機(jī)的使用者大可關(guān)了
@REM 依存:remote Procedure Call (RPC)
@REM 建議: 禁用
sc config   stisvc start= DISABLED
sc stop stisvc

@REM MS Software Shadow Copy Provider[For XP]
@REM 微軟:管理磁盤(pán)區(qū)陰影復(fù)制服務(wù)所取得的以軟件為主的磁盤(pán)區(qū)陰影復(fù)制。如果停止這個(gè)服務(wù),就無(wú)法管理以軟件為主的磁盤(pán)區(qū)陰影復(fù)制。
@REM 補(bǔ)充: 如上所說(shuō)的,用來(lái)備份的東西,如 MS Backup 程序就需要這個(gè)服務(wù)
@REM 依存:remote Procedure Call (RPC)
@REM 建議: 禁用
sc config   swprv start= DISABLED
sc stop swprv
123下一頁(yè)閱讀全文

標(biāo)簽:東營(yíng) 三沙 南京 鄭州 周口 三明 天門(mén) 宜昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《批處理設(shè)置windows服務(wù)器的代碼ThecSafe1.9.4第1/3頁(yè)》,本文關(guān)鍵詞  批處理,設(shè)置,windows,服務(wù)器,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《批處理設(shè)置windows服務(wù)器的代碼ThecSafe1.9.4第1/3頁(yè)》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于批處理設(shè)置windows服務(wù)器的代碼ThecSafe1.9.4第1/3頁(yè)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    亚洲精品日韩专区silk| 91精品久久久久久久91蜜桃| 992tv在线影院| 精品无人区乱码1区2区3区在线| 久热在线视频观看| 国产情侣一区在线| 在线三级电影| 日本卡一卡2卡3卡4精品卡网站| 成人天堂噜噜噜| 亚洲制服国产| 日韩精品在线观看视频| 国产色综合一区二区三区| 国产探花在线视频| 97精品人人妻人人| 国产成人精品无码片区在线| 9191国产精品| 99视频在线看| 欧美日韩精品一区二区三区蜜桃| 综合欧美视频一区二区三区| 俺去了亚洲欧美日韩| 精品毛片网大全| 久久精品欧美一区二区三区麻豆| 少妇大叫太粗太大爽一区二区| 欧美日产国产成人免费图片| 欧美夫妻性视频| 国产传媒在线| 加勒比成人在线| 国产精品欧美风情| 日韩精品欧美专区| 亚洲调教视频在线观看| 免费av观看网址| 国产在线播放一区三区四| 日韩av手机在线免费观看| 少妇一级淫片免费放中国| 日韩视频二区| 国产偷人爽久久久久久老妇app| 91精品国产自产91精品| 永久免费黄色软件| 黄一区二区三区| 亚洲精品一区二区三区在线| 性欧美13一14内谢| 婷婷丁香久久五月婷婷| 成年在线播放小视频| 国产精品激情av电影在线观看| 黄色动漫网站入口| 久热爱精品视频线路一| 在线成人中文字幕| 91麻豆蜜桃一区二区三区| 亚洲不卡1卡2卡三卡2021麻豆| 久久久久久久一| 中文字幕精品—区二区日日骚| 日韩精品永久网址| 蜜桃传媒视频麻豆第一区免费观看| 五月综合激情网| 国产精品大片| 久久精彩视频| 精品三级久久久久久久电影聊斋| 免费搞黄视频| 日韩不卡免费高清视频| av播放在线观看| 国产h视频在线播放| 国产精品亚洲人成在99www| 伦一区二区三区中文字幕v亚洲| 天天色av.com| 久久蜜桃av一区精品变态类天堂| 免费网站在线观看人| www.亚洲免费av| 在线免费观看羞羞视频一区二区| 性欧美8khd高清极品| 欧美亚洲一区在线| 91精品久久久久久久久99蜜臂| 最近2019中文字幕第三页视频| 色婷婷av一区二区三区在线观看| 中文字幕在线观看91| 免费男女羞羞的视频网站中文字幕妖精视频| 久久精彩免费视频| 涩涩漫画在线观看| 亚洲破处大片| 欧美日韩国产色| 国产精品国产精品国产专区| 在线成人精品视频| 亚洲第一视频在线| 97在线中文字幕| 国产剧情久久久久久| 成人免费无码av| 亚洲人一二三区| 国产中文欧美精品| 91中文精品字幕在线视频| 亚洲av熟女国产一区二区性色| 91丨九色丨蝌蚪丨少妇在线观看| 亚洲国产精品一区二区久久| 日本人妖在线| 三级不卡在线观看| 亚洲欧美日韩综合精品网| 开心色怡人综合网站| 中文字幕一区二区三区四区久久| а√天堂资源官网在线资源| 久久精品电影一区二区| 羞羞色午夜精品一区二区三区| 99国内精品| 精品国产一区二区三区久久影院| 热re99久久精品国产99热| 亚洲欧美日本一区二区三区| 99这里只有精品| 国产又黄又粗又猛又爽的视频| 你懂的免费视频| 日韩精品麻豆| 综合婷婷亚洲小说| 日韩一区二区三免费高清| 日韩视频一区在线| 国产传媒欧美日韩成人精品大片| 亚洲伊人一本大道中文字幕| 久久91精品| 欧美日韩综合视频网址| 亚洲欧美丝袜| 欧美日韩视频在线一区二区观看视频| 国产欧美一区二区三区四区| 精品人妻一区二区三区免费看| 91麻豆精品秘密| 激情伊人五月天久久综合| www.激情| 亚洲无码精品一区二区三区| 日韩欧美精品网站| 美女精品在线观看| 欧美伊人久久久久久午夜久久久久| 亚洲福利视频一区二区| 爽死777影院| 欧美激情1区2区3区| 亚洲欧美国产一区二区三区| 亚洲成人高清在线| 91在线直播亚洲| 欧美日韩成人在线观看| 国产亚洲精品久久久久久久| 久久久久亚洲av无码网站| 欧美视频一区在线观看| 欧美一级片黄色| 国产福利微拍精品一区二区| 国产精品一区二区三区四区五区| 成 人 黄 色 片 在线播放| 久久夜靖品2区| 国产黄大片在线观看画质优化| 久久亚洲一级片| 麻豆av在线免费观看| 粉嫩av一区二区三区免费野| 91xx在线观看| 美女88av| 国产一卡二卡三卡四卡| 少妇精品久久久一区二区三区| 亚洲网站在线观看| 天堂网www天堂在线网| 99国产精品久久一区二区三区| 日韩综合小视频| 亚洲综合爱爱久久网| 久久久精品2019中文字幕神马| 一区二区三区四区久久| 成人h视频在线观看| 国产一级在线观看| 播播国产欧美激情| 免费看成年视频网页| www.性欧美| 亚洲综合色av| 久久久久久久| 一本一道久久a久久精品综合| 成人午夜三级| ㊣最新国产の精品bt伙计久久| 91蜜桃网址入口| 99只有精品| 日韩在线xxx| jizz性欧美2| 日本成人在线不卡| 欧美另类在线观看| 91av在线视频观看| 一区二区三区欧美成人| 少妇av一区二区三区无码| 欧美一区二区少妇| 不卡的av在线| 精品一区二区三区中文字幕在线| 狠狠躁夜夜躁人人爽天天天天97| 日韩欧美在线观看免费| 五月香视频在线观看| 97人妻精品一区二区三区视频| 日韩视频一区二区三区四区| 激情六月婷婷| 韩国av免费观看| 日本欧美肥老太交大片| 国产精品18p| 久久6免费高清热精品| 女同性互吃奶乳免费视频| 亚洲免费一区二区| 日韩一区二区三区四区区区| 在线电影av不卡网址| 首播影院在线观看免费观看电视| 成人午夜激情在线| 亚洲精品电影网站| wwwcom羞羞网站| 国产欧美va欧美不卡在线| 综合图区亚洲| 久草在线免费资源| av每日在线更新| 欧美特级特黄aaaaaa在线看| 伪装者在线观看完整版免费| 奇米一区二区三区四区久久| 色综合老司机第九色激情| 久久韩国免费视频| 久久久青草婷婷精品综合日韩| 成人av一级片| 97在线观视频免费观看| 国产精品一区二区女厕厕| 亚洲视频一区在线观看| 国产精品普通话对白| 久久精品国产亚洲高清剧情介绍| 色综合99久久久无码国产精品| 日韩精品一级二级| 4p变态网欧美系列| 亚洲综合免费观看高清在线观看| 国产女人高潮时对白| 中文字幕2018| 亚洲欧美日韩成人| 韩国成人动漫| 欧美成人三级伦在线观看| 特级西西人体www高清大胆| 天天爽天天爽天天爽| 鲁丝一区鲁丝二区鲁丝三区| 日本猛少妇色xxxxx免费网站| 天天干天天干天天操| 黑人玩欧美人三根一起进| 黄色成人一级片| 青青操国产视频| 亚瑟一区二区三区四区| 成人午夜在线| 奇米777四色影视在线看| 日韩女优在线观看| 国产无遮挡又黄又爽| 中文字幕在线资源| 深夜宅男网站免费进入| 国产精品xvideos88| 操人视频在线播放| 精品视频久久久| 国产成人tv| eeuss影影院www在线播放| julia一区二区三区中文字幕| 中文字幕日韩精品久久| 精品久久久久久久久国产字幕| 国产强被迫伦姧在线观看无码| 99一区二区三区| 国产精品理论在线观看| 亚洲国产欧美一区二区丝袜黑人| 二区视频在线| 婷婷在线视频观看| 99re热视频在线| 99精品视频在线播放免费| 精品免费二区三区三区高中清不卡| 成人在线播放av| 夜夜爽久久精品91| 国产精品日韩二区| 99精品在线免费| 成人av午夜电影| 婷婷综合在线视频| 污污网站在线看| 天堂中文8资源在线8| 美女网站免费观看视频| 久久精品电影网站| 久久久久久久久久久福利| 亚洲人成电影网站色www| aa视频在线观看| 成人做爰69片免网站| 国产精品99久久久久| 丝袜熟女一区二区三区| 中文字幕在线一区免费| 男人天堂视频在线观看| 亚洲成av人片一区二区密柚| 7777狠狠狠琪琪电影| 黄视频网站在线看| 亚洲黄色av一区| 亚洲天堂偷拍| 亚洲高清在线不卡| 伊人情人网综合| 日韩欧美中文一区二区| 99久久精品网站| 欧美男体视频| 亚洲精品无码一区二区| 欧洲成人一区二区三区| 久久6免费高清热精品| 国产精品日本一区二区不卡视频| 精品国产麻豆免费人成网站| 亚洲免费资源在线播放| 精品人妻无码一区二区三区| 2022国产精品视频| 99色精品视频| 九色91在线| 夜夜操天天操亚洲| 久久免费精品日本久久中文字幕| 亚洲精品无码国产| 91蝌蚪91九色| 性欧美18一19性猛交| 麻豆一区二区三区精品视频| 日本中文字幕不卡免费| 在线观看91av| 18岁以下禁止观看的美女视频| 黄色激情视频在线观看| 中文字幕亚洲情99在线| 欧美极品少妇xxxxⅹ高跟鞋| 久久综合亚洲色hezyo国产| 日韩av快播网址| 国产欧美高清| 一区免费观看视频| av老司机免费在线| 欧美视频在线一区| 丰满人妻熟女aⅴ一区| 美国一区二区| 人妻互换一区二区激情偷拍| 国产欧美一区二区三区不卡高清| 日韩欧美一区二区在线观看| 欧美不卡激情三级在线观看| 日本肉体xxxx裸体784大胆| 欧美人与物videos| 国产精品亚洲一区二区三区在线观看| 亚洲成av人乱码色午夜| 国产精品aaa| 亚洲一级黄色录像| 日本欧美视频在线观看| 久久99国产精品久久99果冻传媒| 一卡二卡三卡四卡五卡| 久久久蜜臀国产一区二区| 在线国产精品一区| 欧美精品videos另类| 亚洲天堂视频在线观看| 欧美亚洲三级|