Try navigating to any file by right-clicking it and clicking the Details tab. Like this photo
I want to change these values. I can also add custom properties to files. I especially want to do this for tif, jpeg, png, pdf files. Can I see my custom properties in the Details window?
I found this page, but it can only change office files. http://www.microsoft.com/en-us/download/details.aspx?id=8422
You can use the Windows API Code Code . It has shells for the Windows property system.
Eli Arbels , Windows Code Code Pack ( ):
IShellProperty prop = ShellObject.FromParsingName(fileName).Properties.GetProperty(propertyName); if (prop.ValueType == typeof(string)) { (prop as ShellProperty<string>).Value = value; }