Cannot access MS office files on OS X partition from windows partition running bootcamp s

I've installed a trial version of Microsoft Office 2010 on the Windows partition of my iMac.  Microsoft Office 2011 for Mac is installed on the OS X partition. When I try to open a file on the OS X partition an error displays saying the file is corrupted or the server is not available.  If I transfer the file to Windows it opens fine.  Other types of files such as a pdf or photo formats open fine with the appropriate Windows programs accessing the OS X partition.  Is this a limitation of the trial version or a basic limitation of Office for Windows?  Office for Mac can open a file on the Windows partition with no problem.
Thanks for any help.

MSOffice for Windows usually create a temporary hidden file in the same location as the file you open.  Since Windows can't write to the Mac partition, I'm wondering if that's the reason for the error.  (Anyone who knows for certain, correct me if I'm wrong.)
OSX can natevely read and write FAT32 and read NTFS so I'm assuming that the Office for Mac development team made allowances for opening from a read-only NTFS partition (e.g.: Boot Camp partition.)  Of couse, if your Boot Camp partition is FAT32, then there would be no issue with creating any hidden temporary files.

Similar Messages

  • Cannot access Mac OS Partition from windows 8 running in boot camp

    So I installed Windows 8.1 Pro through Boot Camp but I can't access the Mac OS partition from windows even though boot camp partition shows up while I'm on Mac OS. I have installed all the drivers from apple but still it didn't work. Then I downloaded Paragon HFS+ which was free for windows 8 and 8.1 thinking that this would solve my problem. The instructions told me to change the drive letter for mac partition from disk management by right clicking the drive pressing "change drive letter and path" button. But the "change drive letter and path" key in grey color and I can't press it. Can somebody please help?

    Here you go
    1) diskutil list
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *750.2 GB   disk0
       1:                        EFI EFI                     209.7 MB   disk0s1
       2:          Apple_CoreStorage                         650.3 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
       4:       Microsoft Basic Data BOOTCAMP                99.0 GB    disk0s4
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                  Apple_HFS Macintosh HD           *645.8 GB   disk1
                                     Logical Volume on disk0s2
                                     AFC82671-CBAA-4338-BAEC-7D272EC755B1
                                     Unencrypted
    2. sudo fdisk /dev/<BootCampDisk> (from 1 of the form disk0)
    i typed this: sudo fdisk /dev/disk0
    Disk: /dev/disk0 geometry: 91201/255/63 [1465149168 sectors]
    Signature: 0xAA55
             Starting       Ending
    #: id  cyl  hd sec -  cyl  hd sec [     start -       size]
    1: EE 1023 254  63 - 1023 254  63 [         1 -     409639] <Unknown ID>
    2: AC 1023 254  63 - 1023 254  63 [    409640 - 1270110576] <Unknown ID>
    3: AB 1023 254  63 - 1023 254  63 [1270520216 -    1269536] Darwin Boot
    *4: 07 1023 254  63 - 1023 254  63 [1271791616 -  193355776] HPFS/QNX/AUX
    sudo fdisk /dev/disk1
    /dev/disk1: Resource busy
    3. sudo gpt -vv -r show /dev/<BootCampDisk>  (from 1 of the form disk0)
    sudo gpt -vv -r show /dev/disk0
    gpt show: /dev/disk0: mediasize=750156374016; sectorsize=512; blocks=1465149168
    gpt show: /dev/disk0: Suspicious MBR at sector 0
    gpt show: /dev/disk0: Pri GPT at sector 1
    gpt show: /dev/disk0: Sec GPT at sector 1465149167
           start        size  index  contents
               0           1         MBR
               1           1         Pri GPT header
               2          32         Pri GPT table
              34           6        
              40      409600      1  GPT part - C12A7328-F81F-11D2-BA4B-00A0C93EC93B
          409640  1270110576      2  GPT part - 53746F72-6167-11AA-AA11-00306543ECAC
      1270520216     1269536      3  GPT part - 426F6F74-0000-11AA-AA11-00306543ECAC
      1271789752        1864        
      1271791616   193355776      4  GPT part - EBD0A0A2-B9E5-4433-87C0-68B6B72699C7
      1465147392        1743        
      1465149135          32         Sec GPT table
      1465149167           1         Sec GPT header
    I didn't quite understand the 4th step. Sorry

  • 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.

  • 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.

  • I have uninstalled and reinstalled iTunes Version 11.4.1 and still cannot access. I continue to get the Error 7 Windows Error 193 and now I am getting the Apple Mobile Device failed to start. I can't access any of my music I HAVE PURCHASED. What  to do?

    I have uninstalled and reinstalled iTunes Version 11.4.1 and still cannot access. I continue to get the Error 7 Windows Error 193 and now I am getting the Apple Mobile Device failed to start. I can't access any of my music I HAVE PURCHASED. What  to do?

    I am getting the same error message - error 7, Windows error 193 running iTunes on a PC Laptop (HP) which has been running iTunes previously for at least 2 years. 
    I followed the Apple support page and uninstalled (in order) all Apple programmes specified, rebooted, then re-installed.  Two additional errors crop up in re-installation, the first one is to do with Apple Mobile Support Device Services.  It seems that this might be rectified by plugging in said devices before finishing the re-install.  The second reads iTunesHelper was not installed correctly please re-install iTunes.  This persists. I cannot uninstall iTunesHelper using the Control Panel, but I can delete it using Windows.  However, after re-installing again, it still won't run and the original error comes back.  I've downloaded and uninstalled 15 times now and this is taking far too long to be acceptable. 

  • I cannot access the Camera RAW dialogue box in PSE8 in windows 7. Is it possible?

    I cannot  access the Camera Raw Dialogue Box in PSE8 in windows 7.  Is it possible?

    I have PSEv.8 & WIN 7. I installed Camera raw three or four days ago without a problem, and it works just fine. Detailed directions are here:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4810

  • I cannot import a Quicktime file (.mov) which I generated from a slide show out of iPhoto8 in iMovie8 (filename is grey); what did I wrong?

    I cannot import a Quicktime file (.mov) which I generated from a slide show out of iPhoto8 in iMovie8 (filename is grey); what did I wrong?

    iMovie 08 will only import files that contain codecs that it can edit. It will generally import audio and video codecs that iPhoto generates. However, if your iPhoto slideshow contains a manual advance track, iMovie cannot edit this and therefore will not import. In iPhoto, check to see if you can do a timed advance rather than a manual advance. Then it should import.

  • I have CC and bridge, bridge will open but I cannot open a photo file.  I get a message: Windows cannot fint C:............... CS4 ck to see if you have spelled properly. Any Ideals?             a message: Windows cannot

    I have CC and bridge, bridge will open but I cannot open a photo file.  I get a message: Windows cannot fint C:............... CS4 ck to see if you have spelled properly. Any Ideals?   I had CS4 but have since removed it.   

    A couple of possibilities:
    How did you remove CS4 ?  If you removed it improperly instead of Uninstalling it (say, you "deleted" it or just dragged it to the Recycling Bin), you almost certainly left stuff behind that needed uninstalling.
    What's even worse, if you removed CS4 after you installed CC you may have messed with the CC installation.
    I'm not going to attempt to tell you how to fix it, since this will probably involve uninstalling CC and after that looking for, downloading the Adobe CS_Cleaner tool and the CC_Cleaner tool, then re-installing CC, since I'm not a Windows user and don't want to mislead you.
    In any case, when Windows users chime in to assist you, they'll need all the details which you have not provided so far.

  • I am switching to Apple macbook pro from Windows laptop.  Is Apple compatible with Microsoft Office?  How can I transport from Windows to Mac?  What I have saved on external hardrives, will I be able to open it on Mac?

    I am switching to Apple macbook pro from Windows laptop.  Is Apple compatible with Microsoft Office?  How can I transport from Windows to Mac?  What I have saved on external hardrives, will I be able to open it on Mac?

    Is Apple compatible with Microsoft Office?
    Any computer is compatible as long as it can read and write Office files. But for perfect (or at least near perfect) compatibility, you would want to purchase Office 2011 for Mac.
    How can I transport from Windows to Mac?
    You can't directly transport any installation of Windows. All PC's come with a machine specific version of Windows intended for that PC. They don't have all of the hardware drivers the retail disks cover.
    If you want Windows on your Mac, you would first purchase a full version copy (NOT an upgrade disk) of Windows 7 or 8. Those are the only supported versions on newer Macs. You install it through the supplied Boot Camp utility that comes with the Mac to create a new partition for Windows, and then install the retail copy of Windows you purchased.
    The reason only these versions of Windows are supported is the same basic reason as a machine specific version of Windows for a PC. Apple only includes the necessary Mac hardware drivers for Win 7 or 8 on new Macs.
    Once Windows is installed, you could then install the version of Office for Windows you already own. The nuisance of a Boot Camp partition is that you have to physically boot to either Windows or OS X, so you can only use the apps of the OS you're in at the time. To use both at once, you'd have to use virtual machine software (Parallels, VMware, VirtualBox) and then install Windows within that. Then you'd be able to run Windows inside of OS X and have access to both at the same time.

Maybe you are looking for

  • How to create an EIT in Oracle apps with custom table?

    Hi, I have a custom table in APPS schema where training information is loaded everyday by running a control file. I've to pick the training end date and status of 5 particular trainings and create an EIT. When I try to create an EIT which is basicall

  • JTable Multiple Selection

    Hi, I am having a problem with the jTable's multiple selection. I apply cell renderers on a table's cells and also apply cell selection model on the table. I want to have mutliple row selection but I only get single selection. Could someone please ex

  • Photo tagging problems

    How do you tag a photo in in the camera roll? Say I want to put a name with a picture...How do you do that with an iPhone 4s? Is there an app that does this if the phone wont?

  • To Do's appear sporadically

    An Apple tech at the Genius Bar at my local Apple Store reset the Power Management Unit (in an attempt to fix a malfunctioning USB port on my Powerbook). Since that was done, my To Do lists only show up sporadically in iCal. The ToDo calendars show u

  • Paper Jam indicator without a paper jam in a OfficeJet L7590

    I need to know how to reset the printer after there is a phantom paper jam indication. The printer "will not clear" so I can resume printing. Thanks