精典的網吧常用批處理收集

來源:互聯網
上載者:User
用來隱藏開機的黑框 也免的執行時間過長中途被關閉
  DIM objShell
  set objShell=wscript.createObject("wscript.shell")
  WScript.Sleep(10000)
  iReturn=objShell.Run("cmd.exe /C \\server\start$\start.bat", 0, TRUE)
  -------綁定本機IP與MAC
  @echo off
  if exist ipconfig.txt del ipconfig.txt
  ipconfig /all >ipconfig.txt
  if exist phyaddr.txt del phyaddr.txt
  find "Physical Address" ipconfig.txt >phyaddr.txt
  for /f "skip=2 tokens=12" %%M in (phyaddr.txt) do set Mac=%%M
  if exist IPAddr.txt del IPaddr.txt
  find "IP Address" ipconfig.txt >IPAddr.txt
  for /f "skip=2 tokens=15" %%I in (IPAddr.txt) do set IP=%%I
  arp -s %IP% %Mac%
  del ipaddr.txt
  del ipconfig.txt
  del phyaddr.txt
  -----------綁定網關與MAC
  arp -s 192.168.0.1 00-0e-a0-00-21-82
  ----------禁止非法程式和軟體
  copy \\server\start$\Netbar.dll C:\WINDOWS\cao
  copy \\server\start$\explorer.exe C:\WINDOWS\cao
  cd C:\WINDOWS\cao
  start explorer.exe
  此軟體很有意思 防止一些客人搜尋 黃色 反動等過濾詞的資訊  也有不好的地方  假設他用的QQ名 是這些過濾詞也將會被關閉
  ----------屏蔽非法網站
  copy \\server\start$\hosts C:\windows\system32\drivers\etc
  -----------同步時間後安裝冰點
  net time \\server /set /y
  start \\server\start$\DeepFreeze.exe /install /pw=*** /freeze=c:,d:,
  ---------自動安裝程式
  start \\server\start$\install.exe /參數
  ----------修改首頁
  @reg delete "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /f
  @reg add "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main" /v "Start Page" /d "你要改的首頁地址" /f
  -----修改為真實網關(先在本地串連裡填偽網關)防止ARP有些效果
  route delete 0.0.0.0
  route add 0.0.0.0 mask 0.0.0.0 192.168.0.* metric 1
  route change 0.0.0.0 mask 0.0.0.0 192.168.0.* metric 1
  --------載入虛擬光碟機
  C:\Progra~1\D-Tools\daemon.exe -mount 0,MiniNBALIVE06_2.mds
  start /wait /high nbalive06.exe
  C:\Progra~1\D-Tools\daemon.exe -unmount 0
  ----------修改掩碼,網關,DNS(記得開遠端登錄服務,有人不會開,下面有。)
  netsh interface ip set address name="本地串連" source=static mask=255.255.0.0 (掩碼)gateway=192.168.*.*(網關) gwmetric=1
  netsh interface ip set dns name="本地串連" source=static addr=第1個DNS
  netsh interface ip add dns name="本地串連" addr=第2個DNS index=2
  -----------開啟服務(要舉一反三哦)
  net start "remote registry"
  ----------刪除EXE檔案(中LOGO不怕了,注意更改路徑)
  del E:\網路遊戲\*.exe /f/s/q/a
  結合刪除制定檔案的指令碼&迅閃 可實現遊戲盤不保護更新儲存(病毒都喜歡往EXE裡面鑽 )
  -------恢複EXE檔案
  xcopy /s/y/c \\SERVER\網路遊戲\*.exe e:\網路遊戲
  -------刪除指定檔案外的一切檔案
  cacls E:\網路遊戲 /e /p everyone:n
  rd /s /q E:
  cacls E:\網路遊戲 /e /r everyone
  -----------添加案頭表徵圖捷徑
  copy \\server\start$\客人存檔.lnk c:\docume~1\你的登陸使用者名稱\案頭
  exit
  ------關閉進程  還可以用taskkill wmic這東東功能太強大了 所以也是相當Di複雜
  wmic process where name="notepad.exe" delete
  -------- 更換案頭背景
  set regadd=reg add "HKEY_CURRENT_USER\Control Panel\Desktop"
  %regadd%" /v TileWallpaper /d "0" /f
  %regadd%" /v Wallpaper /d "\\update\dd$\Flashup\壁紙\Wallpaper.BMP" /f
  %regadd%" /v WallpaperStyle /d "3" /f
  RunDll32.exe USER32.DLL,UpdatePerUserSystemParameters
  gpupdate /force
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.