0
我想在我的web服務器上放置一個bat文件並將鏈接發送給我的用戶。該文件將安裝Internet Explorer快捷方式到我的SharePoint站點。我的Web服務器上也有ico文件。我無法讓它工作,但這是我得到的。編寫一個bat文件在用戶桌面上放置一個iexplorer圖標
echo [InternetShortcut] > "%userprofile%\Desktop\Sharepoint.URL"
echo URL="C:\Program Files\Internet Explorer\iexplorer.exe" https://lpc.sharesrvr.com >> "%userprofile%\Desktop\Sharepoint.URL"
echo IconFile=www.leonardpaper.com/Images/Sharepoint.ico >> "%userprofile%\Desktop\Sharepoint.URL"
echo IconIndex=0 >> "%userprofile%\Desktop\Sharepoint.URL"
關於把所有這些'echo's什麼在括號中並只重定向整個代碼塊一次? – aschipfl