Link to home
Start Free TrialLog in
Avatar of dedri
dedriFlag for United States of America

asked on

get access to drive D on remote workstation

I have a computer in my network that I cannot open and browse drive D remotely(I am domain admin). It seems that someone removed the permissions for domain admins for this disk. Drive C: is accessible. Computer is WinXP.
I tried from computer management to share it again but unsuccessful.
Any idea how to access drive D on this computer, or how can I give myself permissions for this(as I said I am domain admin). Computer is on remote location and so it's not accessible onsite.
Avatar of rhandels
rhandels
Flag of Netherlands image

Are you able to RDP into the machine? If so, take ownership of the D drive, normally this should be enough to get permissions back. If you can't RDP into it there is no way to get the permissions back other than reinstall the machine. D share is made automatically as an administrative share.
Avatar of dedri

ASKER

RDP is not enabled
psexec remotecomputer cmd  is working , is it possible to use some command line commmand to gain permissions?
You could try the following link. You could either use icacls or takeown. Problem is that you need to take ownership of the D drive. It is worth giving it a shot.

http://www.winhelponline.com/blog/take-ownership-of-file-or-folder-windows-7-vista/
Avatar of Lionel MM
if psexec is working then try this command
Net Share DriveD=D:\ /Grant:AdminUser,Full /Grant:"Domain Admins",Full /Remark:"Root of D:\"
this will create a share on D:\ giving the group "domain admins" and a Admin User Full Access--replace Adminuser with an actual user--like yours
ASKER CERTIFIED SOLUTION
Avatar of great_gentle_man
great_gentle_man
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dedri

ASKER

thanks
glad we could be of assistance.