亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        妙用AD計(jì)算機(jī)管理遠(yuǎn)程管理客戶端

        字號(hào):

        目的:通過AD中計(jì)算機(jī)管理組件遠(yuǎn)程使用客戶端"計(jì)算機(jī)管理"
            網(wǎng)絡(luò)環(huán)境:一臺(tái)DC,一臺(tái)winxp客戶端
            直接在AD打開客戶端計(jì)算機(jī)"管理",選"管理".
            出現(xiàn)錯(cuò)誤提示,無法連接至目標(biāo)電腦
            原因分析:此遠(yuǎn)程管理至少需要客戶端達(dá)到兩點(diǎn)要求,
            1、開啟REMOTEREGISTRY 服務(wù)
            2、關(guān)閉window防火墻
            通過GUI界面做到上述兩點(diǎn),我想大家都會(huì),現(xiàn)在討論關(guān)于命令行方法
            用到的命令:sc,net
            首先打開遠(yuǎn)程注冊(cè)表服務(wù)
            sc config remoteregistry strat= demand 將此服務(wù)設(shè)置為手動(dòng)方式,默認(rèn)為禁用。
            net start remoteregistry
            停止防火墻
            sc stop alg
            sc stop sharedaccess
            sc config alg start= disabled
            sc config sharedaccess= disabled
            至此大功告成
            知道原因后我們可以使用計(jì)算機(jī)啟動(dòng)腳本,實(shí)現(xiàn)上述功能:
            @echo off
            sc config remoteregistry start= demand
            net start remoteregistry
            sc stop alg
            sc stop sharedaccess
            sc config alg start= disabled
            sc config sharedaccess= disabled