Link to home
Start Free TrialLog in
Avatar of agbor1960
agbor1960

asked on

Word too SLOW

Hi guys,

Can anybody tell me how to monitor word to see what's going on when i or other users click on a word document that is on a server??
because it takes about 40sec to open a document (word)...(a free tool would be nice)


Tenks
SOLUTION
Avatar of Joseph O'Loughlin
Joseph O'Loughlin
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of agbor1960
agbor1960

ASKER

When people try to open a word document from the network it takes about 30-45sec to open , so i tried the "save as" on my local drive same story...
1) then copied the content of the document  to an empty word document then everything was fine...



2) and where it still worked was when i disconnected all my network connections and it took me less than 4sec...
of course i had to save it locally ...

Please help ! ! !

Tenks
Tenks, if you have Norton Antivirus, you may want to check the settings for "scan Office documents on open" and turn it off.

I don't know if it's smart enough to see that the new document never left your PC, maybe? I don't do Norton. I hate it. I use McAfee. :)
We don't have Norton either we have officescan..
And if you temporarily disable Officescan, does this resolve the issue?

If you start Word with start-run and type:

winword.exe /a

Can you then work more quickly?
What did filemon show happening?
Where does the normal.dot reside?  If it's on the network and a shared file, then that may be a problem as well.  Perhaps you should delete or rename all instances of normal.dot if they reside on the C: drive and try it then.



but can i be able to open a word document with the /a switch on a share (network) ?? i don't think so ...

and the normal.dot resides on the users drive e.g. "z"  and with filemon i did not see anything ....

Please help  !! ! ! !
windord /a start Word without any extra add-ins and stuff loaded. It still allows you to open Word documents from
anywhere you want.

First this: Are you talking about the loadingtime of Word (when Word starts-up) or of the document (Word is already running and you use "File" >> "Open" to open the document). If you don't know, compare these to methods to see if any difference comes visible.

Also try this: Close all Word sessions, and then rename normal.dot to something else (Do not delete it if it contains settings you have made, like autotext entries and stuff like that). This causes Word to start with some fresh settings.

If this does not matter, use that /a switch and check out if this matters. If it does, start word normally again and remove the add-ins that are loaded in "Tools" >> "add-ins"

Kind regards
BTW, are speaking about a specific document are any document?

Kind regards again
am talking about document that word is already running when you use "File" and and.... and i have tried to rename and delete the normal.dot no difference...
and we are speaking about hundrends of documents but when i stop all network connection then the documents open much more faster lets say about 4sec... and of course i have to save the docs. locally but if i "save as"
with the network connections on its very slow 40secs or more....
Is it possible its because of Macro... but we have this macro since ages... the problem suddenly started about 2-3 weeks ago....
The winword /a opttion also makes no difference?

Maybe you could post the macro here?

Kind regards
'--------------------------------------------------------------------------
'Vorlage              Studienplan, ZLB Bioplasma AG
'Zweck                Erstellen von Studienplan nach CI
'Erstellt             20.12.2000   Marco Napoleone   PCIC
'Version              1.0
'Letzte Änderung      17.11.2000,MNL
'--------------------------------------------------------------------------

Option Explicit
Const strfirmenname As String = "ZLB"
Dim strdialog As String
   
Private Sub cmdAbbrechen_Click()
    ActiveDocument.Close wdDoNotSaveChanges
    Unload frmStudienplan
End Sub

'--------------------------------------------------------------------------
'Kopf-/Fusszeilen abfüllen und Autotext einfügen
'Letzte Änderung    20.12.2000,MNL
'--------------------------------------------------------------------------
Private Sub cmdOk_Click()
    Application.ScreenUpdating = False
    ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
    Selection.TypeText vbTab
'--------------------------------------------------------------------------
'Text in deutsch einfügen
'--------------------------------------------------------------------------
    If optDialogD.Value = True Then
        With Selection
            .TypeText "Seite "
            .Fields.Add Selection.Range, wdFieldPage, , True
            .TypeText " von "
            .Fields.Add Selection.Range, wdFieldNumPages, , True
        End With
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
'Autotext einfügen
        If optGlpJ.Value = True Then
            ThisDocument.AttachedTemplate.AutoTextEntries("StudyplanGlpD").Insert _
            Selection.Range, True
        Else
            ThisDocument.AttachedTemplate.AutoTextEntries("StudyplanD").Insert _
            Selection.Range, True
        End If
       
'Fusszeile der folgenden Seiten abfüllen
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
        Selection.TypeText vbTab
        With Selection
            .TypeText "Seite "
            .Fields.Add Selection.Range, wdFieldPage, , True
            .TypeText " von "
            .Fields.Add Selection.Range, wdFieldNumPages, , True
        End With

'Kopfzeile der folgenden Seiten abfüllen
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
        Selection.TypeText strfirmenname
        Selection.TypeText vbTab
        Selection.TypeText txtStudienNr.Value
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
    End If
   
