Trying to access files on another device???

Trying to access folders on my adobe account I'm using the iPad but want to use my surface

If the files are on https://cloud.acrobat.com/ then you can access them with Adobe Reader on any device.
On that surface, is that Adobe Reader Touch?

Similar Messages

  • Trying to access files on another partition: "you don't have permission to see its contents"

    I want to access my files on another Mac OS X partition, but I get this error. Is there a way to provide the right credentials and access the files?

    Select the volume icon in the Finder and open the Info window. Click the padlock icon in the lower right corner of the window and enter your administrator password when prompted. Check the box at the bottom marked
              Ignore ownership on this volume
    Close the Info window.

  • An error occurred while trying to access the Apple Wireless Device

    Hello All;
    I just bought an Airport Extreme Base Station today and am all ready having problems. I am running a PC. I connected a Motorola DSL model to the Airport's QAN port and then I connected the computer to one of the Ethernet ports. When I first loaded the software that came with it, things worked perfectly and I was able to connect to the internet. Then, when I opened up the configuration file, and try to enter the configuration manually, I receive the error ... "An error occurred trying to access the Apple Wireless Device. Make sure your network connection is valid and try again". When I try to open the Manual setup I get that error. Also why are the "settings" always grayed out ? I am connected ot the Internet but can't understand why I can't do a manual setup or change any of the settings. I reset my passwords and need to change them again but am unable to do that. Thanks for any help and advice you can give me.
    Tim

    I am about to return this unit to the store I bought it at. I keep getting an error 6753 whenever I try to do any kind of configuration. Most of the configuration options are grayed out in the setup utility anyway. There is a ton of stuff about this problem on the internet. There are a few solutions offered like modify the tcp/ip properties but I sure can't figure out what they're talking about. Not everyone who buys this is going to be tech savvy.
    I'll call tech Support tonite and if they can't offer a permanent soultion, I'm returning the Airport Extreme and separate dsl modem tomorrow and getting a wireless dsl router specifically designed for the PC.
    Tim

  • HT201272 I'm having trouble downloading a previously purchase song to my iCloud so I can access it from another device.  The iCloud download button is not there.  Help?

    I'm having trouble downloading a previously purchase song to my iCloud so I can access it from another device.  The iCloud download button is not there.  Help?

    I agree. I don't rely on iCloud as a backup, that is what I have my portable hard drive for. Its 500 GB so I can hold my entire iTunes library several times over on it. I have all my movies on my hard drive, but somehow "The Mist" got deleted off of my hard drive, so I figured "Well, the option to redownload an already purchased movie is available through iCloud, I'll just do that!"
    And permissions and download availability have nothing to do with it, the movie's still there, it still allows me to redownload it. The only problem is when I click download, I get that message.
    And nobody else uses my computer, but I do have multiple accounts authorized on it. Even still though, I am attepmpting to download it through the account I purchased it under. :/

  • Error (-6722) occurred while trying to access the Apple Wireless device

    I receive the following error when I press 'manual setup' or 'continue' from within the airport utility:
    "An error ocurred while trying to access the Apple wireless device. Make sure your network connection is valid and try again
    Error -6722"
    Everything is working on the Airport express but I can't run the utility. Should I hazard a reset of the device to factory settings?

    Aaaaaaand as I was writing that, I managed to fix it. Not sure how exactly. The variables that were used that worked:
    On windows, running AU 5.5.2, right clicking upload firmware in the device list, choosing other, selecting a random firmware other than 7.3 (I think i ended up using 7.4.2) and clicking upload. Instead of trying to communicate with the APExpress, it directly uploaded the firmware and then it restarted, I got a crazy amber blink cycle I have never seen before (Three fast long blinks, and the three short fast blinks, repeat). Then it restarted and it was back to normal. Woohoo! There goes 5 hours of my life.

  • Accessing files in another Admin users home directory?

    In another topic thread http://discussions.apple.com/thread.jspa?threadID=798797&tstart=0
    I've posted how I somehow hosed my first Admin account, which was, foolishly, my primary working account.
    I've tried several things documented in the other thread to try to get back into the system under that login name, but with no luck. I created another Admin user, and tried using the Terminal window to creat a disk image of the original admin user home directories, but it failed with input/output error at reading a DMG file on the desktop.
    I've tried to access those folders via the new admin, but can't get in, says I don't have sufficient priveledges.
    Is there a way to change the priveledges for those folders, from single user, or current Admin terminal window? I have the password, so it's not like I'm trying to break in to someone else's files without permission.
    I've got some not-yet-backed photos and other files in the original account I need.
    Am I just screwed?

    Did you enable the root account on the system using
    NetInfo Manager ?
    Not sure what that is. I'll check it out.
    Have you considered using the OSX boot disc to reset
    the admin account password ?
    I do need to try booting from the cd, however, it doesn't appear to be a password issue - the password is accepted at the login prompt, a bad password typed in intentionally vibrates the box, the good password doesn't. Running admin utilities from the guest account with the ailing admin account name and password works. Still, it's worth a shot.

  • Process can't access file bcos another process has locked a portion of file

    Does anyone knows if Java could handle the well-known "Open File" problem.
    I encounter the following error when I was trying to copy an outlook file to another location:
    java.io.IOException: The process cannot access the file because another process has locked a portion of the file.
    My codes is placed below for reference.
    Note that I was only trying to open to open the file for reading the Inputstream. Please advise what I could do to avoid getting caught in exception while reading the bytes.
    It will be good if Java could handle the Microsoft's "Open File" problem.
    // my codes
    public static void main(String[] args)
    int BUFSIZE = 4096;
    File theFile = new File("C:\\Documents and Settings\\" + myID +
    "\\Local Settings\\Application Data\\" +
    "Microsoft\\Outlook\\mail.pst");
    long size = theFile.length();
    try {
    FileInputStream fis = new FileInputStream(theFile);
    // exception will happen on the next line
    if (!(size >= 0 &&
    fis.read(new byte[BUFSIZE],0,(int)Math.min(size,BUFSIZE)) > -1)) {
    System.out.println("encountered OFM problem");
    } else {
    System.out.println("read file successfully");
    } catch (Exception e) {
    System.out.println("caught OFM problem");
    e.printStackTrace();

    Sometimes Windows can place a lock on files that will
    prevent you from even reading its contents. You may
    have to close the MS Outlook application in your
    machine to be able to read the contents of this file.Of course I knew Microsoft has locked the file.
    I also knows Microsoft locks a lot of other files too.
    The idea is that we just want to read the file, we are not writing or modifying anyway, so we should be able to read it. Of course that depends on whether Java wants to step into the area and do something about it. (Please read http://www.stbernard.com/products/docs/ofm_whitepaperV8.pdf)
    Well, the easiest way anyone could advise is probably to use Microsoft development tools. The idea is nobody wants to be a "Micro-slaves" if we could...
    So I am still waiting for someone with the area of expertise to reply...

  • TS3297 When I go to the iTunes store, all I get is a black screen. No error message, just won't open. I have tried going to iTunes on another device and it works fine.  Help!

    When I go to the iTunes store, it won't open.  I don't receive an error message of any kind, just a blank black screen.  I have tried to access the store on other devices in my home and it works.  All my music shows up in my library, but nothing will show up when I go to the actual store.  I have updated my software and made sure the date/time are correct.  Everything else seems to be working fine on my computer.  Not sure what is going on, but would really appreciate any help you can give. Thanks!

    I'm expreriencing the same conditions with the same environment.  Windows 8, iTunes-64 11.1.2.32, iTunes Store with a processing bar up to 80 +/- and the POPUP MESSAGE OF "iTunes stopped working. The error ...."
    I UNINSTALLED, iTUNES WITH NO POSITIVE RESULT.  I CHECKED THE FIREWALL AND IS THE SAME DEFINITION AS THE PREVIOUS ITUNES VERSION.
    My iTunes StoreS from my iPhones ARE OK.
    I'm spending a lot of time of research for WINDOW'S iTUNE with no solutions.... 

  • Error - 6753 "error accured while trying to access the apple wireless devic

    Hi I have an Airport Extreme with time capsule 1TB. It worked fine with all my win XP and Macs at home but suddenly it started with the message in the header. it pops up " An Error accurred while trying to access Apple wireless device. Make sure your network connection is valid and try again. Error -6753.
    What does it mean. I can access internet just fine and can print from the thing but can;t access my storage. Why is it happening? It all worked just fine before.
    your advice will be much appreciated

    Just a quick note: It says I have a macbook pro on my sigature. I do have one. I also connect a Dell XPS 600 (XP SP3), Dell 1420 laptop (Vista Ultimate), and an HP LaserJet 2420 (usually on the USB port, occasionally on the WAN ((RJ45))port. So far the airport has handled everything. I've had best results when setting it up from only the computer that uses the direct ethernet port. Add all the other stuff - wireless, USB - afterwards. Also, the Bonjour utility, which you can download from Apple's support site, is quite useful in setting up the printer.
    If you want to see what the IP address of the airport actually is, you can go to Start, Run, type CMD (brings up a dos window), then type "ipconfig" (no quotes) and you will see an IP address for "default gateway". That is the address of the airport, when you have to use the "Other" option. Similarly, the command "ipconfig /all" (no quotes) will give you the IP addresses of all the devices connected to the airport.
    OK, it wasn't such a short note.
    Bon Chance - dave

  • Access Denied trying to access file shares with correct credentials

    I am getting the Access Denied message when trying to connect to network shares from Windows 10 (9926)
    When trying to access a network share, I get the username and password prompt, and it always fails.
    Using the same credentials on a Windows 8.1 machine to connect to the same shares and it will work.
    Shares can be hosted on Windows Server 2012 R2, Windows 8.1, Linux Samba, NAS, or even \\127.0.0.1 and all will fail with the same message.
    But you can access the shares hosted on the the windows 10 machine from other remote machines.
    Credentials have been entered in the format of: domain\username,
    machinename\username, and just username
    All machines are on the same workgroup\domain
    NOTE: Typing in an invalid machine name will also bring up the credential prompt.
    I.e. entering \\QWERTY will still ask you for your username and password and fail immediately.
    The same shares worked in the version before 9926
    Peter Taylor
    Red Planet Programming Ltd

    I have the same problem, and I figured out that my windows is installed in french, and every users groups are created in french also, groups like Everyone don't exists and i can't change by console.
    Regards, Roberto Borges please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • IMac G5 died and I am trying to access files from the HD via my PowerBook

    My iMac G5 died- evidently because of a power supply issue. Was told it could be up to five business days for repairs but there are files on my hard drive I need access to this weekend....preferably today. Yes, I do backups but I do them once a week and, of course, it has been a week since my last and so I have several days worth of work on the computer I need.
    I removed the hard drive from the iMac and hooked it up to my PowerBook. The drive mounted and I can click on the User folder and then see my user account. But when I click on that folder, the contents are empty. I have rebooted, while holding down the Option Key, on the PowerBook to try and boot to my now external iMac hard drive, but it didn't see it. Another problem might be because the iMac HD is encrypted. How can I log into the iMac HD and access a few of my files (via the PowerBook) so I can copy them to the PowerBook to work on them while the iMac is down?

    If the G5 iMac's hard drive is still okay, you could pull the hard drive from the G5, put it in an external enclosure and hook that up to your G4 Powerbook. 
    Here is an example of an external HD enclosure:
    http://eshop.macsales.com/item/OWC/MEFW934FWU2K/
    Good luck.

  • I am trying to access files from an app on my phone.

    Every time I select "apps" in itunes, it stops and gives me a window that iTunes has stopped working and windows is looking for a solution to the problem.
    I can access and manipulate everything else on my phone, except for the apps that are installed.

    No, I have the music I want to move from the laptop to the phone selected. Then I go under file, devices, and try to click sync but it is not available to click.

  • Accessing files on another computer

    Hi all,
    I am writing a program (in jave) which will let the user select a cd that is in our database (on anohter computer) and burn it. on each cd i want to run a MD5 and store the code generated in the databse(on another computer), i will run MD5 on the cd again when user runs it, this MD5 code and then one stored in the database should be correct for the cd to be burned successfully. Now the cd's and the database is on another computer. I can access the database using JDBC. Is there any way i can access the cd files that re on another computer using java??

    public void bhindiTastesGood(String my_bhindi)
       File dir = new File(my_bhindi);
       String[] aloo = dir.list();
       if (aloo == null)
          // Either dir does not exist or is not a directory
       else
          for (int i=0; i<aloo.length; i++)
             // print filename of file or directory
             System.out.println(aloo);

  • Macbook in target disk mode locks up when trying to transfer files to another computer. Suggestions?

    A week ago I installed snow leopard on my girlfriend's macbook without backing anything up. Dumb idea I know. The installation failed multiple times. I ran her computer in target disc mode to try to save what files I could. Now when I try to transfer files it will freeze up at different times. Sometimes I can transfer a huge amount of data like 4GB's and the other times it locks up trying to transfer 4kB's. I'm at my wits end trying to figure this out. I can see the files but can not transfer them.
    Any suggestions or past similar past experiences?

    Hi Anand,
    Have you noticed when you plug the drive in whether its making any sounds? You can put your ear up to the drive on the Macbook. Its located on the right hand front sided of the top case.
    Also, check to see if the target disk mode icon is moving after a few minutes. If the firewire icon has stopped moving it usually indicates that theres something seriously wrong (probably mechanical) with the drive.
    Id definitely give Disk Warrior a try. Especially if you have a situation where you can hear the drive running or spin up but it doesn't make any sound after that. Hope this helps.

  • Problems with FMS accessing files on another server

    Hi Guys
    Im currently working on a small project with streaming video on demand and using FMS 4.0 (and a complete noob in FMS).
    The video’s is located on another server than the FMS. But I have mapped the server to a drive on my FMS server,
    \\192.168.1.10\data\media\mov\ => R: 
    And in the fms.ini file change vod_dir = R:\
    The FMS service is logging on as Administrator, but I still can’t play the videos.
    If I change vod_dir to a local folder ( c:\data\media\mov\ ) on my FMS server it play the movie fine, any idea why this doesn’t work?
    FYI: I'm using rtmp and both servers is running win2008 R2
    Any input is greatly appreciated
    Best reagrds
    Shimshim

    Hi Nikhil
    I ran the test on my two laptops (xp and win 7, instead of the win 2008 servers ), with lesser restrictions.
    When I used the UNC path in the fms.ini it worked fine, but not when I used the mapped drive.
    This proves it s security setting on my servers, that’s coursing the problem.
    Thank you for your help and fast replies J
    Best regards
    Shimshim

Maybe you are looking for

  • LabVIEW Report Generation Toolkit in the application does not work

    I have LabVIEW7.1 and LabVIEW Report Generation Toolkit for Microsoft Office 1.0.1, which was updated after installed. I made a VI in LabVIEW7.1 enviroment using the Report Generation Toolkit and it works very well. After the VI was build an applicat

  • How to print horizantal lines in smartforms main window  table

    hi ABAP gurus,        i am faceing the problem in smartforms main window, i created the table, in that header, main area, footer is coming and i am created the line type in that five culamns, i am specifing the header and main area data, after the pr

  • I get the message - "Sorry, the opearation could not be completed because a

    i'm trying to transfer some files from my hard drive to my external drive. one is 37GB and one is 81GB i've tried moving them separatly onto my external drive which has 785 GB free. I get the message - "Sorry, the opearation could not be completed be

  • Troubleshooting connections through a ACE 4710

    Hello we are trying to resolve a connection issue  with our load balancer.  I am not very familiar with it, the 4710 was configured by a contractor who now is gone.  I can see connections being accepted by the LB by doing the show serverfarm BLAH  bu

  • How to change the colors of the font(file-edit-history)and so on

    i have just updated my persona and now i am having difficulty reading the (file-edit history) and so on,also the saved sites in the toolbar. they are currently red and it blends into the persona which makes it difficult to see. thank you in advance.