This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Const CSIDL_COMMON_PROGRAMS = &H17 | |
Const CSIDL_PROGRAMS = &H2 | |
Const OfficeDir = "Microsoft Office" | |
Set objShell = CreateObject("Shell.Application") | |
Set objAllUsersProgramsFolder = objShell.NameSpace(CSIDL_COMMON_PROGRAMS) | |
strAllUsersProgramsPath = objAllUsersProgramsFolder.Self.Path | |
Set objFolder = objShell.Namespace(strAllUsersProgramsPath & "\" & OfficeDir) | |
Set startFldr = objShell.Namespace(strAllUsersProgramsPath) | |
Set accFldr = objShell.Namespace(strAllUsersProgramsPath & "\Accessories") |
OlderNewer