• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

migrate permissions

I don't think there's an easy solution without a 3rd party tool. You could probably use cacls to document the permissions then reimpliment them manually though.
 
How about doing a backup of the old data and then restoring it to a new server. It won't migrate shares but it will do NTFS permissions.
 
It's actually pretty easy.

the xcopy that's built into w2k has switches that will copy permissions and ownership info. If it's nt 4 you can use robocopy or scopy in the resource kit.

Doing shares can be done with rmtshare that's in the resource kit, but depending on how the source and destination are laid out you can just copy the shares key over from registry to registry. It's located at:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\Shares

If the source and destination are different drives/paths you can just do a search and paste the new path in real quick on all the shares. If it's a whole slew of shares like user drives or something throw together a batch file with rmtshare.exe in it somehow.
 
Back
Top