'--------------------------------------------------------------------------
'Text in englisch einfügen
'--------------------------------------------------------------------------
    If optDialogE.Value = True Then

'Fusszeile der 1.Seite abfüllen
        With Selection
            .TypeText "Page "
            .Fields.Add Selection.Range, wdFieldPage, , True
            .TypeText " of "
            .Fields.Add Selection.Range, wdFieldNumPages, , True
        End With
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument

'Autotext einfügen
        If optGlpJ.Value = True Then
            ThisDocument.AttachedTemplate.AutoTextEntries("StudyplanGlpE").Insert _
            Selection.Range, True
        Else
            ThisDocument.AttachedTemplate.AutoTextEntries("StudyplanE").Insert _
            Selection.Range, True
        End If
       

'Fusszeile der folgenden Seiten abfüllen
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageFooter
        Selection.TypeText vbTab
        With Selection
            .TypeText "Page "
            .Fields.Add Selection.Range, wdFieldPage, , True
            .TypeText " of "
            .Fields.Add Selection.Range, wdFieldNumPages, , True
        End With

'Kopfzeile der folgenden Seiten abfüllen
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekCurrentPageHeader
        Selection.TypeText strfirmenname
        Selection.TypeText vbTab
        Selection.TypeText txtStudienNr.Value
        ActiveDocument.ActiveWindow.ActivePane.View.SeekView = wdSeekMainDocument
    End If

'Sprung zu Prozedur
    DocAbfuellen

End Sub

Sub DocAbfuellen()
'--------------------------------------------------------------------------
'Texte von Formular in Dokument einfügen
'Letzte Änderung    17.11.2000,MNL
'--------------------------------------------------------------------------
    With Selection
        .GoTo wdGoToBookmark, , , "Studiennummer"
        .TypeText txtStudienNr.Value
        .GoTo wdGoToBookmark, , , "Studientitel"
        .TypeText txtStudientitel.Value
        .GoTo wdGoToBookmark, , , "Projekt"
        .TypeText txtProjekt.Value
        .GoTo wdGoToBookmark, , , "Testgegenstand"
        .TypeText txtTestgegenstand.Value
        .GoTo wdGoToBookmark, , , "Studienleiter"
        .TypeText txtStudienleiter.Value
        .GoTo wdGoToBookmark, , , "Studienleiter2"
        .TypeText txtStudienleiter.Value
        .GoTo wdGoToBookmark, , , "Richtlinien"
    End With
    Unload frmStudienplan
    Application.ScreenUpdating = True
End Sub

Private Sub cmdInfo_Click()
'--------------------------------------------------------------------------
'Laden und anzeigen des Userinfo-Formulars
'Letzte Änderung    17.11.2000,MNL
'--------------------------------------------------------------------------
    Load frmUserinfo
    frmUserinfo.Show
End Sub

Private Sub optDialogD_Click()
'--------------------------------------------------------------------------
'Dialogsprache auf deutsch umschalten
'Letzte Änderung    17.11.2000,MNL
'--------------------------------------------------------------------------
    lblStudienNr.Caption = "Studie Nr."
    lblStudientitel.Caption = "Studientitel"
    lblProjekt.Caption = "Projekt"
    lblTestgegenstand.Caption = "Testgegenstand"
    lblStudienleiter.Caption = "Studienleiter"
    cmdInfo.Caption = "Anwender Info"
    cmdAbbrechen.Caption = "Abbrechen"
    optDialogD.Caption = "Deutsch"
    optDialogE.Caption = "Englisch"
    fraBericht.Caption = "Studienplan"
    fraDialog.Caption = "Dialog"
    optGlpJ.Caption = "Ja"
    optGlpN.Caption = "Nein"
    strdialog = "d"
    SaveSetting "ZLB", "Dokumentvorlagen", "DialogSprache", strdialog
End Sub

Private Sub optDialogE_Click()
'--------------------------------------------------------------------------
'Dialogsprache auf englisch umschalten
'Letzte Änderung    17.11.2000,MNL
'--------------------------------------------------------------------------
    lblStudienNr.Caption = "Study number"
    lblStudientitel.Caption = "Study title"
    lblProjekt.Caption = "Project"
    lblTestgegenstand.Caption = "Test article"
    lblStudienleiter.Caption = "Study director"
    cmdInfo.Caption = "User Info"
    cmdAbbrechen.Caption = "Cancel"
    cmdAbbrechen.Accelerator = "C"
    optDialogD.Caption = "German"
    optDialogE.Caption = "English"
    fraBericht.Caption = "Study plan"
    fraDialog.Caption = "Dialogue"
    optGlpJ.Caption = "Yes"
    optGlpN.Caption = "No"
    strdialog = "e"
    SaveSetting "ZLB", "Dokumentvorlagen", "DialogSprache", strdialog
