Link to home
Start Free TrialLog in
Avatar of nmmcfk
nmmcfkFlag for United States of America

asked on

2003 Server File Backup problem

Hi all,
I installed another file server and wants to move my data files to it. I used the backup software that comes with Server 2003 becsue it backs up all the permissions with it. After that I restore them to the new server and everything went fine. The problem is that all the files on the new server are Read Only and even if I uncheck the box and apply it still shows as Read Only. How do I make those files available to my users once moved.

Thanks
Avatar of cracksalsa
cracksalsa

Check the share level permissions on the folder. By default Windows 2003 sets the permissions to read-only on a new share whereas Windows 2000 defaulted to full control. Set your share permissions to full control and then lock down with NTFS permissions.
ASKER CERTIFIED SOLUTION
Avatar of Joseph Daly
Joseph Daly
Flag of United States of America 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 nmmcfk

ASKER

Ok thanks guys ... I will give this a try later on today.
The problem looks like the way the folder to where you have restored. Since you are restoring data with permissions using ntbackup, you need to make sure that you are not inheriting permissions to this folder from parent. It looks like the parent folder was set to read-only.
To recover from current state, you need to uncheck inherit permissions from parent, apply. make sure all the required users have relevant access set. Then run the following command,
attrib -R d:\restored-data  /S /D
where d:\restored-data is the folder to where th data was restored from backup. Have a good one.