I'm needing to create a registry key that will change the option in word for "Offline editing options for document management server files" from its default of "The server drafts location on this computer" to "The web server"
This is all under word options -> Save
I found where the key for this is in the registry
[HKEY_USERS\S-1-5-21-1623631216-3319026113-1499202284-7029\Software\Microsoft\Office\Common\Offline\Options]
"Local"=dword:00000000
But as you can see, its dependent on the users SID I want to be able to deploy this to multiple computers. for example
(Sudo Code)
[HKEY_USERS\ALL-SIDS\Software\Microsoft\Office\Common\Offline\Options]
"Local"=dword:00000000
but of coures I can't just put ALL-SIDS in there. I was wondering if anybody knew of a better way or maybe a VBScript I could use for this?
Open in new window