End Sub

Private Sub UserForm_Activate()
strdialog = GetSetting("ZLB", "Dokumentvorlagen", "DialogSprache", strdialog)
    If strdialog = "d" Then
        optDialogD.Value = True
    ElseIf strdialog = "e" Then
        optDialogE.Value = True
    End If
    txtStudienNr.SetFocus
End Sub




Every macro is kind of a different code...but i don't really know too much about macros.... see if you understand something...

Tenks
Seeing nothing in filemon is unusual.  Normally you get such minute detail it's like drinking from a firehose.  Play with it a bit (it makes no changes to anything).
Hi,

Your code seems to do very little when the document is opened.
Only 2 things seem to be able to cause trouble here.
The first is the GetSetting function. But since you state that without a network connection everything goes fine, I doubt this will be the troublemaker.

The other thing that triggers me is:
ThisDocument.AttachedTemplate.AutoTextEntries("StudyplanGlpD")

Apparently the documents have a special template attached. shutdown Word, rename this template and open such a document. Does this make any difference? If so, the template seems the quilty one in here.

Kind regards
I have the Filemon result on two different workstation...

The first one::::::


1      10:28:32      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      Options: Open Directory  Access: Traverse      
2      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\      SUCCESS      Options: Open  Access: All      
3      10:28:32      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\      SUCCESS      FileBasicInformation      
4      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\      SUCCESS            
5      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates      SUCCESS      Options: Open  Access: All      
6      10:28:32      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates      SUCCESS      FileBasicInformation      
7      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates      SUCCESS            
8      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\      SUCCESS      Options: Open  Access: All      
9      10:28:32      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\      SUCCESS      FileBasicInformation      
10      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\      SUCCESS            
11      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
12      10:28:32      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\Normal.dot      SUCCESS      FileBasicInformation      
13      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\Normal.dot      SUCCESS            
14      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\      SUCCESS      Options: Open Directory  Access: All      
15      10:28:32      WINWORD.EXE:3024      DIRECTORY      \\euchbrnprn01\templates\      SUCCESS      FileBothDirectoryInformation: Normal.dot      
16      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\      SUCCESS            
17      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
18      10:28:32      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\Normal.dot      SUCCESS      FileBasicInformation      
19      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\Normal.dot      SUCCESS            
20      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\      SUCCESS      Options: Open Directory  Access: All      
21      10:28:32      WINWORD.EXE:3024      DIRECTORY      \\euchbrnprn01\templates\      SUCCESS      FileBothDirectoryInformation: Normal.dot      
22      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\      SUCCESS            
23      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
24      10:28:32      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\Normal.dot      SUCCESS      FileBasicInformation      
25      10:28:32      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\Normal.dot      SUCCESS            
26      10:28:32      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SHARING VIOLATION      Options: Open  Access: All      
27      10:28:33      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
28      10:28:33      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\Normal.dot      SUCCESS      FileBasicInformation      
29      10:28:33      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\Normal.dot      SUCCESS            
30      10:28:33      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
31      10:28:33      WINWORD.EXE:3024      LOCK      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Offset: 2147483538 Length: 1      
32      10:28:33      WINWORD.EXE:3024      LOCK      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Offset: 2147483559 Length: 20      
33      10:28:33      WINWORD.EXE:3024      UNLOCK      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Offset: 2147483559 Length: 20      
34      10:28:33      WINWORD.EXE:3024      LOCK      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Offset: 2147483579 Length: 20      
35      10:28:33      WINWORD.EXE:3024      UNLOCK      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Offset: 2147483579 Length: 20      
36      10:28:33      WINWORD.EXE:3024      UNLOCK      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Offset: 2147483538 Length: 1      
37      10:28:33      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
38      10:28:33      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\Normal.dot      SUCCESS      FileBasicInformation      
39      10:28:33      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\Normal.dot      SUCCESS            
40      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\foo      FILE NOT FOUND      Options: Open  Access: All      
41      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\foo      FILE NOT FOUND      Options: Open  Access: All      
42      10:28:34      WINWORD.EXE:3024      OPEN      \\euchbrnfil01\Collins.Onyejese$\MyProfile\MyDesktop      SUCCESS      Options: Open  Access: All      
43      10:28:34      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnfil01\Collins.Onyejese$\MyProfile\MyDesktop      SUCCESS      FileBasicInformation      
44      10:28:34      WINWORD.EXE:3024      CLOSE      \\euchbrnfil01\Collins.Onyejese$\MyProfile\MyDesktop      SUCCESS            
45      10:28:34      WINWORD.EXE:3024      OPEN      \\euchbrnfil01\Collins.Onyejese$\      SUCCESS      Options: Open Directory  Access: All      
46      10:28:34      WINWORD.EXE:3024      DIRECTORY      \\euchbrnfil01\Collins.Onyejese$\      SUCCESS      FileBothDirectoryInformation: MyProfile      
47      10:28:34      WINWORD.EXE:3024      CLOSE      \\euchbrnfil01\Collins.Onyejese$\      SUCCESS            
48      10:28:34      WINWORD.EXE:3024      OPEN      \\euchbrnfil01\Collins.Onyejese$\MyProfile\      SUCCESS      Options: Open Directory  Access: All      
49      10:28:34      WINWORD.EXE:3024      DIRECTORY      \\euchbrnfil01\Collins.Onyejese$\MyProfile\      SUCCESS      FileBothDirectoryInformation: MyDesktop      
50      10:28:34      WINWORD.EXE:3024      CLOSE      \\euchbrnfil01\Collins.Onyejese$\MyProfile\      SUCCESS            
51      10:28:34      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open  Access: All      
52      10:28:34      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
53      10:28:34      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open Directory  Access: All      
54      10:28:34      WINWORD.EXE:3024      DIRECTORY      K:\      SUCCESS      FileBothDirectoryInformation: Bioplasma      
55      10:28:34      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
56      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\      SUCCESS      Options: Open Directory  Access: All      
57      10:28:34      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\      SUCCESS      FileBothDirectoryInformation: Production      
58      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\      SUCCESS            
59      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\      SUCCESS      Options: Open Directory  Access: All      
60      10:28:34      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\      SUCCESS      FileBothDirectoryInformation: PPS      
61      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\      SUCCESS            
62      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\      SUCCESS      Options: Open Directory  Access: All      
63      10:28:34      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\      SUCCESS      FileBothDirectoryInformation: Aufträge_P+V      
64      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\      SUCCESS            
65      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      Options: Open Directory  Access: All      
66      10:28:34      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      FileBothDirectoryInformation: Aufträge P. in Bearbeitung      
67      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS            
68      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      Options: Open Directory  Access: All      
69      10:28:34      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      FileBothDirectoryInformation: P.04646.002_old.doc      
70      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS            
71      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      Options: Open Directory  Access: All      
72      10:28:34      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      FileBothDirectoryInformation: P.04646.002_old.doc      
73      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS            
74      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
75      10:28:34      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
76      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
77      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
78      10:28:34      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
79      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
80      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
81      10:28:34      WINWORD.EXE:3024      READ       K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 0 Length: 512      
82      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483538 Length: 1      
83      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483559 Length: 20      
84      10:28:34      WINWORD.EXE:3024      UNLOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483559 Length: 20      
85      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483579 Length: 20      
86      10:28:34      WINWORD.EXE:3024      UNLOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483579 Length: 20      
87      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483599 Length: 20      
88      10:28:34      WINWORD.EXE:3024      UNLOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483599 Length: 20      
89      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483539 Length: 1      
90      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483559 Length: 1      
91      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483579 Length: 1      
92      10:28:34      WINWORD.EXE:3024      LOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483599 Length: 1      
93      10:28:34      WINWORD.EXE:3024      UNLOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483579 Length: 1      
94      10:28:34      WINWORD.EXE:3024      UNLOCK      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 2147483538 Length: 1      
95      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 0 Length: 512      
96      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 48640 Length: 512      
97      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 49152 Length: 512      
98      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 49664 Length: 512      
99      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
100      10:28:34      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
101      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
102      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 512 Length: 4096      
103      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 34816 Length: 4096      
104      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 38912 Length: 1350      
105      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\~$04646.002_old.doc      SUCCESS      Options: Open  Access: All      
106      10:28:34      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\~$04646.002_old.doc      SUCCESS      FileBasicInformation      
107      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\~$04646.002_old.doc      SUCCESS            
108      10:28:34      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\~$04646.002_old.doc      SUCCESS      Options: Open  Access: All      
109      10:28:34      WINWORD.EXE:3024      READ       K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\~$04646.002_old.doc      SUCCESS      Offset: 0 Length: 24      
110      10:28:34      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\~$04646.002_old.doc      SUCCESS            
111      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 29184 Length: 4096      
112      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 33280 Length: 1536      
113      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 28160 Length: 1024      
114      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 20992 Length: 821      
115      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 19456 Length: 1536      
116      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 6144 Length: 256      
117      10:28:34      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 18432 Length: 1024      
118      10:32:04      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
119      10:32:04      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
120      10:32:04      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
121      10:32:04      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
122      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      Options: Open  Access: All      
123      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      FileBasicInformation      
124      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS            
125      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
126      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
127      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 44544 Length: 4096      
128      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 7168 Length: 4096      
129      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 17920 Length: 512      
130      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 5632 Length: 512      
131      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 6656 Length: 512      
132      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 22016 Length: 4096      
133      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 11264 Length: 4096      
134      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 18944 Length: 512      
135      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 27136 Length: 799      
136      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 15360 Length: 2560      
137      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 26112 Length: 1024      
138      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 4608 Length: 1024      
139      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 18432 Length: 512      
140      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 27136 Length: 512      
141      10:32:25      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 5632 Length: 256      
142      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open  Access: All      
143      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
144      10:32:25      WINWORD.EXE:3024      OPEN      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
145      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      INVALID PARAMETER      FileNetworkOpenInformation      
146      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
147      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileStandardInformation      
148      10:32:25      WINWORD.EXE:3024      CLOSE      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
149      10:32:25      WINWORD.EXE:3024      OPEN      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
150      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
151      10:32:25      WINWORD.EXE:3024      CLOSE      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
152      10:32:25      WINWORD.EXE:3024      OPEN      \\EUCHBRNFIL01\Data\      SUCCESS      Options: Open Directory  Access: All      
153      10:32:25      WINWORD.EXE:3024      DIRECTORY      \\EUCHBRNFIL01\Data\      SUCCESS      FileBothDirectoryInformation: Bioplasma      
154      10:32:25      WINWORD.EXE:3024      CLOSE      \\EUCHBRNFIL01\Data\      SUCCESS            
155      10:32:25      WINWORD.EXE:3024      OPEN      \\EUCHBRNFIL01\Data\Bioplasma\      SUCCESS      Options: Open Directory  Access: All      
156      10:32:25      WINWORD.EXE:3024      DIRECTORY      \\EUCHBRNFIL01\Data\Bioplasma\      SUCCESS      FileBothDirectoryInformation: Production      
157      10:32:25      WINWORD.EXE:3024      CLOSE      \\EUCHBRNFIL01\Data\Bioplasma\      SUCCESS            
158      10:32:25      WINWORD.EXE:3024      OPEN      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\      SUCCESS      Options: Open Directory  Access: All      
159      10:32:25      WINWORD.EXE:3024      DIRECTORY      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\      SUCCESS      FileBothDirectoryInformation: Aufträge_P+V      
160      10:32:25      WINWORD.EXE:3024      CLOSE      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\      SUCCESS            
161      10:32:25      WINWORD.EXE:3024      OPEN      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      Options: Open Directory  Access: All      
162      10:32:25      WINWORD.EXE:3024      DIRECTORY      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      FileBothDirectoryInformation: Aufträge P. in Bearbeitung      
163      10:32:25      WINWORD.EXE:3024      CLOSE      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS            
164      10:32:25      WINWORD.EXE:3024      OPEN      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      Options: Open Directory  Access: All      
165      10:32:25      WINWORD.EXE:3024      DIRECTORY      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      FileBothDirectoryInformation: P.04646.002_old.doc      
166      10:32:25      WINWORD.EXE:3024      CLOSE      \\EUCHBRNFIL01\Data\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS            
167      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open  Access: All      
168      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
169      10:32:25      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
170      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\Normal.dot      SUCCESS      FileNetworkOpenInformation      
171      10:32:25      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\Normal.dot      SUCCESS            
172      10:32:25      WINWORD.EXE:3024      OPEN      \\euchbrnprn01\templates\Normal.dot      SUCCESS      Options: Open  Access: All      
173      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnprn01\templates\Normal.dot      SUCCESS      FileBasicInformation      
174      10:32:25      WINWORD.EXE:3024      CLOSE      \\euchbrnprn01\templates\Normal.dot      SUCCESS            
175      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
176      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
177      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
178      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      Options: Open  Access: All      
179      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      FileBasicInformation      
180      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS            
181      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open  Access: All      
182      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
183      10:32:25      WINWORD.EXE:3024      OPEN      \\euchbrnfil01\Collins.Onyejese$\MyProfile\MyDesktop\      SUCCESS      Options: Open  Access: All      
184      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      \\euchbrnfil01\Collins.Onyejese$\MyProfile\MyDesktop\      SUCCESS      FileBasicInformation      
185      10:32:25      WINWORD.EXE:3024      CLOSE      \\euchbrnfil01\Collins.Onyejese$\MyProfile\MyDesktop\      SUCCESS            
186      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Microsoft Shared      FILE NOT FOUND      Options: Open  Access: All      
187      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open Directory  Access: All      
188      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
189      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
190      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
191      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
192      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open Directory  Access: All      
193      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\      SUCCESS      FileBothDirectoryInformation: Bioplasma      
194      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
195      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\      SUCCESS      Options: Open Directory  Access: All      
196      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\      SUCCESS      FileBothDirectoryInformation: Production      
197      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\      SUCCESS            
198      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\      SUCCESS      Options: Open Directory  Access: All      
199      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\      SUCCESS      FileBothDirectoryInformation: PPS      
200      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\      SUCCESS            
201      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\      SUCCESS      Options: Open Directory  Access: All      
202      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\      SUCCESS      FileBothDirectoryInformation: Aufträge_P+V      
203      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\      SUCCESS            
204      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      Options: Open Directory  Access: All      
205      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      FileBothDirectoryInformation: Aufträge P. in Bearbeitung      
206      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS            
207      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      Options: Open Directory  Access: All      
208      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS      FileBothDirectoryInformation: P.04646.002_old.doc      
209      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\      SUCCESS            
210      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open  Access: All      
211      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
212      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
213      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
214      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open Directory  Access: All      
215      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
216      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Options: Open  Access: All      
217      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      FileBasicInformation      
218      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS            
219      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open Directory  Access: All      
220      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
221      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      Options: Open  Access: All      
222      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      FileBasicInformation      
223      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS            
224      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open Directory  Access: All      
225      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\      SUCCESS      FileBothDirectoryInformation: Bioplasma      
226      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
227      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\      SUCCESS      Options: Open Directory  Access: All      
228      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\      SUCCESS      FileBothDirectoryInformation: Production      
229      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\      SUCCESS            
230      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\      SUCCESS      Options: Open Directory  Access: All      
231      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\      SUCCESS      FileBothDirectoryInformation: PPS      
232      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\      SUCCESS            
233      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\      SUCCESS      Options: Open Directory  Access: All      
234      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\      SUCCESS      FileBothDirectoryInformation: Aufträge_P+V      
235      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\      SUCCESS            
236      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      Options: Open Directory  Access: All      
237      10:32:25      WINWORD.EXE:3024      DIRECTORY      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS      FileBothDirectoryInformation: Aufträge P. in Bearbeitung      
238      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\      SUCCESS            
239      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open  Access: All      
240      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
241      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      Options: Open  Access: All      
242      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS            
243      10:32:25      WINWORD.EXE:3024      OPEN      K:\      SUCCESS      Options: Open Directory  Access: All      
244      10:32:25      WINWORD.EXE:3024      CLOSE      K:\      SUCCESS            
245      10:32:25      WINWORD.EXE:3024      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      Options: Open  Access: All      
246      10:32:25      WINWORD.EXE:3024      QUERY INFORMATION      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      FileBasicInformation      
247      10:32:25      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS            
248      10:32:27      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 26112 Length: 512      
249      10:32:31      WINWORD.EXE:3024      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.04646.002_old.doc      SUCCESS      Offset: 40448 Length: 4096      
250      10:32:31      WINWORD.EXE:3024      CLOSE      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung      SUCCESS      

