65.9K
CodeProject is changing. Read more.
Home

Show MyComputer, ControlPanel, RecycleBin, NetworkPlaces on Button Click

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.90/5 (6 votes)

May 27, 2011

CPOL
viewsIcon

12244

For Control Panel:Process.Start("control.exe");For My Computer:Process.Start("explorer.exe", Environment.GetFolderPath(Environment.SpecialFolder.MyComputer));For the rest, we can use GUID just like the original.For Recycle...

For Control Panel:
Process.Start("control.exe");
For My Computer:
Process.Start("explorer.exe", Environment.GetFolderPath(Environment.SpecialFolder.MyComputer));
For the rest, we can use GUID just like the original. For Recycle Bin,
Process.Start("::{645FF040-5081-101B-9F08-00AA002F954E}");
and similarly for Network Places too.