Unable to save the file in a specific location

I created a C:\Users\Projects\Writing projects folder to save my writing projects in. I tried to put a Word file in this folder and I was told that I don't have administrator rights to save a file in this location. I must have administrator rights, because it is my PC, and I have only set up an account with which I set install programs, remove any software, create folders, etc etc, so what happens? He told me that I could save the file under 'my documents '. I don't want to post here, because a load of other detritus accumulates in this folder, and these are files of project specific I want to keep separate (I'm a writer).

Hmmm, I just did exactly that on my computer with Word 2007 and Home Premium from Windows 7 64 and had no problem at all.  If you have the professional version or complete edition, you can run in a part of the increased security, maybe.  You can still create these folders as subfolders of the My Documents folder and isolate what you put there like that.  Another thing you could try would be to create a LIBRARY that points to the C:\Users\Projects\Writing project that you created.  This might be more likely to succeed.

One thing I just noticed that is not in your post is your user ID.  You create these records in C:\Users\yourID\Projects\Writing projects.  That's what I was doing.

Good luck.

Tags: Windows

Similar Questions

  • Unable to save the files to my device (Flash disk)

    Unable to save the files in my flash drive. It is given the message that it is complete, although it is not even half full. Furthermore, when I tried to eject, there will be a message that I have shuold close all files using even when there is none.

    Thank you

    First of all, I would like to make a backup of all the files somewhere safe. Just in case something goes wrong. I would like to make a copy of the files on the computer. Format the USB. Then copy the files over. If after a format, it still has the same problem or she leaves you nothing copy on then the memory stick may be dying on you and her is to buy another.

    Good luck

    Free Support Tools

  • Receive an error message on UID: uid without an owner for ImageFrame is unable to SAVE the FILE

    Receive an error message on UID: uid without an owner for ImageFrame is unable to SAVE the FILE

    Hello

    Could you please share your with us .muse file to study? Please send it to [email protected]. If your file is larger than 20 MB, you can use something like Adobe SendNow SendThisFile or Dropbox. Don't forget to mention the link to this forum thread in your email so that we can identify the file.

    Concerning

    Vivek

  • Unable to save the files to the desktop, the error msg says I don't have permission to do this and to cantact admin but I m user having admin status.

    IN WINDOWS 7, cannot save the files to the desktop, the error msg says I don't have permission to do this and to cantact admin but I m user having admin status. ALL SUGGESTED SOLUTUTION? THE FILE in question is created with ms word 2007. I can record on other places lik e in drive D: etc.

    I could open your Explorer of files and go to C:\Users\Vanbee (or any folder of your user name), then right click on the folder on the desktop it there and go to properties.  On the Security tab, make sure that you have a full control on the folder.

  • (webutil) How to save the file in a specific way?

    Hello

    I have this part of the code
    Arglist := OLE2.Create_Arglist;
      OLE2.Add_Arg(Arglist,'c:\Export.xls');
      OLE2.Invoke(workbook, 'SaveAs', Arglist);
      OLE2.Destroy_Arglist(Arglist);
      -- release workbook
      OLE2.Release_Obj(workbook);
      OLE2.Release_Obj(workbooks);
      OLE2.Release_Obj(application);
    who saves the excel C:\Export.xls file. I tried to open a file save dialog box, with
    BEGIN
               
      file_name_cl := CLIENT_GET_FILE_NAME('C:\Export', 'ExportExcel.xls', 'XLS Files (.xls)|*.xls|', NULL, SAVE_FILE, TRUE);
      file_name_cl := SUBSTR(file_name_cl,1,LENGTH(file_name_cl));
      --
      IF file_name_cl IS NULL THEN
         MESSAGE('INSIDE EXCEPTION STATEMENT');
         RAISE user_cancel;
      END IF;
    {code]
    
    But the file isn't saved. Why?
    
    So here is all the code
    PROCEDURE export_din_datablock (p_block varchar2) is

    REQUEST OLE2. OBJ_TYPE;
    WORKBOOKS OLE2. OBJ_TYPE;
    WORKBOOK OLE2. OBJ_TYPE;
    SPREADSHEETS OLE2. OBJ_TYPE;
    WORKSHEET OLE2. OBJ_TYPE;
    Arglist OLE2. LIST_TYPE;
    CELL OLE2. OBJ_TYPE;
    J INTEGER;
    INTEGER K;
    file_name_cl VARCHAR2 (32767).
    USER_CANCEL EXCEPTION;
    Workfont OLE2. OBJ_TYPE;
    WorkInterior OLE2. OBJ_TYPE;
    m_item varchar2 (40);
    m_tot_columns number: = 0;
    LC$ target Varchar2 (256): = "text.xls";
    LC$ Fic Varchar2 (256);

    -Inner Proc.
    Procedure put_cell (number of no_lig,
    Number of Col_num,
    put_value varchar2,
    FONT_NAME varchar2 default null,
    font_size directory by default null,
    font_style varchar2 default null, - we can use pune "BOLD" pentru "BOLD", "ITALIC" pentru italics, etc.
    font_color directory by default null) is
    Begin
    Arglist: = OLE2.create_arglist;
    OLE2.add_arg (arglist, row_num);
    OLE2.add_arg (arglist, col_num);
    cell: = OLE2.get_obj_property (Worksheet, 'Cells', Arglist);
    OLE2.destroy_arglist (arglist);
    OLE2.set_property (Cell, 'Value', put_value);

    Workfont: = OLE2.get_obj_property (cell, 'Make');
    WorkInterior: = OLE2.get_obj_property (cell, 'Interior');
    If font_name is not null then
    OLE2.set_property (Workfont, 'Name', FONT_NAME);
    End if;
    If font_size is not null then
    OLE2.set_property (Workfont, 'Size', font_size);
    End if;
    If font_style is not null then
    OLE2.set_property (Workfont, font_style, 1);
    End if;
    If font_color is not null then
    OLE2.set_property (Workfont, font_color 'ColorIndex');
    End if;
    OLE2.release_obj (workfont);
    OLE2.release_obj (workinterior);
    OLE2.release_obj (cell);
    End;


    BEGIN

    file_name_cl: = CLIENT_GET_FILE_NAME ('C:\Export', 'ExportExcel.xls', ' file XLS (.xls) | * .xls |', NULL, SAVE_FILE, TRUE);
    file_name_cl: = SUBSTR (file_name_cl, 1, LENGTH (file_name_cl));
    --
    IF file_name_cl IS NULL THEN
    MESSAGE ("INSIDE THE EXCEPTION STATEMENT");
    RAISE user_cancel;
    END IF;

    APPLICATION: = OLE2. CREATE_OBJ ('Excel.Application');
    OLE2. SET_PROPERTY (application, 'Visible', true);

    WORKBOOKS: = OLE2. GET_OBJ_PROPERTY (APPLICATION, 'NOTEBOOKS');
    WORKBOOK: = OLE2. INVOKE_OBJ (WORKBOOKS, "ADD");
    WORKSHEETS: = OLE2. GET_OBJ_PROPERTY (WORKBOOK, 'WORKSHEETS');
    WORKSHEET: = OLE2. INVOKE_OBJ (SPREADSHEETS, "ADD");
    OLE2.set_property (spreadsheet, 'Name', 'leaf-ul meu');

    GO_BLOCK (p_block);
    PREMIER_ENREGISTREMENT;
    -prima linie dedicated numelui sunt; pe linia incep 2.
    J: = 2;
    K: = 1;
    LOOP
    m_item: = get_block_property (p_block, first_item);
    K: = 1;
    Loop
    exit in M_ITEM IS NULL;
    If not id_null (find_item (p_block |'.)) ' || m_item)) then
    -daca point-urile sunt type specificat (+ eventual alte conditii), atunci to export data din ele
    If get_item_property (p_block |'.) ' || m_item, item_type) IN ('ELEMENT of TEXT', 'VIEW ARTICLES', 'LIST', 'CHECKBOX')
    and get_item_property (p_block |'.) ' || m_item, visible) = "TRUE" then
    If j = 2 then
    -preiau dinamic name if sunt afisez pe linia 1, cu "BOLD"
    put_cell (1, k, get_item_property (p_block |'.)) ' || m_item, column_name), null, null, 'FAT');
    end if;
    If not name_in (p_block |'.) ' || m_item) is NULL then
    -data afisez
    put_cell (j, k, name_in (p_block |'.)) ' || m_item));
    End If;
    K: = k + 1;
    end if;
    end if;
    -merg urmatoarea inregistrare
    m_item: = get_item_property (p_block |'.) ' || m_item, NEXTITEM);
    END LOOP;
    J: = J + 1;
    When the output: system.last_record = "TRUE";
    NEXT_RECORD;
    END LOOP;
    OLE2. Release_Obj (Worksheet);
    OLE2. Release_Obj (Worksheets);
    -Save the created Excel file
    Arglist: = OLE2. Create_Arglist;
    OLE2. Add_Arg (arglist, 'c:\export.xls');
    OLE2. Invoke (Binder, 'SaveAs', Arglist);
    OLE2. Destroy_Arglist (arglist);
    -Release of workbook
    OLE2. Release_Obj (Workbook);
    OLE2. Release_Obj (Workbooks);
    OLE2. Release_Obj (application);
    MESSAGE ("Export cu success!'");
    END;
    Please help.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    Roger

    Not to be confused... YOU read my previous POST.

    Also answer me...
    How do you want to save the file?
    1. replace or add to the file in the folder?
    2. create a new file in the folder?

    If you answer is first, change your code in a more dynamic way

    -Save the opened Excel file
    rglist: = OLE2. Create_Arglist;
    OLE2. Add_Arg (arglist, file_name_cl);
    OLE2. Invoke (Binder, 'SaveAs', Arglist);
    OLE2. Destroy_Arglist (arglist);

    So then you can give it

    -Save the created Excel file
    rglist: = OLE2. Create_Arglist;
    OLE2. Add_Arg(arglist,'c:\export\newexcelexport.xls');
    OLE2. Invoke (Binder, 'SaveAs', Arglist);
    OLE2. Destroy_Arglist (arglist);
    Your file will be saved in the "C:\export\" a folder with the name newexcelexport

  • Unable to save the files on the desktop computer.

    After a restoration of the system, I am unable to save files on the desktop. Also, when I run that h & R Block software from my office, I get the following error

    "No permission to write to the directory. (see WinFileWriterImpl:open())

    No idea how I can fix this problem?

    Thanks in advance

    Why do you run the system restore?
    You had a problem before with saving files?

    You can save files to a folder on C:\?
    There are errors in the event viewer?

    Note

    To open Event Viewer: click on the Start button. In the search box, type and then event viewer from the list of results, double-click Event Viewer.

    Search in the application or system event logs and red error report.

    Thank you

    Marilyn

  • Unable to save the file in PSD - PS says that the file is over 2 GB when it's not

    I have a PSD that I worked on for many months. This week I got a new computer. When I open this file on my new computer, I'm unable to save as a PSD. The size of the file, in Windows Explorer, is 600 MB. Depending on the size of the PS CC Document displayed at the bottom of the Document window, the size of the document is 288.4 M / 1.77 G. Yet, when I try to save this file on my new computer, I get this error:

    Could not save it as "filename.psd" because the document is larger than 2 gigabytes.
    See Help topic "backup files" for more information.

    I do not understand how I worked on this document for several months and never had a problem with recording it, even now, on my new computer, it is impossible to save. My new computer has a secondary SSD hard drive that I use as the primary scratch disk. The new computer also has more RAM and a processor more. I had copied all my files from the old computer to the new preferences, and I do not see all of the settings are different between the two computers. Can someone please provide some guidance?

    (Note: I've been running PS CC x 32 because the x 64 version is not stable on my computer.)


    Size of the file as that displayed in the Windows Explorer: 600 941 KB.

    NEW: Document size such that displayed in the Document window: 288,4 M / 1.77 G
    OLD: Paper size such as displayed in the Document window: 288,4 M / 1.77 G

    NEW: Adobe Photoshop Version: 14.2 (14.2 20131211.r.515 2013/12 / 11:23:00:00) x 32
    OLD: Adobe Photoshop Version: 14.1.2 (14.1.2 20130923.r.427 2013/09 / 23:23:00:00) x 32

    NEW: operating system: Windows 7 64-bit
    OLD: Operating System: Windows 7 64-bit

    NEW: Version: 6.1 Service Pack 1
    OLD: Version: 6.1 Service Pack 1


    NEW: Physical processor count: 4
    OLD: Number of physical processor: 8

    NEW: The number of logical processors: 8

    NEW: Processor speed: 3591 MHz
    OLD: Processor speed: 2394 MHz

    NEW: Built-in memory: 32694 MB
    OLD: Built-in memory: 30718 MB

    NEW: Free memory: 25810 MB
    OLD: Free memory: 25633 MB

    NEW: Memory available to Photoshop: 3255 MB
    OLD: Memory available to Photoshop: 3255 MB

    NEW: The memory used by Photoshop: 60%
    OLD: The memory used by Photoshop: 69%

    NEW: Image tile size: 128K
    OLD: Image tile size: 128K

    NEW: Image cache levels: 6
    OLD: Image cache levels: 6

    NEW: Scratch or volumes:
    C:\, 930.2 G, 686,5 free G
    B:\, 111.8 G, 103.6 G free
    OLD: Scratch or volumes:
    C:\, 930.7 G, 567,1 free G

    Hello

    To ensure the follow-up to future readers who find this post, indeed it was a 14.2 bug fix which fell from Mindy file.

    14.1.2 and older versions of Photoshop, it was possible to save a document in PSD format which would not properly push the limit of 2 GB of formats (vector data stuck with the Max compatibility). We had a report of someone who inadvertently produced 300 + GB of files (http://forums.adobe.com/message/5666971#5666971). With 14.2, now make us some additional controls while recording and to issue warning limit file size. One of these controls is to the pixel dimensions of the data (the data of superior image then 30K pixels).

    Although MIndy file na not to exceed the 2 GB limit, it triggers the check of size of pixel data. There is a smart object layer that put across 6000%.

    So if you are getting 2 GB limit warning and didn't in previous versions, take a look at the scale of values on smart object layers and note the layers covering the area pixel values in the Info Panel and checking vector data (pasted from Illustrator guides).

    Kind regards

    Steve

  • Unable to save the files in Windows Movie Maker

    NEED HELP now Windows Movie Maker CRASHING! Project due tomorrow

    Help! It is 9: 40 EST and my video girls ' school project is due tomorrow, my WMM crashes when I try to "Save movie file" is only 6 minutes long and time continues to go up instead of down trying to save until he finally locomotives upward and I get the message that WMM has encountered a problem and needs to close. HELP HELP HELP I'll give you my email and cell # if it's faster

    Thank you very much, I got it fixed by unchecking a file in the tools/Compatibility tab that was causing the problem.

  • Error message "unable to save the file. ToR Adv.docx is not a valid short file name"

    I tried to save a Word file and received the above message. I had previously saved the file with hit of the same name. I tried with a different name, the same message. I deleted the original file, the same message.

    Word:

    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx

    Office newsgroups

    http://www.Microsoft.com/Office/Community/en-us/default.mspx?DG=Microsoft.public.Word.docmanagement&lang=en&CR=us

    Discussions of general issues of Word.

    They will help you with your question Word when repost you in the Office discussion groups above.

    See you soon.

    Mick Murphy - Microsoft partner

  • Unable to save the files in the root directory of windows 7

    When I try to save a file in the directory root (c:\) on a Windows 7 PC I get a message saying "you have not ti permission to save in this location." Contact the administrator for permission.

    On this PC, I am a member of the Administrators group.

    Any suggestions on how I can gain read/write access to the directory root

    You can't because C:\ is considered a system folder. It is a question of UAC and is here on a daily basis - see here: http://answers.microsoft.com/en-us/windows/forum/windows_7-security/permissions/1821b1b7-19ae-4e15-b414-dd63635e5f94

  • Unable to save the file in the site after upgrade

    Just upgraded to the new version of Muse.

    Open my site, tried to "save under" with a name change. Could not. Also not able to "Save".

    Have tried several times. Have now a few versions "recovered."

    When backups fail, I get:

    3128: Save as failed.

    [SPLErrorEventtype = "error" bubbles = false cancelable = false

    error = SQLError: ' error #3128: disk i/o error has occurred. ", details:", "

    [operation: "compact"]

    Same message if I just tried a "Save". Also, the error is sometimes 3125, not 3128.

    Never had this problem before. Have to do some work on the site. Is it possible to revert to the previous version of the Muse?

    Farewell wrote:

    I have work earn 10. Backup to local drive (C), which has about 1.3 TB of space available.

    The location of documents Windows 10 My a special locks to stop lossing pers people their files by mistake... you can try to make a new folder on the c drive {c: test record} and save the site in that folder?

  • Unable to save the files on a mapped network drive.

    A couple of my users who attempt to save files on a mapped network drive gets the following message appears: you are not allowed to save on this resource. Contact your administrator if you need permission. Users are running Vista and the network resource are on a standard Server 2003. All users have permission to the resource change.

    Hi Jayniklas,

    Thank you for using the Microsoft Answers Forums!

    The question you have posted is related to permission for the shared folder to be changed on the server, so it would better suit the technet community. Please visit the link below to find a community that will provide the best support.

    http://social.technet.Microsoft.com/forums/en-us/itprovistanetworking/thread/99bdcf8e-2038-4f8c-B84B-5e3b16d52895

    [If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message.] [Marking a post as answer, or relatively useful, you help others find the answer more quickly.]

    Hope this information was useful.

    Let me know if it worked.

    All the best!

    Thank you and best regards,

    R uma - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • ENVY 100 D400: Unable to save the files scanned after Windows update 10.

    After scanning the computer, I click on save button with one of two results. Sometimes nothing at all happens. Other times, the computer stops responding.

    @Roy16

    Probably, you need to delete the current program printer and install a new copy of the software full functionality.

    HP ENVY 100 e - All - in - One Printer - D410a

    Full software features:

    File name: LSD410_1315 - 1.exe

  • Unable to save the files without permission admin when logged in as an administrator.

    Trying to update my Garmin GPS & need for dowhload a .exe file on my desktop.  Get this - "you don't have permission to save in this location.  Contact the administrator for approval. "I'm currently logged on as administrator.  Tried to d/l to other locations, but get the same message.  Same problem d/l w/other attempts, too.  Help!

    go to programs, then Accessories go to 'RIGHT CLICK' command prompt and run as administrator the prompt will look like this (C: \windows\system32) type at the prompt the following: net user administrator / active: No. This should solve this problem

  • Unable to save the files in. PNG format

    Hi, I have CS4 premium web that I installed it a week ago. I'm a complete newbie with these tools that seem totally awesome, and I managed to create a few designs two Illustrator in and PS. Initially, when you perform a command "save under", I see many files formats to choose from in the drop down menu, but today (when it mattered most, of course) MOST of the formats, including PNG and JPG is not in the pull down menu in Illustrator. I also checked Photoshop and found the same result.

    I did actually do some research and noted a mention of people while making sure that the plugins are still in place, so I checked that and files are in the folders mentioned (here's a screenshot):

    12-13-2011 8-52-45 PM.jpg

    In any case, it's very frustrating and I hope that it is just something stupid that I do and that a kind soul can help to quickly resolve this problem with me.

    Thanks in advance, Burle.

    File menu-> Save for Web

Maybe you are looking for

  • Photos app begins when the iPhone plugged into iMac?

    Whenever I connect my iPhone to my iMac the Photos app starts. Is there some setting somewhere to prevent this? Thank you -Mike P.S. I use the latest operating systems on all my devices (El Capitan and iOS). I looked in the settings in the Photos on

  • Meta text not showing on mouse over

    Some sites (for example, http://xkcd.com/789/) to add more information, etc. When you run the mouse over the image text meta. This feature does not work for me.

  • HP Z420: Z420 replacement HP Motheboard

    Hello The motherboard of my hp z420 workstation is a failure (problems with the slot machines, boot etc...). Now, my question is this: is the only option to buy another motherboard from z420 or could it be an opportunity to upgrade (for example, by b

  • AWR supports the connection via a net?

    Hello I have a very complex scheme with several control value entries.  My patterns have become unusable because of the amount of sons who are the confrontations between them.  I can "understand how to connect elements through names of the nodes.  CW

  • I run windows xp on HP Pavilion 750, in the past, I have not had a problem writing to the pictures from my computer to a disc

    I run windows xp on HP Pavilion 750, in the past, I have not had a problem writing to the photos from my computer on disc. It now written up so I get a message cannot keep any body can help please. original title: problem writing Photos...