跳到主內容

批次檔登入網芳

  BUBU 因為公司內部 NAS 位置有異動,為了日後維護改用網域名稱來進行連線,因為此做了一支 bat 檔進行連線設定,該批次檔是需要手動填入帳密的,因考量資安問題不建議使用自動登入方式,搭配 ChatGTP 來協助處理

@echo off
setlocal

set /p username=請輸入帳號:
for /F "usebackq delims=" %%G in (`powershell -Command "$pword = Read-Host -AsSecureString '請輸入密碼'; $BSTR=[System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($pword);[System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)"`) do set "password=%%G"

echo 正在登入NAS

net use \\nas連線位置 /user:%username% %password%

echo 連線成功!
goto :EOF


參考相關站台