The second one::::::

848      11:14:21      WINWORD.EXE:1548      OPEN      C:\PROGRA~1\COMMON~1\MICROS~1\SMARTT~1\      SUCCESS      Options: Open Directory  Access: All      
849      11:14:21      WINWORD.EXE:1548      DIRECTORY      C:\PROGRA~1\COMMON~1\MICROS~1\SMARTT~1\      SUCCESS      FileBothDirectoryInformation: MOFL.DLL      
850      11:14:21      WINWORD.EXE:1548      CLOSE      C:\PROGRA~1\COMMON~1\MICROS~1\SMARTT~1\      SUCCESS            
851      11:14:21      WINWORD.EXE:1548      OPEN      C:\PROGRA~1\COMMON~1\MICROS~1\SMARTT~1\      SUCCESS      Options: Open Directory  Access: All      
852      11:14:21      WINWORD.EXE:1548      DIRECTORY      C:\PROGRA~1\COMMON~1\MICROS~1\SMARTT~1\      SUCCESS      FileBothDirectoryInformation: FDATE.DLL      
853      11:14:21      WINWORD.EXE:1548      CLOSE      C:\PROGRA~1\COMMON~1\MICROS~1\SMARTT~1\      SUCCESS            
854      11:14:42      WINWORD.EXE:1548      QUERY INFORMATION      C:\WINNT\System32\ntlanman.dll      SUCCESS      Attributes: A      
855      11:14:42      WINWORD.EXE:1548      OPEN      C:\      SUCCESS      Options: Open Directory  Access: All      
856      11:14:42      WINWORD.EXE:1548      CLOSE      C:\      SUCCESS            
857      11:14:42      WINWORD.EXE:1548      OPEN      E:\      SUCCESS      Options: Open Directory  Access: All      
858      11:14:42      WINWORD.EXE:1548      CLOSE      E:\      SUCCESS            
859      11:14:42      WINWORD.EXE:1548      QUERY INFORMATION      C:\WINNT\system32\shell32.dll      SUCCESS      Attributes: A      
860      11:14:42      WINWORD.EXE:1548      QUERY INFORMATION      C:\Documents and Settings\franziska.eicher\Local Settings\Temporary Internet Files\OLK413\Zlb_Protokoll_2000.dot      FILE NOT FOUND      Attributes: Error      
861      11:14:42      WINWORD.EXE:1548      QUERY INFORMATION      C:\Documents and Settings\franziska.eicher\Local Settings\Temporary Internet Files\OLK413\Zlb_Protokoll_2000.dot      FILE NOT FOUND      Attributes: Error      
862      11:14:42      WINWORD.EXE:1548      OPEN      H:\templates      SUCCESS      Options: Open  Access: All      
863      11:14:42      WINWORD.EXE:1548      QUERY INFORMATION      H:\templates      SUCCESS      FileBasicInformation      
864      11:14:42      WINWORD.EXE:1548      CLOSE      H:\templates      SUCCESS            
865      11:14:42      WINWORD.EXE:1548      OPEN      H:\templates\Zlb_Protokoll_2000.dot      FILE NOT FOUND      Options: Open  Access: All      
866      11:14:42      WINWORD.EXE:1548      OPEN      H:\templates\Zlb_Protokoll_2000.dot      FILE NOT FOUND      Options: Open  Access: All      
867      11:14:42      WINWORD.EXE:1548      OPEN      \\euchbrnprn01\templates      SUCCESS      Options: Open  Access: All      
868      11:14:42      WINWORD.EXE:1548      READ       C:\WINNT\CSC\00000001      SUCCESS      Offset: 0 Length: 4096      
869      11:14:42      WINWORD.EXE:1548      QUERY INFORMATION      \\euchbrnprn01\templates      SUCCESS      FileBasicInformation      


