IT Knowledge Base

~ Without sacrifice, there can be no victory ~

發佈日期:

分類:

如何利用批次檔(Batch file)‧新增/刪除網路磁碟機(Network drive)或打印機

01. 刪除網路磁碟機

net use y: /delete
net use z: /delete

02. 刪除網路打印機

printui.exe /dn /n "\\<computer_name>\<printer_name>"
printui.exe /dn /n "\\<IP_address>\<printer_name>"

03. 新增網路磁碟機

net use y: \\<computer_name>\<share_folder_name>
net use z: \\<IP_address>\<share_folder_name>

04. 新增網路打印機

rundll32 printui.dll PrintUIEntry /in /n "\\<computer_name>\<printer_name>"
rundll32 printui.dll PrintUIEntry /in /n "\\<IP address>\<printer_name>"

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *