Have a standard smart client application that we want to autostart when a user logs into their machine on our network. I've tried the following keys:
HKLM\Software\Microsoft\Windows\CurrentVersion\Run HKCU\Software\Micrisoft\Windows\CurrentVersion\Run HKCU\Software\Micrisoft\Windows\CurrentVersion\Policy\Explorer\Run
etc....
The startup key is something like: J:\Application\NewApp.application on a shared drive or UNC path \\server1\Application\NewApp.application
I've tried changing the file specified to the setup.exe file, a batch file that starts it, a delayed batch file, and even a small .exe created to start the NewApp.application file after a delay via Process.Start().
If i run these options manually once logged in, all work just fine, however none works when logging into the machine (as is the goal).
Anyone got any ideas?
Update: permissions are not the issue. I've been testing with administrator level perms to start with.