Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Meg Meg is offline
external usenet poster
 
Posts: 13
Default What is a file permission error when saving a Word doc?

Today, when trying to save a Word document, first on a USB stick, then on our
hard drive, I get an error message saying: "Word cannot complete the save due
to a file permission error." - then the file path. I am then asked if I
want to try and save again. If I say no, it assigns ~WRL name to it. If I
say yes, I can rename the file.

However, if I say no and don't do anything, a few minutes later I get
another dialogue box saying: "There is an unrecoverable disk error on (temp
~WRL # it has assigned). The disk you're working on has a media problem that
prevents work from using it. Try the following: *Try formatting another disc
or *Save document to another disc. This is while I am working on our C drive.

I can't seem to find any help on this problem.

Of course this happened to a completed proposal I'd been working on for a
couple of weeks!
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default What is a file permission error when saving a Word doc?

Word is not intended to read from or write to removable media directly. The
media will corrupt if there is insufficient room for the document and the
associated temporary files.

Always work from the hard drive and *copy* to removable media. The following
macro will save the current document to the hard drive then copy it to your
USB media. All you have to do is change the drive letter from A: in the
DestinationFile to that of your USB media (which you should assign a
permanent drive letter to via Windows Administrative Tools).

Sub CopyDocToUSBStick()
Dim SourceFile As String
Dim DestinationFile As String

ActiveDocument.Save
SourceFile = ActiveDocument.Name ' Define source file name.
DestinationFile = "A:\" & SourceFile ' Define target file name.
ActiveDocument.Close
On Error GoTo oops
FileCopy SourceFile, DestinationFile ' Copy source to target
Documents.Open SourceFile
End
oops:
MsgBox "The USB Stick is not available"
Documents.Open SourceFile
End Sub

http://www.gmayor.com/installing_macro.htm


--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org


Meg wrote:
Today, when trying to save a Word document, first on a USB stick,
then on our hard drive, I get an error message saying: "Word cannot
complete the save due to a file permission error." - then the file
path. I am then asked if I want to try and save again. If I say no,
it assigns ~WRL name to it. If I say yes, I can rename the file.

However, if I say no and don't do anything, a few minutes later I get
another dialogue box saying: "There is an unrecoverable disk error on
(temp ~WRL # it has assigned). The disk you're working on has a
media problem that prevents work from using it. Try the following:
*Try formatting another disc or *Save document to another disc. This
is while I am working on our C drive.

I can't seem to find any help on this problem.

Of course this happened to a completed proposal I'd been working on
for a couple of weeks!



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
[email protected] britton.aaron@gmail.com is offline
external usenet poster
 
Posts: 1
Default What is a file permission error when saving a Word doc?

I just found a solution to this problem in case you haven't yet. I was
able to get documents to save by reformatting the USB drive from FAT to
FAT32.


Meg wrote:
Today, when trying to save a Word document, first on a USB stick, then on our
hard drive, I get an error message saying: "Word cannot complete the save due
to a file permission error." - then the file path. I am then asked if I
want to try and save again. If I say no, it assigns ~WRL name to it. If I
say yes, I can rename the file.

However, if I say no and don't do anything, a few minutes later I get
another dialogue box saying: "There is an unrecoverable disk error on (temp
~WRL # it has assigned). The disk you're working on has a media problem that
prevents work from using it. Try the following: *Try formatting another disc
or *Save document to another disc. This is while I am working on our C drive.

I can't seem to find any help on this problem.

Of course this happened to a completed proposal I'd been working on for a
couple of weeks!


Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Word 97 in Windows XP to maintain formatting Charlie''s Word VBA questions Microsoft Word Help 22 May 20th 23 08:51 PM
Converting WordPerfect 12 files to Word 2003 Curious New Users 4 May 19th 23 02:48 PM
Can't get Word 2003 to keep data file with mail merge main documen Yourcareercoach Mailmerge 9 August 10th 06 12:19 PM
I am having difficulty with deleting headers and footers LHD New Users 5 July 24th 06 01:44 AM
Word & WordPerfect MrsMac Microsoft Word Help 5 June 10th 06 03:14 AM


All times are GMT +1. The time now is 12:27 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"