GUID values for SHGetKnownFolderPath

  • Thread starter Thread starter nagar
  • Start date Start date
N

nagar

I need the Guid for retrieving the StartMenu path in Windows Vista
using the SHGetKnownFolderPath

What's the guid value for FOLDERID_StartMenu?

Thanks.
Andrea
 
Hi Andrea,

If you have latest Windows SDK for Vista, you will find all known folders
are defined in KnownFolders.h:


// {625B53C3-AB48-4EC1-BA1F-A1EF4146FC19}
DEFINE_KNOWN_FOLDER(FOLDERID_StartMenu, 0x625B53C3, 0xAB48,
0x4EC1, 0xBA, 0x1F, 0xA1, 0xEF, 0x41, 0x46, 0xFC, 0x19);


Hope this helps.


Regards,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top