0

Windows8の[スタート]メニューにMSOffice2013のショートカットを固定できるようにする必要があります。このスクリプトを使用してログオフボタンを固定しましたが、うまく機能します。Excel 2013を固定しようとして変更しましたが、機能しません。

    '
' This script will create shortcuts in the Start Menu
'
set WshShell = WScript.CreateObject("WScript.Shell")
strStartMenu = WshShell.SpecialFolders("StartMenu")

set oShellLink = WshShell.CreateShortcut(strStartMenu & "\Excel.lnk")
oShellLink.TargetPath = "C:\Program Files (x86)\Microsoft Office\Office15\EXCEL.EXE"
oShellLink.WindowStyle = 1
oShellLink.IconLocation = "%ProgramFiles% (x86)\Microsoft Office\Office15\XLICONS.EXE"
oShellLink.Description = "Microsoft Excel 2013"
oShellLink.WorkingDirectory = "C:\Program Files (x86)\Microsoft Office\Office15"
oShellLink.Save
Set oShellLink = Nothing

Wscript.Echo "Created Icons"

私は何が間違っているのですか?

4

0 に答える 0