How to configure a shortcut title through Win API

174 views Asked by At

I create a shortcut by using the Win32 API. This is a COM API whose object model is accessable through IShellLink. I write in C++. Could you please share any ideas on how I can configure a shortcut title that appears right under the shortcut using this API?

2

There are 2 answers

3
Stu On

Umm, SetDescription() perhaps?

0
Vitaly On

A shortcut's display name is a name of its link file (without extension). Thanks, guys.