Or you can use the SHChangeNotify API.
[System.Runtime.InteropServices.DllImport("Shell32.dll")]
private static extern int SHChangeNotify(int eventId, int flags, IntPtr item1, IntPtr item2);
with:
SHChangeNotify(0x8000000, 0x1000, IntPtr.Zero, IntPtr.Zero);