eddyc Posted December 4, 2012 Posted December 4, 2012 Hi everyone, At present we are having an interesting issue with Adobe Dreamweaver CS6 and redirected App Data. All other Adobe products work fine. The issue with Dreamweaver is that on load, the program appears to be broken - as the menu does not load as per below; On the same machine, if we log in locally, without the redirected App Data, the issue is not there. This issue only affects our staff as they use roaming profiles with redirected App Data. Students are not having this issue, they use a super mandatory profile, and all is well. I've tried looking through Process Monitor but can't work out what is causing this issue. Does anybody have any idea? Thanks!
colacao82 Posted December 5, 2012 Posted December 5, 2012 In the app data folder the Dreamweaver folder is not being created for some reason. Dreamweaver can't create it, so we made a script that looked for the Dreamweaver folder in app data and if it wasn't there, created it. This solved the problem for us.
eddyc Posted December 6, 2012 Author Posted December 6, 2012 In the app data folder the Dreamweaver folder is not being created for some reason. Dreamweaver can't create it, so we made a script that looked for the Dreamweaver folder in app data and if it wasn't there, created it. This solved the problem for us. @colacao82 - I've just tried this on my account with no change. Is it possible for you to send me a copy of the script pretty please?! :-)
colacao82 Posted December 6, 2012 Posted December 6, 2012 Okay no problem. It was a bit late last night. The script actually copies a working folder across. For example the one created with your local admin login. *VBS SCRIPT* On Error Resume Next ' Use the CreateObject class to initiate the File System Objects Set objFSO = CreateObject("Scripting.FileSystemObject") ' Designate file for the File System Object If Not objFSO.FolderExists("u:\Application Data\Adobe\Dreamweaver CS6\") Then objFSO.CopyFolder "\\SERVERNAME\FOLDER\Dreamweaver CS6", "u:\Application Data\Adobe\Dreamweaver CS6", True End If *END OF VBS SCRIPT* Hope that helps!
eddyc Posted December 6, 2012 Author Posted December 6, 2012 Sadly that does not seem to work for us - the result is exactly the same :-(
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now