Quantcast
Channel: Windows Forms General forum
Viewing all articles
Browse latest Browse all 12583

Reading AppData Path for Current User in Remote Machine

$
0
0

Hi,

When I am logged in a remote machine, I can read the AppData path of the current user by reading remote registry. But if other user is logged in into that remote machine, remote registry returns "null" for the key "AppData". I have admin privilege in that remote machine. How can I get the current user's AppData path for remote machine? Please refer the code below.

            RegistryKey ProgramDirKey = RegistryKey.OpenRemoteBaseKey(
                    RegistryHive.CurrentUser, txtComputerName.Text).OpenSubKey(
                    @"SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders");
            if (ProgramDirKey == null)
            {
                MessageBox.Show("Could not open remote registry.");
                return;
            }
            object AppDataPathObj = ProgramDirKey.GetValue("AppData");
            if (AppDataPathObj == null)
                MessageBox.Show("Key AppData does not exist.");
            else
                MessageBox.Show("Value for AppData: " + AppDataPathObj.ToString());
            ProgramDirKey.Close();

Thanks,

Pradip Das


Viewing all articles
Browse latest Browse all 12583

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>