author:冰點極限-赤龍
顯示當前域內所有計算機名稱及數目
const ads_scope_subtree = 2
set objrootdse = getobject(「ldap://rootdse「)
strdomain = objrootdse.get(「defaultnamingcontext」)
set objconnection = createobject(「adodb.connection」)
set objcommand = createobject(「adodb.command」)
objconnection.provider = 「adsdsoobject」
objconnection.open 「active directory provider」
set objcommand.activeconnection = objconnection
objcommand.properties(「page size」) = 1000
objcommand.properties(「searchscope」) = ads_scope_subtree
objcommand.commandtext = 「select * from 『ldap://」 & strdomain & 「『 where objectcategory=』computer』」
set objrecordset = objcommand.execute
objrecordset.movefirst
do until objrecordset.eof
wscript.echo objrecordset.fields(「adspath」).value
objrecordset.movenext
loop
wscript.echo 「」
wscript.echo 「total computer: 「&objrecordset.recordcount
顯示當前域內所有使用者名稱及數目
const ads_scope_subtree = 2
set objrootdse = getobject(「ldap://rootdse「)
strdomain = objrootdse.get(「defaultnamingcontext」)
set objconnection = createobject(「adodb.connection」)
set objcommand = createobject(「adodb.command」)
objconnection.provider = 「adsdsoobject」
objconnection.open 「active directory provider」
set objcommand.activeconnection = objconnection
objcommand.properties(「page size」) = 1000
objcommand.properties(「searchscope」) = ads_scope_subtree
objcommand.commandtext = 「select * from 『ldap://」 & strdomain & 「『 where objectcategory=』user』」
set objrecordset = objcommand.execute
objrecordset.movefirst
do until objrecordset.eof
wscript.echo objrecordset.fields(「adspath」).value
objrecordset.movenext
loop
wscript.echo 「」
wscript.echo 「total user: 「&objrecordset.recordcount
PHP 獲得域控內使用者的計算機登入名
乙個需求 在域控範圍獲得訪問使用者的計算機名.方法 1 測試軟體環境 xampp control panel v3.2.1 apache version 2.4.7 2 apache 2.2 使用 mod auth sspi.so 模組,apache 2.4 以後此模組不再適用,使用mod auth...
獲取計算機的IP位址和計算機名
利用winsock函式獲取主機名和ip位址非常簡單,可以有很多種方法,最簡單的只需通過兩個函式gethostname和gethostbyname可以解決。1 函式gethostname 該函式原型為 int gethostname char name,int namelen 其中,引數name是乙個...
計算機組和域的區別
域的管理和設定 打個比方,如果說工作組是 免費的旅店 那麼域 domain 就是 星級的賓館 工作組可以隨便出出進進,而域則需要嚴格控制。域 的真正含義指的是伺服器控制網路上的計算機能否加入的計算機組合。一提到組合,勢必需要嚴格的控制。所以實行嚴格的管理對網路安全是非常必要的。在對等網模式下,任何一...