I hope somebody can help me ! ! ! !

Tenks
      
Regarding ro my remarks about an eventually missing template, this line (lines, there are more) triggers me

119     10:32:04     WINWORD.EXE:3024     OPEN     K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot     FILE NOT FOUND     Options: Open  Access: All    

Seems like the template Zlb_Universal.dot is missing?

Kind regards
Check out this one :::::


115      12:00:31      WINWORD.EXE:3992      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.05267.002.doc      SUCCESS      Offset: 22016 Length: 2560      
116      12:01:55      WINWORD.EXE:3992      OPEN      H:\      SUCCESS      Options: Open  Access: All      
117      12:01:55      WINWORD.EXE:3992      CLOSE      H:\      SUCCESS            
118      12:04:01      WINWORD.EXE:3992      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
119      12:04:01      WINWORD.EXE:3992      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
120      12:04:01      WINWORD.EXE:3992      OPEN      \\euchbrnprn01\templates\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
121      12:04:01      WINWORD.EXE:3992      OPEN      \\euchbrnprn01\templates\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All


Tenks
I meant this one... i created the ZLb_Universal.dot but still no progress....

Thanks...

13:45:42      WINWORD.EXE:1196      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.05267.002.doc      SUCCESS      Offset: 24576 Length: 1333      
13:45:42      WINWORD.EXE:1196      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.05267.002.doc      SUCCESS      Offset: 6400 Length: 256      
13:45:42      WINWORD.EXE:1196      READ      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\P.05267.002.doc      SUCCESS      Offset: 22016 Length: 2560      
13:47:06      WINWORD.EXE:1196      OPEN      H:\      SUCCESS      Options: Open  Access: All      
13:47:06      WINWORD.EXE:1196      CLOSE      H:\      SUCCESS            
13:49:12      WINWORD.EXE:1196      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
13:49:12      WINWORD.EXE:1196      OPEN      K:\Bioplasma\Production\PPS\Aufträge_P+V\Aufträge P. in Bearbeitung\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
13:49:12      WINWORD.EXE:1196      OPEN      \\euchbrnprn01\templates\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
13:49:12      WINWORD.EXE:1196      OPEN      \\euchbrnprn01\templates\Zlb_Universal.dot      FILE NOT FOUND      Options: Open  Access: All      
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Yes man! ! ! ! you are absolutely right.... when i open the documents that are taking me between 20sec.-4mins...i find out that they are looking for a template and server that doesn't exist anylonger.. ((tools>>Templates and add-ins))
so when i delete this path and write "normal" or save the document then the problem is solved .... now do you know how i can be able to change all the documents over 4,000 at once???....


