[2005] process.start - recycle bin

.paul.

Well-known member
Joined
May 22, 2007
Messages
212
Programming Experience
1-3
how can i use process.start to open the recycle bin?
 
explorer.exe /n, ::{645FF040-5081-101B-9F08-00AA002F954E}

Hope this helps :)
However if you want to open it through the code then you need this code

VB.NET:
Process.Start("explorer.exe", "/n, ::{645FF040-5081-101B-9F08-00AA002F954E}")
 
Back
Top