- ベストアンサー
アクティブディレクトリ環境下で、ログインIDもしくはリモート側IPアド
アクティブディレクトリ環境下で、ログインIDもしくはリモート側IPアドレスをweb画面に表示するにはどのようにしたらよろしいでしょうか?
- みんなの回答 (1)
- 専門家の回答
質問者が選んだベストアンサー
htaアプリページにしてVBscriptを使えば、 strComputer = "." Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2") Set colItems = objWMIService.ExecQuery("検索文",,48) For Each objItem in colItems Wscript.Echo objItem.プロパティ名 Next のパターンで探せます。 (参考) http://technet.microsoft.com/ja-jp/scriptcenter/f7224886-1782-49e9-a62a-07a838d0031b.aspx http://www011.upp.so-net.ne.jp/oshieru/tips/Scripting.txt http://www.anchorsystems.jp/anchor/ashp/netmon/samples/wmi_app.html
お礼
ありがとうございます 早速試してみます