請位各位邦友們
Win XP連線數上限是10人
這應該是先天上的限制不能調整吧?!
請問有沒有方法能夠自動把閒置的人員剔除?
(還是設定幾分鐘自動剔除?)
因為本機是一般使用者,方法越簡單越好。
感謝!
可以用net config server /autodisconnect:x (預設是15分鐘)
http://blog.xuite.net/ju.guoan/blog/36503621-windows%E5%B0%87%E9%96%92%E7%BD%AE%E7%9A%84%E5%B7%A5%E4%BD%9C%E9%9A%8E%E6%AE%B5%E6%96%BC%E4%BB%A5%E4%B8%AD%E6%96%B7%E9%80%A3%E7%B7%9A
爬古文有專業做法:
http://ithelp.ithome.com.tw/questions/10069613
能改用Server或NAS最好,不然換Win7 (10→20)
參考這篇資料(還不是XP連Win7會有點問題,但XP連Sercver2008 R2/2012/2016不會有問題)
http://ithelp.ithome.com.tw/questions/10092025
net config server /autodisconnect:x 預設是15分鐘
如果只開著一個資料夾是不是也不算閒置?
因為我們常常有發現USER只是開資料夾佔位,但並未開檔執行動作
古文專業做法有阿:
1.先下載sed for windows:http://gnuwin32.sourceforge.net/packages/sed.htm
2.下載awk for windows:http://gnuwin32.sourceforge.net/packages/gawk.htm
3.killsession.bat
net session |sed "s/..:.*$//g" > aa.txt <--將指令輸出結果刪除閒置時間
find " 0" aa.txt > bb.txt <--找出"開啟檔案"為"0"的session
sed "/^-/d" bb.txt > cc.txt
awk "{print $1}" cc.txt > dd.txt <--導出連線"電腦名稱
for /f "tokens=1" %%i in (dd.txt) do net session %%i /delete /y
用net session做 針對連線電腦的斷線...
http://robertvmp.pixnet.net/blog/post/22325891-%E9%97%9C%E6%96%BC%5B%E9%9B%BB%E8%85%A6%E7%AE%A1%E7%90%86%5D%5C%5B%E5%B7%A5%E4%BD%9C%E9%9A%8E%E6%AE%B5%5D-%E7%9A%84%E5%95%8F%E9%A1%8C
感謝CalvinKuo說明
剛好當事人最近請長假...
無法實際測試
日後若有疑問再向您請益