How to

open Folder Options window

Published: 31. January 2012 | Updated: 31. January 2012
License: Microsoft Public License (MS-PL)
Categories: Windows » Win32, Windows
Tags: C# Win32 Windows
Was this snippet helpful for you? YESYES / NONO

Import namespace

using System.Diagnostics;
var processInfo = new ProcessStartInfo("RUNDLL32.EXE", "shell32.dll,Options_RunDLL");
Process.Start(processInfo);
Send us feedback about this snippet »



Related Snippets: