5

I have a question related to Get/Set “File History” (Windows 8) settings using C#

Windows has provided an API File History API that "allows applications to read and modify the File History configuration"

  1. Is there a C# version of this API?
  2. Does it require .NET 4.5?
  3. Are there any code samples of how to use this API?
Community
  • 1
  • 1
user844541
  • 2,868
  • 5
  • 32
  • 60

1 Answers1

2

I found a cpp sample that demonstrate how to use File History

File history Sample

this works well :)

I just need to find a way to move it from cpp to c#

user844541
  • 2,868
  • 5
  • 32
  • 60
  • I tried to find where the com object is located, so I can create a wrapper using tlbimp.exe, but I coudn't find it. – user844541 Jul 18 '12 at 10:35