cheers for now,


Tenks..
Sorry over 40,000 docs... i meant
At once?

For doing it at once, you need magic, but I guess you mean automatically? ;-)

Create a VBA macro that does it for you.

Are all docs in the same directory?
Auch, missed your latest post.

Are you telling me that all 40000 docs are based on that very same template?

Kind regards.
most of them are on two or three old servers ...yeah automatically i meant...
 
Well, the basic code you'll need is something similar to:

    With ActiveDocument
        .UpdateStylesOnOpen = False
        .AttachedTemplate = _
            "C:\Documents and Settings\user\Application Data\Microsoft\Templates\Normal.dot"
    End With

But looping through them - I'd have to research.  I know there's some post here loping through all documents in a directory and running code.  Are they all in one directory?

For as far as the docs are in 1 directory, you can use the code beneath.
Go to the VBA editor and in an empty module (empty docment?) paste this code.

Now change the constant cstrPath to the path where the documents are. Make sure the last character of this path is a \

This routine can of course be rewritten to crawl an entire disc for Word documents, but I think that should be subject to another question here on EE.



Sub ResetAllTemplates()

Const cstrTemplate As String = "Zlb_Universal.dot"
Const cstrPath As String = "C:\temp\"
Dim strFile As String
Dim docDocument As Document
Dim lngCounter As Long

