I want that the user open an explorer on his computer not on the server.
I am using :
System.Diagnostics.Process.Start("explorer.exe", folderLocation);
folderLocation is on the same server like \serverIP\folder.
Into iis Express with local configuration it's working , but it does not work on my iss in production. There are no error, just return Null. I have checked some previous stackoverflow who advice to check this : On service IIS Admin Service : Check "Allow service to interact with desktop".
But it doesn't work
Do you have any advice to me ? Thank you.