0
我使用VBScript創建桌面快捷方式。WshShortcut設置外殼大小
使用WindowsStyle屬性,我可以確定shell是否開始最小化,最大化或最後設置的大小。但是我創建的shell最大寬度爲80個字符。
有沒有辦法將它設置爲更大的值?設置字體大小和類型也會影響。
set oMyShortcut = WshShell.CreateShortcut(strDesktop & "\Shortcut
Script.lnk")oMyShortcut.WindowStyle = 4
oMyShortcut.TargetPath = "%windir%\system32\cmd.exe"
oMyShortCut.Arguments= "/K """ & strProjectHome & "\" & strSetenvPath & """"
oMyShortCut.WorkingDirectory= strProjectHome
oMyShortcut.IconLocation = "%windir%\system32\cmd.exe"
oMyShortcut.Description = "Shell for project " + strProjectName + " in directory " + strDirname +". This shortcut has been created automatically."
oMyShortCut.Save
問候 安德烈亞斯
Thx!執行模式命令就像一個魅力。 – Andreas
不客氣,我可以獲得獎金嗎? – peter
對不起,這是我的第一個賞金。我認爲接受你的答案就夠了。你收到獎金了嗎? – Andreas