Application.ScreenUpdating = False
iCounter = 0
strFile = Dir(cstrPath & "*.doc")
Do While strFile > ""
  Set docDocument = Application.Documents.Open(FileName:=cstrPath & strFile)
  If uCase(docDocument.AttachedTemplate) = uCase(cstrTemplate) Then
    docDocument.AttachedTemplate = "normal.dot"
    lngCounter = lngCounter + 1
    docDocument.Save
  End If
  docDocument.Close
  strFile = Dir
Loop
Application.ScreenUpdating = True
MsgBox "Prozedur beendet," & vbNewLine & CStr(lngCounter) & " datei behandelt.", vbInformation
End Sub



Good luck with it.
Kind regards
Very nice ehout!
How about the templates with macros?? or the once that don't have "Zlb_Universal.dot" e.g "Bericht.dot"...???

Thanx JOr

agbor1960:
Depends what you want...
The line Const cstrTemplate As String = "Zlb_Universal.dot"

lists the template that's being searched for. If you know which templates are used, you can run the macro a second (or more) time and each time replace the filename of the template in this line.

If you do not know which templates are used, you must decide if you want to replace the template of every document to normal.dot or not. If so, this Macro can be made a bit easier.

If you want to keep the templates that DO exist, the macro can be extented with some lines which first check the availability of the template. But this will lengthen the process.

