給區域網中所有的計算機傳送訊息

2021-06-04 01:52:27 字數 655 閱讀 4627

給區域網中所有的計算機傳送訊息

開啟記事本輸入:

@echo off

set /a ip0 = 192

set /a ip1 = 168

set /a ip2 = 1

set /a ip3 = 1

:ping

ping %ip0%.%ip1%.%ip2%.%ip3% -n 1 -w 1 | find "ttl" >>tmp1.txt

set /a ip3 = %ip3% + 1

if not %ip3% == 255 goto ping

for /f "eol=: tokens=3" %%i in (tmp1.txt) do echo %%i >>tmp2.txt

if exist ip.txt echo y | del ip.txt

for /f "delims=:" %%i in (tmp2.txt) do echo %%i >>ip.txt

for /f %%i in (ip.txt) do net send %%i "你好!"

echo y | del tmp1.txt & echo y | del tmp2.txt

完畢後儲存為 網路訊息.bat 並雙擊執行。執行完畢後會產生乙個名為ip.txt的記錄檔案,裡面記錄了所傳送過訊息的電腦的ip位址。

遠端給區域網中的計算機進行重啟

只要知道遠端伺服器的管理員密碼和 ip位址,可以 ping 通遠端主機 ip 1 獲取遠端伺服器的管理員許可權 net use ip位址 管理員密碼 user administrator 2 使用 shutdown 命令遠端重啟伺服器 shutdown r t 0 m ip 位址 shutdown ...

自己的mysql資料庫給區域網使用者所有的許可權

前面你可以先自己測試看區域網有沒有mysql的許可權,在cmd裡面輸入mysql h192.168.1.125 uroot p回車然後輸入密碼 如果沒進去說明沒有許可權,這時候就執行下面的 cmd 先登入mysql mysql hlocalhost uroot p回車然後輸入密碼 可以先測試 sho...

多種途徑訪問區域網中的計算機

目前許多中小學校都建設了校園網,不同科室的計算機之間實現了資源共享。那麼如何訪問網路中的計算機呢?使用 網路上的芳鄰 當然是最常用的方法,不過除此之外,還有一些方法也可以實現對等網互相訪問。假設區域網中有一台名為teacher的計算機,我們想訪問它時,可通過以下方法實現 方法一 在 執行 框中鍵入 ...