Quote:
|
but is there a way to do this on a Win 7 PC without Office 2010 (eg XP)?
|
On a Windows 7 PC, but you mention XP? I'm a little confused as to what you're asking too. Is this for file properties?
You can use the takeown command line in cmd to take ownership of a file, then you can change the owner to you're user account as administrator, from which you can then edit the permissions for every "group".
Code:
takeown /f "FILEPATH HERE"
Just remember to always use quotes when you're dealing with filepaths in cmd. It's only important when there's a space in the filepath because it will separate that and define it as a filepath, and a parameter afterwards, but it's just a good habit to avoid that trouble.