Cannot access user preset files

I run Windows 8 and have just upgraded to LR4.4 after having my laptop restored.  I have put some recently acquired presets to the required directory.  When I look at the Develop page I can see all of the folders of presets but when I try and click on the triangle to see the individual file it does not expand out the folder to show all of the individual files.  I have tried putting individual preset files into the top directory to see if I can see the file there but no luck.
I did not have this problem under LR4.3.

Hi Tony,
I tried the 'right click import' while in the 'develop' window of LR but nothing happens - no menu or anything comes up  (This makes me wonder if there is a bug of some description).  Instead I copied and pasted the preset files into the User Presets directory (both whole folders containing groupings and individual files) which I found from the 'Edit' and 'Preferences' menu's. 
Elizabeth & Hamish Baker
24 Gray Street
Pukerua Bay
Porirua City
NEW ZEALAND 
04 2399 337
E MOB: +64 21 910 938
H MOB +64 21 910 939

Similar Messages

  • Cannot access a closed file error on adding a file to a library

    I am trying to copy the attachments from a list to a document library. When I try to write into a document library, occasionally I am getting following error "The remote server returned an error: (500) Internal Server Error.  Cannot access
    a closed file.  Cannot access a closed file.  "
    Any ideas on what is causing the problem. The code is specified below, The error message is specified after the code. Can you please let me know if I am missing anything. I cant find anything wrong in the code or in the library. The code is running as WCF
    Service and the call to process this is made from Infopath form.
    try
    SPSecurity.RunWithElevatedPrivileges(delegate()
    string siteURL = "Site URL";
    using (SPSite site = new SPSite(siteURL))
    SPWeb oWeb = site.OpenWeb();
    SPList oList = oWeb.Lists["List Name"];
    SPList docDestination = oWeb.Lists["Destination Library on same site"];
    SPFolder fldRoot = oWeb.Folders["Destination Library on same site"];
    SPFileCollection flColl = null;
    SPQuery oQuery = new SPQuery();
    oQuery.Query = "<Where><Eq>" + "<FieldRef Name=\"ID\"/><Value Type=\"Number\">" + RequestID + "</Value></Eq></Where>";
    SPListItemCollection oItems = oList.GetItems(oQuery);
    foreach (SPListItem lstItem in oItems)
    if (lstItem["ID"].ToString() == RequestID)
    if (lstItem.Attachments != null && lstItem.Attachments.Count > 0)
    foreach (String strName in lstItem.Attachments)
    flColl = fldRoot.Files;
    SPListItem listtem = docDestination.Items.Add();
    SPFile FileCopy = lstItem.ParentList.ParentWeb.GetFile(lstItem.Attachments.UrlPrefix + strName);
    SPQuery oQueryDest = new SPQuery();
    oQueryDest.Query = "<Where><Eq>" + "<FieldRef Name=\"Name\"/><Value Type=\"Text\">" + FileCopy.Name + "</Value></Eq></Where>";
    SPListItemCollection collListItems = docDestination.GetItems(oQuery);
    string destFile = flColl.Folder.Url + "/" + FileCopy.Name ;
    if (collListItems.Count > 0)
    String strFileNamePrfix = FileCopy.Name.Substring(0, FileCopy.Name.Length - 3);
    strFileNamePrfix = strFileNamePrfix + "_" + collListItems.Count.ToString();
    strFileNamePrfix = strFileNamePrfix + FileCopy.Name.Substring(FileCopy.Name.Length - 3,3);
    destFile = flColl.Folder.Url + "/" + strFileNamePrfix;
    byte[] fileData = FileCopy.OpenBinary();
    Trace.WriteLine("Board Services dest file" + destFile + " Count = " + collListItems.Count.ToString());
    SPFile flAdded = flColl.Add(destFile, fileData,true);
    SPListItem item = flAdded.Item;
    flAdded.Item.Update();
    catch (Exception ex)
    string strLogEntry = ex.Message.ToString() + ex.StackTrace.ToString();
    finally
    Form submission failed. (User: xxxxx, Form Name: Template, IP: , Request: http://Site Url/Lists/List name/Task/editifs.aspx?List=e6647e38-cb01-46b3-8bee-308357045532&ID=116&Source=http://Site URL/Lists/List Name/AllItems.aspx?View={CB9F3C2B-49DF-4D75-9720-1E7E000FD229}&FilterField1=Status&FilterValue1=Completed&IsDlg=1&Web=706d51c9-e509-40f3-884a-7d40e126ff14,
    Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-12-06T16:11:54:747Z, Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Cannot access a closed file.  Cannot
    access a closed file.  
     at System.IO.FileStream.Write(Byte[] array, Int32 offset, Int32 count)    
    The remote server returned an error: (500) Internal Server Error.)

    Hi Dimitri,
    Thank you, I tried increasing the timeout on web.config file of the wCF service and reloaded the config file.
    <httpRuntime executionTimeout="90" maxRequestLength="20000" useFullyQualifiedRedirectUrl="false" requestLengthDiskThreshold="8192"/>
    As the error
    Form submission failed. (User: , Form Name: Template, IP: , Request: http://site /editifs.aspx?List=e6647e38-cb01-46b3-8bee-308357045532&ID=102&Source=http://site List/AllItems.aspx?View={cb9f3c2b-49df-4d75-9720-1e7e000fd229}&SortField=Status&SortDir=Asc&IsDlg=1&Web=706d51c9-e509-40f3-884a-7d40e126ff14#,
    Form ID: urn:schemas-microsoft-com:office:infopath:list:-AutoGen-2013-12-06T16:11:54:747Z, Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.  Cannot access a closed file.  Cannot access
    a closed file.  
     at System.IO.FileStream.Write(Byte[] array, Int32 offset, Int32 count)    
    is happening at following line
    SPFile flAdded = flColl.Add(destFile, fileData,attachmentPropertiesHashTable ,true);
    I only modified the timeout on the wcf service.
    I dont think I need to change the timeout on the Webapplication which has this site?
    Regards
    Nate

  • ORA-12705: Cannot access NLS data files or invalid environment specified

    Hi,
    I am using Oracle 10g Express, ojdbc14.jar , apache tomcat 5 server on Linux (Fedora 6).
    In CustDisp.JSP I have following code:
    <%
    try {
    Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance();
    out.println("JDBC driver loaded.<br>");
    catch (ClassNotFoundException e) {
    %>
    error :<br>
    <%=e.toString() %>
    <%
    String sql = "SELECT custid, fname, lname FROM customers";
    try {
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","myid", "mypassword");
    out.println("Connection made.<br><br>");
    Statement s = con.createStatement();
    ResultSet rs = s.executeQuery(sql);
    %>
    When Itry to access http://localhost:8080/jsps/CustDisp.jsp,I get following error:
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified.
    When I display enviorenment parameters in this JSP, I get follwing:
    JDBC driver loaded.
    Oracle Home = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    Language = en_US.UTF8
    NLS Language = AMERICAN_AMERICA.AL32UTF8
    Path = /usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin
    Class Path = /usr/lib/jvm/java/lib/tools.jar:/usr/share/tomcat5/bin/bootstrap.jar:/usr/share/tomcat5/bin/commons-logging-api.jar:/usr/share/java/mx4j/mx4j-impl.jar:/usr/share/java/mx4j/mx4j-jmx.jar
    Charset = null
    Home = /usr/share/tomcat5
    Log Name = tomcat
    LD LIB PATH = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib:/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data/ojdbc14.jar:
    Locale = en_US
    nls data directory : /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data
    I have checked permissions for nls data folder, they are :
    Owner: Oracle
    Folder Access: Create and delete files
    Group: Dba
    Folder Access: Access files
    Others
    Folder Access: Access files
    Execute: Allow executing file as program.
    I have written a java program and used same drivers,customers table and connection i.e
    Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance();
    String sql = "SELECT custid, fname, lname FROM customers";
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","myid", "mypassword");
    it works fine and displays customers.
    Only when I try to access my CustDisp.JSP, I get
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified. Error.
    Can some one please help me sorting out this problem?
    Thanks in advance.
    AQK

    Hi,
    Relevant code for CustDisp.JSP is given below:
    <%@ page session="false" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="oracle.jdbc.*" %>
    <%
    try {
    Class.forName ("oracle.jdbc.driver.OracleDriver").newInstance();
    out.println("JDBC driver loaded.<br>");
    catch (ClassNotFoundException e) {
    %>
    error :
    <%=e.toString() %>
    <%
    String sql = "SELECT custid, fname, lname FROM customers";
    try {
    Connection con = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","myid", "mypassword");
    out.println("Connection made.<br><br>");
    Statement s = con.createStatement();
    ResultSet rs = s.executeQuery(sql);
    %>
    Permissions for nls data folder
    /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data/
    are :
    Owner: Oracle
    Folder Access: Create and delete files
    Group: tomcat
    Folder Access: Access files
    Others
    Folder Access: Access files
    Execute: Allow executing file as program.
    In CustDisp.JSP I have following code which accesses ojdbc14.jar
    // Check access to the nls data files.
    cfile = "";
    try{
    File myfile = new File("/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/nls/data/ojdbc14.jar");
    if (myfile.exists() == true){
    cfile="ojdbc14.jar exists in the data directory. Its length is "+ myfile.length()+" It can be read =" myfile.canRead() " , can be written = " + myfile.canWrite();
    }else{
    cfile="ojdbc14.jar does not exist.";
    catch (Exception er){
    %>
    error in reading file:<br>
    <%=er.toString() %>
    <%
    This code gives following output:
    File ojdbc14.jar exists in the data directory. Its length is 1536979 It can be read =true , can be written = false
    Every things seems to be OK but when I try to access http://localhost:8080/jsps/CustDisp.jsp, Iget:
    Sql Error:
    java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified
    Best regards.
    AQK

  • [exec] ORA-12705: Cannot access NLS data files or invalid environment specified

    Hi all,
    We have an app running ok on WinXP, But if run on Win7 it gets error:
        [exec] Caused by: java.sql.SQLException: ORA-00604: error occurred at recur
    sive SQL level 1
         [exec] ORA-12705: Cannot access NLS data files or invalid environment speci
    fied
    Is this a sqlnet client issue?
    Thanks a lot,
    zxy

    yxes2013 wrote:
    I already google it but I am not confident about my result
    I need validation from genius guys like you
    And as long as you rely on being spoon-fed everything, you will never be confident about your result.
    Try the following:
    >change jre versión (donwload from http:www.sun.com) and declare the new JAVA_HOME variable.
    >try calling this code: Locale.setDefault(Locale.ENGLISH);
        before you open a database connection.
    > The NLS_LANG must be unset in the Windows registry (re-named is best).  Look for the NLS_LANG subkey in the registry at \HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE, and rename it.
    And where did you find that solution?
    Lie On The Internet - YouTube

  • Configuring Apach(ORA-12705: Cannot access NLS data files .. )

    Hello,
    I receive this error while configure an HTTP Server for Oracle XE Database.
    ORA-604 LogOn ORA-00604: error occurred at recursive SQL level 1\nORA-12705: Cannot access NLS data files or invalid environment specified
    The database NLS parameters is
    SQL> select * from nls_database_parameters;
    PARAMETER VALUE
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET CL8MSWIN1251
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_RDBMS_VERSION 10.2.0.1.0
    DADs configuration:
    <Location /elxe>
    Order deny,allow
    PlsqlDocumentPath docs
    AllowOverride None
    PlsqlMaxRequestsPerSession 10
    PlsqlDocumentProcedure wwv_flow_file_mgr.process_download
    PlsqlDatabaseConnectString elxe:1521:XE ServiceNameFormat
    PlsqlNLSLanguage AMERICAN_AMERICA.CL8MSWIN1251
    PlsqlAuthenticationMode Basic
    SetHandler pls_handler
    PlsqlDocumentTablename wwv_flow_file_objects$
    PlsqlDatabaseUsername APEX_PUBLIC_USER
    PlsqlDefaultPage apex
    PlsqlDatabasePassword xxxx
    Allow from all
    </Location>
    What is wrong?

    It is most likely that the NLS files are missing from the server/pc.
    Also look at the apachectl file.
    Find the following line:
    NLS_LANG=${NLS_LANG=""}; export NLS_LANG
    Modify this line to look like the following:
    NLS_LANG=AMERICAN_AMERICA.CL8MSWIN1251; export NLS_LANG
    Christopher Soza
    Oracle BI DBA
    Orix Consultancy Services Ltd
    b: http://sozaman.blogspot.com

  • I was using 3 version, downloaded 3.6 and cannot access my ADP files. Can I get the #3 version back.

    I was using the #3 version, downloaded the 3.6 version and cannot access my ADP files now. Can I get the 3 version back?

    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, maybe after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox.
    See [[Firewalls]] and http://kb.mozillazine.org/Firewalls
    See also http://kb.mozillazine.org/Browser_will_not_start_up

  • I got a new computer, and now i cannot access the local files for my website (Dreamweaver)...help?

    I got a new computer, and now i cannot access the local files for my website (Dreamweaver)...
    the new computer is a Mac.
    I see the site on my computer files, but it will not connect with Dreamweaver on this new computer.
    can anyone help with this?
    thanks,
    Margaret

    no special characters...
    see if this gives you any info...

  • Cannot access local resource file

    When I run my application on browser these error comes, I have found to change right click on project>properties>flex build path>libary path> framework linkage to "Merge into code"not working,
    I have also changed right click on project> properties>Flex compiler> Additional compiler arguments - -locale en_US to some -network false still its not working
    and undid whatever change i made,
    Help!
    SecurityError: Error #2148: SWF file http://localhost/aamshare-debug/aamshare.swf cannot access local resource file:///C|/wamp/www/aamshare-debug/media/bse.png. Only local-with-filesystem and trusted local SWF files may access local resources.
        at flash.display::Loader/_load()
        at flash.display::Loader/load()
        at mx.controls::SWFLoader/loadContent()[C:\autobuild\3.2.0\frameworks\projects\framework\src \mx\controls\SWFLoader.as:1611]
        at mx.controls::SWFLoader/load()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\con trols\SWFLoader.as:1380]
        at mx.controls::SWFLoader/initializeHandler()[C:\autobuild\3.2.0\frameworks\projects\framewo rk\src\mx\controls\SWFLoader.as:1971]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at mx.core::UIComponent/dispatchEvent()[C:\autobuild\3.2.0\frameworks\projects\framework\src \mx\core\UIComponent.as:9298]
        at mx.core::UIComponent/set processedDescriptors()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\core\UICom ponent.as:1217]
        at mx.core::UIComponent/initializationComplete()[C:\autobuild\3.2.0\frameworks\projects\fram ework\src\mx\core\UIComponent.as:5395]
        at mx.core::UIComponent/initialize()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx \core\UIComponent.as:5379]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[C:\autobuild\3.2.0\frameworks\pro jects\framework\src\mx\core\UIComponent.as:5267]
        at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[C:\autobuild\3.2.0\frameworks\pro jects\framework\src\mx\core\Container.as:3305]
        at mx.core::Container/addChildAt()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\c ore\Container.as:2217]
        at mx.core::Container/addChild()[C:\autobuild\3.2.0\frameworks\projects\framework\src\mx\cor e\Container.as:2140]
        at mx.core::Container/createComponentFromDescriptor()[C:\autobuild\3.2.0\frameworks\projects \framework\src\mx\core\Container.as:3681]
        at mx.core::Container/createComponentsFromDescriptors()[C:\autobuild\3.2.0\frameworks\projec ts\framework\src\mx\core\Container.as:3493]
        at mx.containers::ViewStack/instantiateSelectedChild()[C:\autobuild\3.2.0\frameworks\project s\framework\src\mx\containers\ViewStack.as:1140]
        at mx.containers::ViewStack/commitProperties()[C:\autobuild\3.2.0\frameworks\projects\framew ork\src\mx\containers\ViewStack.as:664]
        at mx.core::UIComponent/validateProperties()[C:\autobuild\3.2.0\frameworks\projects\framewor k\src\mx\core\UIComponent.as:5807]
        at mx.managers::LayoutManager/validateProperties()[C:\autobuild\3.2.0\frameworks\projects\fr amework\src\mx\managers\LayoutManager.as:539]
        at mx.managers::LayoutManager/doPhasedInstantiation()[C:\autobuild\3.2.0\frameworks\projects \framework\src\mx\managers\LayoutManager.as:659]
        at Function/http://adobe.com/AS3/2006/builtin::apply()
        at mx.core::UIComponent/callLaterDispatcher2()[C:\autobuild\3.2.0\frameworks\projects\framew ork\src\mx\core\UIComponent.as:8628]
        at mx.core::UIComponent/callLaterDispatcher()[C:\autobuild\3.2.0\frameworks\projects\framewo rk\src\mx\core\UIComponent.as:8568]

    Since you are loading your swf over http, it will be placed in a remote sandbox and will not be able to access the local filesystem. You should load your png in the same way as your swf (ie. over http), or embed it into your application.

  • Files on XFS - cannot access, No such File or directory

    I've got a HTPC with 3 partitions formatted to XFS. The pc has MythTV as the backend and XBMC as the frontend, and really doesn't get used for much else. Lately I have been seeing faults with the XFS partitions, which are spread over two different HDDs. Everything else is ext4.
    $ sudo lsblk
    NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
    sda 8:0 0 55.9G 0 disk
    ├─sda1 8:1 0 94.1M 0 part /boot/grub
    ├─sda2 8:2 0 1.9G 0 part
    ├─sda3 8:3 0 1K 0 part
    ├─sda5 8:5 0 18G 0 part /
    ├─sda6 8:6 0 18G 0 part /mnt/ssdRootClone
    └─sda7 8:7 0 17.9G 0 part /mnt/archRootCinnamon
    sdc 8:32 0 1.4T 0 disk
    ├─sdc1 8:33 0 1K 0 part
    ├─sdc5 8:37 0 537.1G 0 part /home/david/Movies <----XFS
    ├─sdc6 8:38 0 634.8G 0 part /home/david/TVseries <---XFS
    └─sdc7 8:39 0 225.4G 0 part /home/david/Music
    sdb 8:16 0 698.7G 0 disk
    ├─sdb1 8:17 0 1K 0 part
    ├─sdb5 8:21 0 50G 0 part /mnt/archRootCinnamon/home
    ├─sdb6 8:22 0 598.6G 0 part /MythTV <---XFS
    ├─sdb7 8:23 0 30.2G 0 part /home
    └─sdb8 8:24 0 19.8G 0 part /home/david/Photos
    sr0 11:0 1 1024M 0 rom
    The kind of problem is (I've removed most of the output, but should be obvious what the problem is)
    $ ls -la /MythTV/Recordings
    ls: cannot access /MythTV/Recordings/Gandhi_02.02.2013.mkv: No such file or directory
    total 333404488
    drwxrwxr-x 2 mythtv users 28672 Jul 17 18:22 .
    drwxrwxr-x 14 mythtv users 4096 Apr 7 13:50 ..
    -rw-r--r-- 1 mythtv users 2087234697 Aug 9 2012 FrostNixon_08.07.2012.mkv
    -rw-rw-rw- 1 mythtv users 64744 Jan 16 14:39 FrostNixon_08.07.2012.mkv.png
    ?????????? ? ? ? ? ? Gandhi_02.02.2013.mkv
    -rw-rw-rw- 1 mythtv users 51156 Feb 3 18:22 Gandhi_02.02.2013.mkv.png
    I have unmounted these partitions, and ran
    sudo xfs_repair -v /dev/sdb6
    which seems to do the job, but it reappears again. I'm not sure how to reproduce the error as its happening on both disks. First time I noticed it was while using Thunar bulk rename tool. It refused to rename some files from lower case to uppercase first letter, then I saw the "???????". It may also happen after I delete a recording through XBMC, but not certain.
    So I installed smartmontools and did the short + conveyance test,
    $ sudo smartctl -H /dev/sdb
    [sudo] password for david:
    smartctl 6.1 2013-03-16 r3800 [x86_64-linux-3.0.85-1-lts-custom] (local build)
    Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF READ SMART DATA SECTION ===
    SMART overall-health self-assessment test result: PASSED
    and
    $ sudo smartctl -l selftest /dev/sdb
    smartctl 6.1 2013-03-16 r3800 [x86_64-linux-3.0.85-1-lts-custom] (local build)
    Copyright (C) 2002-13, Bruce Allen, Christian Franke, www.smartmontools.org
    === START OF READ SMART DATA SECTION ===
    SMART Self-test log structure revision number 0
    Warning: ATA Specification requires self-test log structure revision number = 1
    Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
    # 1 Short offline Completed without error 00% 11770 -
    # 2 Conveyance offline Completed without error 00% 11770 -
    Looking for help here!

    If you suspect drive issues, run the long test. The short and conveyance tests are hit and miss. Also check for SMART errors (smartctl -l error <dev>). A drive can pass tests and be in a 'PASSED' state for 'SMART overall-health' even if errors occur regularly.
    Also, I seem to recall something like this happening on an XFS lv months ago, but I'm not sure. More recently, the drive containing that lv would occasionally fail to be seen on the bus. I swapped the cable and moved it to another port and haven't had any problems since. Assuming I'm not hallucinating about the former, the two issues may have been related.

  • Cannot access Temporary Internet Files

    Hello;
    I am logged on with admin privs, I run Windows Explorer as admin, and have set security properties for all folders, yet I still cannot get access to my OWN Temporary Internet Files folder.
    Sure, I have just come over to Win7 from XP Pro, and there is a huge difference in security, but I have always thought that when you are the computer's administrator, you have access to ALL files and folders.
    My computer is not a member of a domain at this time.
    I know that I can delete the files through IE, and by Disk Cleanup, so it's more curiosity than anything else that I need to know this.
    I already own the Windows7 Resource kit, but so far I cannot find anything in there about this.
    Thanks for your help
    FW

    You should have access here...
    even a standard user has access here (they have to or they could not really use I.E.)
    C:\Users\<User_name>\AppData\Local\Microsoft\Windows\
    The following folders that in win7 user profile are shortcuts.
    "Documents and Settings" and "Application Data", "Cookies", "Local Settings", "My Documents", "NetHood", "PrintHood", "Recent", "SendTo", "Start Menu", "Templates
    These shortcuts in Windows 7 are junction points, which are important parts of application compatibility. As Windows 7  is a new Windows Platform, a lot of applications was not designed for it so that they are not fully compatible with Windows 7. To allow these applications access the data on Windows 7 properly, the shortcuts are designed to redirect the applications to obtain the necessary data in the correct directories. Thus, these shortcuts do not contain any files but a new directory of a certain folder. To avoid deleting or modifying the shortcuts by mistake, Windows 7  sets the Read permissions of these folder to Deny. Actually, the shortcuts are hidden by default.
    To access these junction points, redirect to the following folders:
    Note: As some folders are hidden, please refer to the following steps to show all the hidden files.
    Show hidden folders
    ==============
    1. Open "Computer", and click "Organize" -> "Folder and Search Options".
    2. Click the "View" tab. Under "Hidden files and folders", click "Show hidden files and folders."
    3. To display other hidden files, clear the "Hide protected operating system files (Recommended)" check box.
    Documents and Settings  C:\Users
    Application Data  C:\Users\User_name\AppData\Roaming
    Cookies  C:\Users\User_name\AppData\Roaming\Microsoft\Windows\Cookies 
    Local Settings  C:\Users\User_name\AppData\Local 
    My Documents  C:\Users\User_name\Documents 
    NetHood  C:\Users\User_name\AppData\Roaming\Microsoft\Windows\Network Shortcuts 
    PrintHood  C:\Users\User_name\AppData\Roaming\Microsoft\Windows\Printer Shortcuts 
    Recent  C:\Users\User_name\AppData\Roaming\Microsoft\Windows\Recent 
    SendTo  C:\Users\User_name\AppData\Roaming\Microsoft\Windows\SendTo 
    Start Menu  C:\Users\User_name\AppData\Roaming\Microsoft\Windows\Start Menu 
    Templates  C:\Users\User_name\AppData\Roaming\Microsoft\Windows\Templates

  • Cannot access itunes library file over network

    Hi,
    So I want to set up my old Mac Mini as a home server for our Apple Tv2 and my Macbook pro, but I am having difficulty setting up iTunes. All of our music is stored on an external hard drive, attached to the Mini and i have set up an iTunes library on the Mini too. So far so good, and I can access this library on the MacBook as a shared library, and the Apple TV through home sharing.
    But, I want to go further and add to and edit the shared library (i.e. the one on the Mini) using iTunes on my MacBook. Am I able to also access the library file stored on the Mini from iTunes on the MacBook pro, so I am using the same library file on two instances of iTunes on two different computers?
    Currently when I try (by opening iTunes on the MacBook while holding down option, and 'choosing' the library on the Mini, i get the following error message:
    The iTunes Library.itl file is locked, on a locked disk, or you do not have write permission for this file.
    Perhaps this is a bridge too far, but I would appreciate any help.
    Thanks!
    Matthew

    Apart from the user permissions issue which could probably require you adjusting user permissions on the files on the mini, you cannot have the library file open in two running iTunes concurrently.

  • Cannot access any older files in time machine

    I Upgraded MacBook air to Yosemite. I had a backup using time machine and the backup disk shows that 32 GB is still used by the backup file, however, I cannot go back to any files before the date I installed Yosemite.
    Anyone knows how to access time machine files in a different way?
    thanks for any help!
    dirk
    Message was edited by: DirkJ

    Uh, June 25, 2013?  Is that a typo, or has your Computer's date been set wrong?
    Assuming it's a typo, do the older backups appear in the Timeline on the right, but faded-out and you can't select them?  If so, see the pink box in Time Machine - Frequently Asked Question #15A.

  • I am receiving the 'Could not sign you in [Access denied: 530]. Check your user name and password' problem on Adobe Muse CC 2014 and I cannot access the xml file that is supposed to fix this issue?

    I am a PC user and I have Adobe Creative Cloud Muse 2014. I have received the 'Could not sign you in [Access denied: 530]. Check your user name and password' error when trying to upload my muse site to my ftp host, GoDaddy. I have successfully done this in the past and only recently it has stopped working. I looked online at the FAQ Adobe Muse Help | Uploading an Adobe Muse Site to a third-party hosting service and it said to download the ftpprefs.xml file but this file simply leads to a blank page that says /*Not found*//*Not found*/.
    Can someone direct me to a working page with this file or provide a different solution? Thank you!

    Hello,
    As you are getting error [Access denied: 530] it means issue is with access. Either the username and password you are entering is incorrect or you do not have proper permissions.
    I would suggest you to contact Godaddy to either reset password or reset the permissions.
    Regards
    Vivek

  • Cannot access user admin

    Hi All,
    Although I'm logged in as Super Admin, I am unable to access or work with the user admin screen in SAP NW Portal 7.0 SP13.
    I tried to access this even in Admin console still it doesnt work. I get the error below -- Please advice -- MS
    Application cannot be started.
       Details:   com.sap.engine.services.deploy.container.ExceptionInfo: Error in starting application [sap.com/com.sap.security.core.admin].
    Below is the snippet of the error in defaultrace log file
    #1.5 #0015C5FD0C91005E0003347B00000FA400044F030E8BC969#1212774454372#com.sap.engine.services.security.roles.SecurityRoleImpl
    #sap.com/irj#com.sap.engine.services.security.roles.SecurityRoleImpl#Guest#35133####4ec68f8030c111dda69a0015c5fd0c91
    #Thread[Thread-56,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/System/Security/Audit/J2EE#Java###:
    Authorization check for caller assignment to J2EE security role [ : ].#3#ACCESS.ERROR#SAP-J2EE-Engine#administrators#
    #1.5 #0015C5FD0C91005E0003347D00000FA400044F030E8BC9F7#1212774454372#com.sap.engine.services.security.roles.SecurityRoleReference#sap.com/irj
    #com.sap.engine.services.security.roles.SecurityRoleReference#Guest#35133####4ec68f8030c111dda69a0015c5fd0c91
    #Thread[Thread-56,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/System/Security/Audit/J2EE#Java###:
    Authorization check for caller assignment to J2EE security role [ : ] referencing J2EE security role [ : ].
    #5#ACCESS.ERROR#service.jms.default.authorization#administrators#SAP-J2EE-Engine#administrators#
    -ms

    Hi
    I am still having the same issue.
    I found out that in VA under the service deploy I do not see com.sap/com.sap.security.core.admin activated. I manually started the application in VA but it fails. Below is the defaultTrace Log File, any help is appreciated- ms
    #1.5 #0015C5FD0C91005E0000145F00000F3400044F56AAE00B7D#1213133559407#com.sap.engine.services.security.roles.SecurityRoleImpl#sap.com/irj#com.sap.engine.services.security.roles.SecurityRoleImpl#Guest#944####883ad0e0372011ddc2780015c5fd0c91#Thread[Thread-56,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/System/Security/Audit/J2EE#Java###: Authorization check for caller assignment to J2EE security role [ : ].#3#ACCESS.ERROR#SAP-J2EE-Engine#administrators#
    #1.5 #0015C5FD0C91005E0000146100000F3400044F56AAE00C38#1213133559407#com.sap.engine.services.security.roles.SecurityRoleReference#sap.com/irj#com.sap.engine.services.security.roles.SecurityRoleReference#Guest#944####883ad0e0372011ddc2780015c5fd0c91#Thread[Thread-56,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error#1#/System/Security/Audit/J2EE#Java###: Authorization check for caller assignment to J2EE security role [ : ] referencing J2EE security role [ : ].#5#ACCESS.ERROR#service.jms.default.authorization#administrators#SAP-J2EE-Engine#administrators#

  • Cannot access user profile after recovery to previous restore point

    On Satellite laptop internet access via wireless very slow 10 mins at startup sometimes. Suspected application recently installed making early access before system ready so decided to restore.
    After recovery in safe mode [windows 7] error messages starting with ie4uinit.exe cannot start also several other progs will not start...temp user is now only access to machine...no ie or applications...network wireless ok...can see files and folders on hdd. No application programs listed.
    Although admin user cannot seem to regain old user profile or set up new user...no passwords used
    How do I get back to my old user profile please?
    Mark

    As I can see you have posted this under Toshiba Product Recovery category although your action has nothing to do with Toshiba recovery installation and, for me, it is Microsoft related issue.
    To be honest I didn't understand what happen exactly but somehow I feel everything is messed up.
    My advice: if possible back-up all your important data and make clean recovery image installation.
    After doing this you will have factory settings and clean preinstalled OS so you will be able to use your notebook without any problems.
    Your other thread:
    http://forums.computers.toshiba-europe.com/forums//thread.jspa?threadID=69938

Maybe you are looking for