winows顯示IP主機名bat

2021-07-16 19:49:56 字數 662 閱讀 5836

公司中會有些妹妹,遠端支援的時候問下 ip是多少,還不知道怎麼檢視的。

特此寫了乙個批處理檔案

windows +r 鍵盤 輸入 cmd

cmd裡輸入 notepad

把下面的**複製到開啟的記事本裡

@echo 您的使用者名稱是:%userdomain

%\%username

%>

"%userprofile

%\網路引數.txt"

@echo 您的機器名是:%computername

%>>"%userprofile

%\網路引數.txt"

@echo ____________________________ >>"%userprofile

%\網路引數.txt"

@echo 您的ip位址引數如下: >>"%userprofile

%\網路引數.txt"

@ipconfig>>"%userprofile

%\網路引數.txt"

@notepad

"%userprofile

%\網路引數.txt"

exit

儲存檔案,儲存時一定要選擇型別為 「所有檔案」,檔名命名為 *.bat (注意字尾一定是bat)**

根據主機名獲得IP及根據IP獲得主機名

根據主機名獲得ip好說,前面已經學習過了,用函式gethostbyname獲得主機資訊,其中包括ip資訊 int cneighbordlg getipbyname afxmessagebox t list return 0 else 根據ip獲得主機資訊則要用gethostbyaddr函式 int ...

centos上修改主機名和主機名與ip做對映

最近在弄大資料這塊的知識,用的最多的就是主機名和主機名與ip之間做對映,先說我們的修改主機名 1.檢視當前主機的主機名 2.如果是centos7版本,hostnamectl檢視詳細的資訊 3.臨時修改主機名,可以使用hostname 新主機名即可,但有個缺點,就是重啟網絡卡服務會自動還原,所以我們還...

獲取主機名與主機IP位址

說明 structhostent define h addr h addr list 0 h name 位址的正式名稱。h aliases 空位元組 位址的預備名稱的 指標。h addrtype 位址型別 通常是 af inet。h length 位址的位元長度。h addr list 零位元組 主...