How do you change a read only file?

I copied a document to my email address but it's in the read only format and I need to make some changes but I can't. What do I need to do?

If you save the document to your computer, using Windows Explorer you can right-click then select Properties to change the Read-only attribute.

Similar Messages

  • How do you change orientation of pdf file to fill and sign?

    how do you change orientation of pdf file to fill and sign?

    Adobe Fill & Sign does not yet have a feature to rotate PDF pages but there are several websites that will rotate a PDF for free and then you can bring that PDF with correct orientation into Fill & Sign to fill out.  Any of the top hits when you google "rotate PDF free" will work.
    Thanks,
    Josh

  • How can you change default persmissions saving files

    Mac OS 10.5.8, intel based Mac Pro
    When I save a file it has the permissions RW RW R.  There is another 10.5.8 non-intel Mac Pro then when they save a file to the destop, it is RW R R.  How do you change the default saving permissions?  I want it always to be RW RW W.

    I found it!
    http://support.apple.com/kb/HT2202
    you need to create /etc/launchd-user.conf at noted in the URl above with umask 022 in it.
    BDAqua - Thanks for the reply.  After I created the file and logged out/ back in, I had to change the permissions on the folder also.

  • How do I change a read-only cd to be able to edit the files on it?

    I am downloading a cd with photos on it but they are read-only and I'm not able to crop them. How do I fix this?

    The desktop is a magical place that can have very different attributes than you expect. It is not a good place to put Photos to be edited.
    Try copying them to a Folder in your Photos folder. Make certain that you do not merely create an Alias to the photos on the CD. (An Alias will have an Icon with a little arrow in the corner). Alias take up only a very small amount os space, like 4K or 8K, rather than dozens of MegaBytes for the actual Photos.

  • How do you change the "read more ..." in the Blog page to something else?

    I'd like to change the "read more ..." in the Blog page to say something more relevant to my site. How can this be done?
    I searched the forums and found an earlier response to this question, but I don't quite understand it:
    Find index.xml.gz file (open: Macintosh HD ->
    Applications -> iWeb -> Contents -> Resources -> e.g.
    English.lproj -> Templates -> Blog -> e.g. White
    Blog.webtemplate -> index.xml.gz).
    Open file and edit it in TextEdit. Replace all "read
    more..." with your own text. Delete index.xml.gz file.
    I'm a little confused by this reply. To open the index.xml.gz file within the app, do you navigate there with Terminal.app, unzip it, edit the file with Text Edit, then re-gzip it?
    Second, why do you delete index.xml.gz afterwards?
    And third, will this need to be redone each time iWeb is upgraded?
    Has anyone tried this and know if this is the correct way to change the words, or is there some other way?

    This tedious process actually edits the template xml file within the iWeb application, so that it becomes the default with the template. I haven't done this before, so I'm the wrong person to advise on this.
    I tend to like to do things that are on a simpler scale. You can always make a text box with an opaque background color that matches the blog template background. Then type something else into that text box, like "click here to see more of me" Then position this text box over the standard "read more" and link the text to the blog entry.
    The downside....you'll have to do this (at least position the text box and change the link) each time you add an entry.

  • How do you change a microsoft word file back from pdf file?

    I had a document I created and switched to pdf file. How do I change it back?

    Not possible with Adobe Reader. You'll need either Adobe Acrobat or a subscription to PDF Pack to do it.

  • How can I change the read-only status of my external HDD?

    I recently erased my Macbook's HD because it was insufferably slow.  I reinstalled OS X 10.6.1 and all is well!  Computer's fast and everything works like it should.  Except that my external hard drive (2TB Seagate FreeAgent GoFlex Desk) is now read-only to me.  It used to be readable and writable when plugged into any computer.  Then something changed, and it only worked with my laptop (not anyone else's).  When I reformatted and reinstalled OS X, I chose the same user name as I had before the reinstall, because I was semi-worried that this might happen.  My computer troubles were so frustrating, however, that I just took the leap.  Now here I am with 620GB of data that I cannot delete, and another 1.38TB of empty space I cannot use.
    Any ideas?  Also, I apologize if this is in the wrong place.  This is my first post on the Apple boards.
    - Diesel

    See if this fixes things:
    Fix Permissions for a Locked Drive
    Open Terminal in the Utilities folder. Paste the following at the prompt. Press RETURN after each. The first command will prompt for you to enter your admin password. It will not be echoed to the screen. After entering your password press RETURN again.
    sudo chflags 0 /volumes/*
    sudo chmod a+rx /volumes/*
    killall finder
    An alternative is to download BatChmod and use it to fix the permissions.

  • ? How do you change default for .pdf files from Reader 6 to reader 9

    I cannot change the default for .pdf files from reader 6 to reader 9. Also I cannot remove reader 6. I am running Vista

    Normally, completely removing old versions and reinstalling the latest version will reassociate all applicable extensions for the program, but it appears to have failed in your case.  There may be something else going on with your machine that is producing this behavior.  You probably need to investigate that.  But what you can do to make sure the defaults are correct is click on the start orb and select 'Default Programs.'  Then select 'Associate a file type or protocol with a program.'  From the list of file types, select each of the following in turn: acrobatsecuritysettings, fdf, pdf, pdfxml, pdx, xdp, and xfdf.  If its default program is not Adobe Reader, click on the Change Program button and select Acrobat Reader from the list (you may need to expand the lower section to display more programs than it initially provides).  If Adobe Reader does not show up in the list, you will have to browse for it.  It should be located in C:\Program Files\Adobe\Reader 10\Reader\AcroRd32.exe or C:\Program Files (x86)\Adobe\Reader 10\Reader\AcroRd32.exe.
    This method is safer than manually editing the Root\Classes in the registry.

  • How do you change name of the files before sending files to FTP site?

    Hi guys,
    my environment is SQL Server 2008 R2.
    Currently, I'm trying to figure out how to tackle the following project:
    I have over 100 files that I need to send via FTP on daily basis.
    Before doing so, I must change the extension of the file to a specific characters stored in a sql server table, for example if the file name is Store1.txt the new name will be Store1.111
    I was hoping that you guys can point me in the right directions :-)
    Codernater

    I would use a script task for renaming, Pass the data from the SQL table with the extension you want via a object variable to the script task iterate the files in the directory and rename as requried
    this code and link would help you
    http://stackoverflow.com/questions/12347881/renaming-files-in-folder-c-sharp
    DirectoryInfo d = new DirectoryInfo("....");
    FileInfo[] infos = d.GetFiles();
    foreach(FileInfo f in infos)
    File.Move(f.FullName, f.FullName.ToString().Replace("abc_","");
    Abhinav http://bishtabhinav.wordpress.com/

  • How do you change the program ALL files of a type open with?

    Hello. I run Parallels Desktop for Mac on this system. Since I upgraded to v3, OS X wants to open my Mac Word/Excel/Etc... files using the MS Office installed in windows XP from PD. I don't always have PD running, and do not want it to start up to use the programs on it. I know, not a Mac problem... But, my question is this:
    Is there a way to change the program that ALL files of a certain type (ex: pdf, doc, txt, etc...) will start? I have tried the OPT+RT CLICK which says to ALWAYS open this file with xxx.... but that only flags that single file. I want every file that I ever open anywhere on my system/network to use the program I specify. This is simple to do in Win XP, and I'm guessing there's a way to do it in OS X.
    Help/information appreciated.
    Thank you,
    Scott
    MacPro Quad Xeon 3.0GHz   Mac OS X (10.4.9)   16 GB RAM - 1TB Internal RAID1

    Well, with the program Onyx, I've found that LaunchServices database is the culprit. To fix this I just pick a type of file I want to change. Right click the file, choose get info, and change the program it opens with, then click the change all button. Done!
    Cool.
    Scott

  • How do you change one page only on a document to landscape?

    i want to change one page of a document to landscape, but I can only change the entire thing! please help

    Bro,
    You don't turn the page, you turn the content. Whatever you were going to put there is probably different in format from the adjoining content, so can be rotated using the Metrics Inspector whether it's a Table or Text Box, etc.
    Jerry

  • My Excel files were imported as read only files how can I change these

    I am a new Mac user. When my excel files were copied over from my MS PC they have come over as read only files. How can i change these to "normal" files as they were on my PC? Thanks

    More info:
    Version: 10.6.8
    Format: Mac OS Extended
    Sharing & Permissions:
    system - Read & Write
    admin - Read & Write
    everyone - Read only
    When I click the lock in the bottom right corner it prompts me for my password but after unlocking it it doesn't allow me to change privelages or give me any new permissions.

  • How to delete a READ ONLY file from Directory

    Hi Friends,
    how to delete a READ ONLY file from Directory , file is in my system only.
    Please help me .
    note: its read only file.
    Thank you.
    Karthik.

    hI,
    try with this statement.
    delete dataset <datasetname>.
    this will definitely work.
    Regards,
    Nagaraj

  • How do you change to single click to open files and folders?

    How do you change from double clicking a file/folder, to single clicking (web style)?

    Finder > Preferences
    Turn it off it irks you. I find it exceedingly useful.

  • How do you change the name of a folder/file on an expansion drive

    How do you change the name of a folder/file on an expansion drive or external hard drive?

    The same way you change it on the internal drive; click on the name and wait a second or two for the field to drop into editing mode, then just type the new name. Or Get Info on the file/folder and change the name there.
    Regards.

Maybe you are looking for

  • Installing OLEDB 8.1.7.3.0

    When run the "Setup.exe" program, afrer selected all the components of "Oracle Provider for OLE DB Components 8.1.7.3.0" and click next page, the Installer terminated without any error message. Oracle OLE DB 8.1.7.3.0 can't install on Windows 2003 se

  • Problem in dealing with special-character filename

    Hi, I am facing a weird problem while dealing with a file which has a special character in its name. That character is the big-hyphen, i.e. '–' (not the normal hyphen we can type from keyboard), you would have seen this character in MS Word. My java

  • E_ADPT_NO_FULFILLMENT_RESULT

    I have just download adobe digital edition 2.0. when I try to open the just bought ebook I get the a.m. error. can you pls. help me?

  • Why can't I find events by name in iCal after upgrade to Lion?

    I just upgraded to Lion on my MacBook Pro and have moved to iCloud. Now iCal (version 5.0.1) no longer allows me to find events by typing the event name in the search bar. This is frustrating. Has anyone else had this problem, or am I overlooking som

  • Data-driven graphics error

    I'm trying to use the data-driven graphics wizard for a card game some friends and I are creating. Each card has 9 text variables and 2 image variables. When I run the wizard, it finds all the variables just fine, but after properly processing one va