up vote 1 down vote favorite
share [g+] share [fb]

Due to some issue (items reappearing after being deleted), I'd like to check the content of my remotely-stored roaming profile.

Is the path stored somewhere locally? I'm not a domain admin, and I don't have direct access to the Active Directory.

Thanks!

link|improve this question
feedback

migrated from superuser.com Nov 9 '09 at 9:27

This question came from our site for computer enthusiasts and power users.

3 Answers

  • open command promtp. (start-> Rn-> CMD)
  • type - set u (it will give you the profile path including roaming profile path).
  • you should be able to browse to that path on the network.

Good Luck

link|improve this answer
weirdly, I only see the local profile (C:\Documents and Settings\...). – Luk Oct 26 '09 at 8:38
The point of roaming profiles is that they're sync'd to the C drive on log on, and synced back to the network on log off. So as far as running apps are concerned your profile is on the C drive. – GAThrawn Nov 9 '09 at 11:17
feedback

If (by some chance) you know the full Active Directory object name for your account, then you could retrieve the details with a script like this:

Set objUser = GetObject ("LDAP://cn=DoeJ,ou=management,dc=fabrikam,dc=com")
objUser.GetInfo

strProfilePath = objUser.Get("profilePath")
strScriptPath = objUser.Get("scriptPath")
strHomeDirectory = objUser.Get("homeDirectory")
strHomeDrive = objUser.Get("homeDrive")

WScript.echo "profilePath: " & strProfilePath
WScript.echo "scriptPath: " & strScriptPath
WScript.echo "homeDirectory: " & strHomeDirectory
WScript.echo "homeDrive: " & strHomeDrive

Save that as something like "viewprofile.vbs" then run from a command line with:

cscript viewprofile.vbs

As for finding the full name of your active directory object, I honestly don't know how you'd do that without enough access to browse AD, or asking an admin to tell you (can't see how telling you the detail of your own account would be a security breach).

link|improve this answer
feedback

Your profile is stored on the AD server so if you cant access that, then you have no way of seeing the contents of your profile

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.