前幾天幫使用者重灌OS,後來反應win7重新開機網路磁碟會顯示紅色XX,
每次都必需手動刷新才能進系統,很麻煩,於是我使用net use的批次檔放在啟動中
讓開機時重新連接,PC上有兩個磁碟要連接,我手動執行批次檔沒有問題,兩個都連接成功,重啟測試發現只連的到一個(I),指令如下:
net use * /d /yes
net use Y: "\192.168.21.209\FreeNas4"
net use I: "\192.168.21.210\hydata"
結果只有 I連接成功,有點疑惑手動執行批次檔和放啟用執行差別在哪裡
還是我指令有問題
懇請有經驗大大們指教
不知道用 vbscrpt 把指令藏起來行不行
WScript.Sleep 1*60*1000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.currentdirectory="c:\"
WshShell.Run "net use * /d /yes", 0
WshShell.Run "net use Y: \\192.168.21.209\FreeNas4", 0
WshShell.Run "net use I: \\192.168.21.210\hydata", 0
Set WshShell = Nothing