I've got yet another deployment problem.
What I have: little Windows Forms application that looks on browser cache and copies image files from there.
The problem: the app runs fine on my machine, but whenever I try to run it on somebody else's machine, I get an error message (something along "error occurred. Exiting" and a list of 3 files in Temp folder. Not much information about the problem in these files.
I've tried with different targeted frameworks .Net 4.0, .Net 4.0 Client Profile, 3.5, 3.5 Client profile - same problem. I have tried OneClick deployment and installation project, and just copy *.exe file. All end up with the same problem.
On target machine full .Net 4.0 framework is installed, but it makes no difference.
The app is reading from registry, but I would not think that reading from HKLM requires admin rights, but I tried running as Administrator anyway.
I've tried Windows 7, XP SP3 - similar outputs.
There are no dependencies for the project, apart from .Net framework.
Any suggestions where I can check what exactly happens with the application on foreign machine??
p.s. the source code is available here, if you wish to have a look: http://cachecopy.codeplex.com/SourceControl/list/changesets
UPD: Thanks for suggestion guys, I've set up Visual Studio on some other machine and found a problem within seconds. I was trying to open directory with String.Empty as address. Silly me!

