3
我必須找到機器名稱和登錄到機器的用戶名稱。如何查找網絡計算機名稱和用戶登錄該計算機?
I have Updated My answer please see my answer !!!!
NetworkBrowser nb = new NetworkBrowser();
IPHostEntry ip = Dns.GetHostEntry(Dns.GetHostName());
foreach (string pc in nb.getNetworkComputers())
{
cmbNetworkComputers.Items.Add(pc);
}
cmbNetworkComputers.SelectedIndex = 0;
上面的代碼檢索機器名稱,我如何獲取用戶名?
可能重複的[我如何使用C#在.NET中獲取當前用戶名?](http://stackoverflow.com/questions/1240373/how-do-i-get-the-current-username -in-net-using-c) – CodeCaster
@CodeCaster這不是這個問題的重複。您鏈接的是檢索運行應用程序的帳戶的用戶名。 – Stijn
然後OP應該詳細說明他到底想要什麼以及嘗試過什麼。請參閱例如[如何在遠程計算機上查找用戶名?](http://superuser.com/questions/144685/how-to-find-username-on-remote-computer)。 – CodeCaster