Hey,
wenn running this command from cmd:
c:\windows\explorer.exe "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{2227A280-3AEA-1069-A2DE-08002B30309D}"
printers and faxes open, in an own process (2. explorer.exe) with only this window.
When i create a shortcut of explorer.exe with these parameters, same.
BUT!
If i use
Process.Start(@"c:\windows\explorer.exe", @"::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{21EC2020-3AEA-1069-A2DD-08002B30309D}\::{2227A280-3AEA-1069-A2DE-08002B30309D}");
in c# the printers and faxes windows open too, but in same explorer process as already running (with taskbar etc.)
I also tried to set the workingdirectory to "c:\windows", but it doesnt work too.
Any Idea, how to open it in an new Process?
hope for help.
cheers
aspire1337