Besides again I think i would become too off topic regarding to the question (but I'ld like to hear the opinion of other experts about that).

Kind regards
I talked to my boss about the scripting idea but he ask if i can be able to use the "browsing" to set the  Time To Live to less than 5secs. in the registry...

any ideas??
I think you meant to address that to agbor Dreamboat....
You don't want to set the TTL to 5 sec.

5 sec. is not much and I guess plenty of programs would raise failures in case your network traffic is a bit high some day.
Besides it's not a solution for your problem, just a workaround.

Why not recreate the missing template by  opening an empty document, setting the preferred language and pagesize and save it as a document template to H:\templates\Zlb_Protokoll_2000.dot

Can I have the points (or some of them) for naming a free tool that monitors what happens when Word opens a file at a particular location?
For real you can have some points.....but we don't need the missing template. as i stated earlier,  they are from a very old server that are no longer in service.
ehout do you think the 5sec. is too small and might raise more problem?? but do you know where i can set the TTL just for testing purpose??

Thanks
Do you think that this VBS is definitely the solution and the path is the only problem?? how about the documents with macro ?? and we have them a lot.. how can we change those ones...
That's not my intenstion i just need an answer i will give out the points as soon as i get the answers that am looking for....
actually the questions where supposed to be different, if you read it well... BTW i will be giving out both points...

Thanks for the information...
Well, actually I don't know. I'm not even sure there is such a central setting. Very often programmers define these setting themselves when using an API function. They then pass such a thing as a timeout parameter to the fucntion they call. For example have a look at a simple tool like ping. Even here you can supply the TTL yourselves. SO I'm not sure there is such a central setting. Maybe the experts in the OS areas know more on this subject?

Back to the documents: Macros are no problem as long as they are not autostart and autoexit macros (called autoopen or document.open). These are fired when the document is opened or closed and thus interrupt your automatic process. I am not sure if such a document can programmatically be opened bypassing these macros. If you're using a recent Word version you could check the more advanced macro protection. I think Dreamboat or one of the other Gurus here can tell you more about that.

Assuming bypassing the macros is not possible: Maybe you should randomly pick some documents to see if such macro's are there. If there are too many of them, further look for a solution. If there are only a few, have the process run (with 40000 documents, this will surely last some time) on a seperate pc with monitor and keep an eye on it while doing some other work as soon as you see your process halted by a messagebox just click it away. If the process is halted by a VBA errormessage, debug the thing and step over the lines that cause trouble. You don't need the functionality right now.

Of course this requires some effort on your side, but I think it's the best you can hope for. If this is too much work, I'ld ask your boss to hire a skilled VBA programmer and program the thing completely. He or she then can also program the thing so that it searches the entire disc.

Kind regards.
I tried to ping the Servers  and i saw there was still some DNS entries in one site that we are not using anymore so i deleted this entry, now is fine it takes about 3sec...

Thanks to all you for your efforts....

Cheers
Behold your central TTL ;-)

Kind regards