Office 2003+2007, script to take away the acl's for suffix .doc .ppt .xls

for a better understanding…
we have permissions problems with saving from microsoft office 2003 + 2007 on a server volume (osx server 10.5.5).
if a user saves a document one a share, there are added some strange acl like everyone and stuff, and with every 'ctrl+save' there are duplicated…
more information you will find in this link http://discussions.apple.com/thread.jspa?messageID=8073847
for this reason I tried to write a .sh script which a liked to use as a folderaction script (automator)
I would like use crontab, but seams that doesn't work under 10.5 !!!
if I call the .sh in the app. terminal it seams to work, even if there shows up some error message for each founded file
"chmod: Failed to clear ACL on file *.doc: No such file or directory"
the mkdir gugu I putted in there to make sure, that the script is going in the correct dir
with the automator, this script doesn't work, I guess it is because the failed message …
there is the hole script
#!/bin/sh
pfad="/Volumes/datatrunk/test/"
cd "$pfad"
find . -name "*.xls" -exec chown fileserver {} \;
find . -name "*.xls" -exec chmod 755 {} \;
find . -name "*.xls" -exec chmod -N *.xls {} \;
find . -name "*.xls" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
find . -name "*.xls" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
find . -name "*.doc" -exec chown fileserver {} \;
find . -name "*.doc" -exec chmod 755 {} \;
find . -name "*.doc" -exec chmod -N *.doc {} \;
find . -name "*.doc" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
find . -name "*.doc" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
find . -name "*.ppt" -exec chown fileserver {} \;
find . -name "*.ppt" -exec chmod 755 {} \;
find . -name "*.ppt" -exec chmod -N *.ppt {} \;
find . -name "*.ppt" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
find . -name "*.ppt" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
find . -name "*.pdf" -exec chown fileserver {} \;
find . -name "*.pdf" -exec chmod 755 {} \;
find . -name "*.pdf" -exec chmod -N *.pdf {} \;
find . -name "*.pdf" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
find . -name "*.pdf" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
mkdir gugu
any help would be grateful

Hi
Cron does still work in 10.5, however its better if you use launchd. If you're not comfortable with launchctl then you could use Lingon instead? This provides a graphical interface for launchd and is freely available. Google for an appropriate download site or use this link:
http://mac.softpedia.com/get/System-Utilities/Lingon.shtml
For assistance with the script you could cross-post over in the Technologies Forum? You might get a better/quicker response:
http://discussions.apple.com/category.jspa?categoryID=162
http://discussions.apple.com/forum.jspa?forumID=724
http://discussions.apple.com/forum.jspa?forumID=735
Tony

Similar Messages

  • Script to take away the acl's for suffix .doc .ppt .xls

    for a better understandin for wath I'm looking
    we have permissions problems with saving from microsoft office 2003 + 2007 on a server volume (osx server 10.5.5).
    if a user saves a document one a share, there are added some strange acl like everyone and stuff, and with every 'ctrl+save' there are duplicated…
    more information you will find in this link http://discussions.apple.com/thread.jspa?messageID=8073847
    http://discussions.apple.com/message.jspa?messageID=9280526
    for this reason I tried to write a .sh script which a liked to use as a folderaction script (automator)
    or let it run every 10 minutes with Lingon
    if I call the .sh in the app. terminal it seams to work, even if there shows up some error message for each founded file
    "chmod: Failed to clear ACL on file *.doc: No such file or directory"
    with the automator, this script doesn't work, I guess it is because the failed message …
    the same behavior with the Lingon tool…
    there is the hole script
    #!/bin/sh
    pfad="/Volumes/datatrunk/test/"
    cd "$pfad"
    find . -name "*.xls" -exec chown fileserver {} \;
    find . -name "*.xls" -exec chmod 755 {} \;
    find . -name "*.xls" -exec chmod -N *.xls {} \;
    find . -name "*.xls" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.xls" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.doc" -exec chown fileserver {} \;
    find . -name "*.doc" -exec chmod 755 {} \;
    find . -name "*.doc" -exec chmod -N *.doc {} \;
    find . -name "*.doc" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.doc" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.ppt" -exec chown fileserver {} \;
    find . -name "*.ppt" -exec chmod 755 {} \;
    find . -name "*.ppt" -exec chmod -N *.ppt {} \;
    find . -name "*.ppt" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.ppt" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.pdf" -exec chown fileserver {} \;
    find . -name "*.pdf" -exec chmod 755 {} \;
    find . -name "*.pdf" -exec chmod -N *.pdf {} \;
    find . -name "*.pdf" -exec chmod +ai "tbsxgl allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    find . -name "*.pdf" -exec chmod +ai "fileserver allow list,addfile,search,delete,add_subdirectory,delete_child,readattr,writeattr,readextattr, writeextattr,readsecurity,writesecurity,chown,file_inherit,directoryinherit" {} \;
    any help would be grateful

    it's exactly what going on !
    yes, it's an osx server 10.5.5 with 4 shares with different ACL settings
    well I don't know use watchpaths how does it works ?
    that's the script which the lingon.app for me build.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>KeepAlive</key>
    <true/>
    <key>Label</key>
    <string>com.acl_script.kunden</string>
    <key>ProgramArguments</key>
    <array>
    <string>/Volumes/datatrunk/aclscripte/acl_scriptkunden.sh</string>
    </array>
    <key>StartInterval</key>
    <integer>180</integer>
    </dict>
    </plist>
    would it work like this… but how can I handle the 4 different scripts ?!
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>aclright</string>
    <key>ProgramArguments</key>
    <array>
    <string>/Volumes/datatrunk/aclscripte/aclscript.sh</string>
    </array>
    <key>WatchPaths</key>
    <array>
    <string>/Volumes/datatrunk/share1</string>
    </array>
    </dict>
    </plist>

  • Why did they take away the playlist feature for movies and tv shows?

    The subject line pretty much sums it up but does anyone know why they took it away? It was seriously the greatest thing ever with my kid's tv shows. I could just turn on the playlist and they could watch a few episodes back to back without having to mess with the remote.

    I don't think they have.
    A recent software update may have reset your Settings which by default is playlists only for music.
    Check AppleTV Setting menus and enable playlists for all not just music.
    Let me know if you can't find the setting in the menu.
    AC

  • Why did you take away adobe flash player for mobile

    you people are the worst people ever and pathetic don't you people realize that 90% of people have a cell phone and like very much to play on them but no here comes adobe and takes away the flash player for mobile and makes all of people very unhappy but who cares about the people especially adobe idiots as long as they are getting paid for disappointing thousands of people they do not care what they think or do even if it does hurt the people that use the adobe flash player alot I am very pissed a I have alot of games on my phone like I love playing but of course thanks to the jerks at adobe I cant play them because I need adobe flash player for mobile but cant get it I want something done about this don't care how long it takes but it needs to be fixed not only for me but for the other people that are pissed off just like me I have a windows 8.1 phone I want to hear from someone asap about this

    An Update on Flash Player and Android

  • Print spooler log error ID 808 [Internet Explorer 11 + MS Office 2003-2007 x86 on Win7 sp1 x64 ONLY!]

    howdy all,
    could you please help me to resovle the very much odd issue of IE11 on Win7sp1x64 as below.
    Note: my original post @ MS support is here [oops, sorry, I'm not allowed to paste a normal link here] "http://answers.microsoft.com/en-us/ie/forum/ie11-windows_7/print-spooler-error-id-808-internet-explorer-11-on/f52ff25c-4702-4ce3-827e-e1e9a5d324cf"
    and now it's a repost due to advice of MS MVP PA Bear.
    SUMMARY:
    my 1st post there:
    howdy all pros around,
    i'd much appreciate any pro advice concerning the absolutely odd printer spooler issue as below.
    sorry to post this again when there are a lot of look same cases available posted and discussed but now i shall insist that this is niether a printer driver nor a ms win7 spooler itself issue but the one of solely Internet Explorer 11
    [11.0.9600.17041] installed onto fully updated Win7sp1x64(!) when i have 3 win7sp1 machines around and this issue doesn't occur on single 32-bit win7 pc!
    the funniest point is that the issue doesn't prevent  both win7sp1x64 computers to print normally!
    also this never occurs while printing any docs or even web pages from Google Chrome.
    but it always appears in win7 admin logs twice(!) while printing any web page from IE11! although there is no problem if you print web page from IE11 to PDF file...
    this never happened with IE8 before its update thru MS Update to IE11 a couple of days ago.
    error in short:
    The print spooler failed to load a plug-in module C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL, error code 0xc1. See the event user data for context information.
    error in details:
    Log Name:      Microsoft-Windows-PrintService/Admin
    Source:        Microsoft-Windows-PrintService
    Date:          2014-Jun-01 8:19:51 PM
    Event ID:      808
    Task Category: Initializing
    Level:         Error
    Keywords:      Print Spooler
    User:          .......
    Computer:      ...... PC
    Description:
    The print spooler failed to load a plug-in module C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL, error code 0xc1. See the event user data for context information.
    Event Xml:
    < Event xmlns=
      <System>
        <Provider Name="Microsoft-Windows-PrintService" Guid="{747EF6FD-E535-4D16-B510-42C90F6873A1}" />
        <EventID>808</EventID>
        <Version>0</Version>
        <Level>2</Level>
        <Task>36</Task>
        <Opcode>12</Opcode>
        <Keywords>0x8000000000020000</Keywords>
        <TimeCreated SystemTime="2014-06-01T11:19:51.957120800Z" />
        <EventRecordID>343</EventRecordID>
        <Correlation />
        <Execution ProcessID="10148" ThreadID="2188" />
        <Channel>Microsoft-Windows-PrintService/Admin</Channel>
        <Computer>...pc name...</Computer>
        <Security UserID="S-1-5-21-2467594599-1786318240-3752314299-1000" />
      </System>
      <UserData>
        <LoadPluginFailed xmlns:auto-ns3="..." xmlns="http    ...">
          <PluginDllName>C:\Windows\system32\spool\DRIVERS\x64\3\UNIDRVUI.DLL</PluginDllName>
          <ErrorCode>0xc1</ErrorCode>
          <Context>112</Context>
        </LoadPluginFailed>
      </UserData>
    < /Event>
    you shall be assured that i've carefully looked thru many threads regarding the similar issues, and i'd much appreciate any non-common advice, when all common ways like uninstall/install printer etc don't work for sure.
    thanks much
    p.s. my printer model is hp deskjet 970cse - connected to a router thru usb and installed on all 3 win7sp1 machines as a local printer via the created standard tcp/ip port.
    p.p.s. btw here are results of tool filever.exe as kindly provided long ago by Alan Morris of MS [oops, sorry, I'm not allowed to paste a normal link here] "http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/windows-7-hp-printer-problems/6833a54c-6974-4fe9-b74c-93ed879781b0?page=2"
    from one of my win7sp1x64 machines:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Users\...>filever c:\windows\system32\spool\drivers\x64\3\*.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     55,432 09-23-2012 adobepdf.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     26,768 09-23-2012 adobepdfui.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     39,048 09-23-2012 adregp.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp  1,294,472 09-23-2012 aduigp.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    623,104 11-21-2010 fxsapi.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    380,416 11-21-2010 fxsdrv.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp  6,566,400 11-21-2010 fxsres.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    434,688 11-21-2010 fxstiff.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    160,256 11-21-2010 fxsui.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    156,672 11-21-2010 fxswzrd.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    522,240 06-22-2009 hpf900al.dll
    --a-- W32x64 DLL ENU        0.20.6.0 shp  1,692,672 05-07-2008 hpfimg50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     79,872 05-07-2008 hpfud50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    134,144 06-22-2009 hpfui50.dll
    --a-- W32x64 DRV ENU  0.3.7601.18126 shp  1,402,880 04-10-2013 jnwdrv.dll
    --a-- W32x64 DRV ENU  0.3.7600.16385 shp     98,816 07-14-2009 jnwdui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    715,776 11-21-2010 mxdwdrv.dll
    --a-- W32x64 DLL ENU  0.3.7601.17514 shp    221,184 11-21-2010 mxdwdui.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     16,384 09-20-2010 oemps.dll
    --a-- W32x64 DRV ENU  0.3.6000.16386 shp    850,432 09-20-2010 ps5ui.dll
    --a-- W32x64 DRV ENU  0.3.6000.16386 shp    628,736 09-20-2010 pscript5.dll
    --a-- W32x64 DRV   -       0.3.151.3 shp     47,392 12-08-2013 tpprn.dll
    --a-- W32x64 DLL ENU     7.15.297.19 shp    172,328 12-08-2013 tpprnui.dll
    --a-- W32x64 DLL   -     7.15.297.20 shp     75,512 12-08-2013 tpprnuichs.dll
    --a-- W32x64 DLL CHT     7.15.297.21 shp     75,544 12-08-2013 tpprnuicht.dll
    --a-- W32x64 DLL   -     7.15.297.22 shp     80,208 12-08-2013 tpprnuicsy.dll
    --a-- W32x64 DLL DEU     7.15.297.23 shp     81,704 12-08-2013 tpprnuideu.dll
    --a-- W32x64 DLL   -     7.15.297.24 shp     80,200 12-08-2013 tpprnuiell.dll
    --a-- W32x64 DLL ESN     7.15.297.25 shp     80,712 12-08-2013 tpprnuiesn.dll
    --a-- W32x64 DLL   -     7.15.297.26 shp     81,208 12-08-2013 tpprnuifra.dll
    --a-- W32x64 DLL   -     7.15.297.27 shp     80,224 12-08-2013 tpprnuihun.dll
    --a-- W32x64 DLL JPN     7.15.302.41 shp     76,656 12-08-2013 tpprnuijpn.dll
    --a-- W32x64 DLL   -     7.15.297.29 shp     76,568 12-08-2013 tpprnuikor.dll
    --a-- W32x64 DLL   -     7.15.297.30 shp     80,176 12-08-2013 tpprnuiplk.dll
    --a-- W32x64 DLL   -     7.15.297.31 shp     79,680 12-08-2013 tpprnuiptg.dll
    --a-- W32x64 DLL   -     7.15.297.32 shp     80,728 12-08-2013 tpprnuirus.dll
    --a-- W32x64 DLL   -     7.15.297.33 shp     80,184 12-08-2013 tpprnuitha.dll
    --a-- W32x64 DLL   -        7.9.30.2 shp    152,816 12-08-2013 tpps.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    479,232 11-21-2010 unidrv.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    884,224 11-21-2010 unidrvui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    762,368 11-21-2010 unires.dll
    --a-- W32x64 DLL ENU  6.1.7601.17514 shp  1,576,448 11-21-2010 xpssvcs.dll
    well, as far as i can see all binaries here are x64. moreover these files are same on another x64 pc and similar on x86 one but naturally x86 and located in another folder w32x86.
    my last post there:
    oops. action replay.
    1. z printer works well (i.e. printing anyting w/o any problem) on 3 PCs - 2 of 3 with win7sp1x64; and 1 of 3 - win7sp1x86. all 3 with IE11 installed.
    2. however BOTH (that is 2 of 3) above PCs of win7sp1x64 return errors to admin log every time when printing any web page from IE11. this occurs only if printing from IE11. non of other printing jobs are affected including a printing from Google
    Chrome and Opera.
    3. win7sp1x86 PC prints from IE11 w/o any errors in log!
    4. a quote from my initial post:
    you shall be assured that i've carefully looked thru many threads regarding the similar issues, and i'd much appreciate any non-common advice, when all common ways like uninstall/install printer etc don't work for sure.
    appreciate.
    THANKS A LOT!
    UPDATE! i'm sorry to provide you with a bit incomplete/incorrect error sympthoms.
    this error is being returned to win7sp1x64 PCs print server logs not only while printing from IE11 but from MS Office 2003 & 2007 as well, however all non-MS applications to print out from (Adobe, ACDSee, Chrome, Opera, etc.) aren't affected at all.
    also test page printing is always OK! 
    so i've amended the header of my post accordingly.
    thanks again!

    howdy Karen,
    2 (two) PCs of quite similar win7sp1x64 config affected!
    sorry but your kind prompt doesn't work. i've not only tried to remove all printers except AdobePDF Converter, CANVAS PS, Fax, MS XPS Writer in common way from Devices & Printers menu but also removed all their dependencies in Printer Server config menu
    (access thru DOS printui /s /t2) except same AdobePDF Converter, CANVAS PS, MS XPS Writer (all x64 Type 3 - User Mode).
    moreover i've managed to update the troubled core component thru a manual install of HP PLC6 Universal Driver, so now its updated as below:
    Microsoft Windows [Version 6.1.7601]
    Copyright (c) 2009 Microsoft Corporation.  All rights reserved.
    C:\Users\..>printui /s /t2
    C:\Users\..>filever c:\windows\system32\spool\drivers\x64\3\*.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     55,432 09-23-2012 adobepdf.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     26,768 09-23-2012 adobepdfui.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp     39,048 09-23-2012 adregp.dll
    --a-- W32x64 DLL ENU      11.0.0.305 shp  1,294,472 09-23-2012 aduigp.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    623,104 11-21-2010 fxsapi.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    380,416 11-21-2010 fxsdrv.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp  6,566,400 11-21-2010 fxsres.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    434,688 11-21-2010 fxstiff.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    160,256 11-21-2010 fxsui.dll
    --a-- W32x64 DRV ENU  6.1.7601.17514 shp    156,672 11-21-2010 fxswzrd.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    522,240 06-23-2009 hpf900al.dll
    --a-- W32x64 DLL ENU         0.1.6.7 shp  5,263,872 05-08-2008 hpfiglhn.dll
    --a-- W32x64 DLL ENU         0.5.1.0 shp    231,936 06-23-2009 hpfime50.dll
    --a-- W32x64 DLL ENU        0.20.6.0 shp  1,692,672 05-08-2008 hpfimg50.dll
    --a-- W32x64 DLL ENU         0.4.5.0 shp     16,384 05-08-2008 hpfres50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     79,872 05-08-2008 hpfud50.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp    134,144 06-23-2009 hpfui50.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  1,485,312 06-23-2009 hpz3alhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  1,442,304 05-08-2008 hpz3rlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp    365,568 06-23-2009 hpzevlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp     88,064 06-23-2009 hpzprlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp    562,176 05-08-2008 hpzsslhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  3,447,808 05-08-2008 hpzstlhn.dll
    --a-- W32x64 DLL ENU      61.53.25.9 shp  2,414,080 06-23-2009 hpzuilhn.dll
    --a-- W32x64 DRV ENU  0.3.7601.18126 shp  1,402,880 04-10-2013 jnwdrv.dll
    --a-- W32x64 DRV ENU  0.3.7600.16385 shp     98,816 07-14-2009 jnwdui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    715,776 11-21-2010 mxdwdrv.dll
    --a-- W32x64 DLL ENU  0.3.7601.17514 shp    221,184 11-21-2010 mxdwdui.dll
    --a-- W32x64 DLL ENU         1.0.0.1 shp     16,384 09-20-2010 oemps.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    854,304 12-04-2013 ps5ui.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    636,704 12-04-2013 pscript5.dll
    --a-- W32x64 DRV   -       0.3.151.3 shp     47,392 12-08-2013 tpprn.dll
    --a-- W32x64 DLL ENU     7.15.297.19 shp    172,328 12-08-2013 tpprnui.dll
    --a-- W32x64 DLL   -     7.15.297.20 shp     75,512 12-08-2013 tpprnuichs.dll
    --a-- W32x64 DLL CHT     7.15.297.21 shp     75,544 12-08-2013 tpprnuicht.dll
    --a-- W32x64 DLL   -     7.15.297.22 shp     80,208 12-08-2013 tpprnuicsy.dll
    --a-- W32x64 DLL DEU     7.15.297.23 shp     81,704 12-08-2013 tpprnuideu.dll
    --a-- W32x64 DLL   -     7.15.297.24 shp     80,200 12-08-2013 tpprnuiell.dll
    --a-- W32x64 DLL ESN     7.15.297.25 shp     80,712 12-08-2013 tpprnuiesn.dll
    --a-- W32x64 DLL   -     7.15.297.26 shp     81,208 12-08-2013 tpprnuifra.dll
    --a-- W32x64 DLL   -     7.15.297.27 shp     80,224 12-08-2013 tpprnuihun.dll
    --a-- W32x64 DLL JPN     7.15.302.41 shp     76,656 12-08-2013 tpprnuijpn.dll
    --a-- W32x64 DLL   -     7.15.297.29 shp     76,568 12-08-2013 tpprnuikor.dll
    --a-- W32x64 DLL   -     7.15.297.30 shp     80,176 12-08-2013 tpprnuiplk.dll
    --a-- W32x64 DLL   -     7.15.297.31 shp     79,680 12-08-2013 tpprnuiptg.dll
    --a-- W32x64 DLL   -     7.15.297.32 shp     80,728 12-08-2013 tpprnuirus.dll
    --a-- W32x64 DLL   -     7.15.297.33 shp     80,184 12-08-2013 tpprnuitha.dll
    --a-- W32x64 DLL   -        7.9.30.2 shp    152,816 12-08-2013 tpps.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    485,664 12-04-2013 unidrv.dll
    --a-- W32x64 DRV ENU  0.3.7601.21853 shp    890,656 12-04-2013 unidrvui.dll
    --a-- W32x64 DRV ENU  0.3.7601.17514 shp    768,800 12-04-2013 unires.dll
    --a-- W32x64 DLL ENU  6.1.7601.17514 shp  1,576,448 11-21-2010 xpssvcs.dll
    C:\Users\..>
    than made a clean Deskjet 970ce printer install.
    same thing - test page printing OK but same error in log if print from IE11 and MS Office.
    any other ideas?
    thanks

  • RHX5 and Office 2003/2007

    Hi All,
    I am currently using RoboHelp HTML X5.0.2, MS Office 2002 and
    have Microsoft Windows Version 2002 Service Pack 2. I want to
    upgrade my MS Office to Office 2003 or Office 2007.
    I single source and produce both CHM files and printed
    documentation using Word.
    Can anyone advise if my RoboHelp HTML X5 will still work with
    either Office 2003 or 2007 and do I need to apply service packs to
    RoboHelp or Windows?
    Thanks
    Morven

    Hi Morven. MS Office 2007 is not currently supported by
    RoboHelp X5 or the later X6. Therefore if you are producing Word
    documents from the source you will have to hold fire until the next
    version comes along. You can use Office 2003 with RHX5 provided you
    have the Service Pack 2 installed - which you have.

  • Can't update to ios7 on ipod touch 4th generation on this ipod. had facetime but now it requires ios7 so i have it no more and used it a lot with family. would have to buy new ipod. apple should not take away the capabilities you have already paid for

    found out i can't update ipod touch 4th generation to ios7 which is now required to use facetime. have used facetime for several years with family now can't use. Apple should not take away the capabilities you already have paid for!!

    No correct, you do not need iOS for FaceTime. You only needed to update to iOS 6.1.6.
    Unable to make or receive FaceTime calls after April 16, 2014
    If you are having problems:
    iOS: Troubleshooting FaceTime                  

  • How can I take away the 1x1 transparent gif on my slideshows in muse?

    How can I take away the 1x1 transparent gif on my slideshows in muse?  It's showing up as a SEO error only on the pages that include slideshows. 

    To see all the photos on the phone, including photos that have already been imported into iPhoto, deselect the "Hide Photos Already Imported" checkbox. If the camera contains photos that have already been imported into iPhoto, those photos are hidden by default.

  • Why did they take away the "Open In New Tab"option in Top Sites, Bookmarks, and History?

    Why did they take away the "Open In New Tab"option in Top Sites, Bookmarks, and History? This very annoying.

    Seriously - what could they have possibly been thinking? Mozilla, please tell us this was some kind of mistake. Accessing our bookmarks in FF-mobile is just plain bad as a user experience. And now without "Open In New Tab" we are supposed to drill down to our bookmarks for every tab we want to open? FF-mobile is almost useless without "Open In New Tab". Please restore "Open In New Tab" for bookmarks, thanks.

  • How do I uninstall iTunes 12.0 and revert back to version 11.4, version 12.0 takes away the control of lists etc and I want it back

    how do I uninstall iTunes 12.0 and revert back to version 11.4, version 12.0 takes away the control of lists etc and I want it back

    Hi,
    Can you please expand on your issue? As far as I can see all the previous functions of 11 are in 12 albeit shown differently. Using get info to edit date is still possible, again it looks and feels different.
    JIm

  • Why did you take away the Mitch emoji

    WWhy did you take away the Mitch emoji. I am so disappointed. The emojis are yellow too! Are you trying to go for the Simpsons? Ugh.i

    Mitch didn't like being an emoji.
    Seriously, this is a user-to-user technical support forum. You're not addressing Apple here.
    Submit your feedback to Apple here:
    http://www.apple.com/feedback

  • Why did you take away the feature that allowed me to save several tabbs when i close the webbrowser?

    Why did you take away the feuatre that allowed me to save several tabbs when i close the webbrowser?

    Firefox 4 saves the previous session automatically. <br />
    You can use '''Firefox''' button > '''History > Restore Previous Session''' to get the previous session. <br />
    There is also a '''Restore Previous Session''' button on the default '''about:home''' Home page.

  • I have marked some video cuts for removing, and want to activate them again and take away the marking (a red line over the thumbnails). How do I do that?

    I have marked some video cuts for removing, and want to activate them again and take away the marking (a red line over the thumbnails). How do I do that?

    In the middle tool bar, near the Reject Tool that you used to make the red marks, there should be an "Un-Mark" Tool. Select this tool and you can erase the red marks. It should look like an empty star.
    YOu can select "View Rejected Only" to make sure you get them all.

  • I filmed several takes of the same scene for a movie. I trimmed the best clips from each take and put them into the project screen. However, I can't figure out how to make it flow seamlessly as one scene. Can someone please help me??

    I filmed several takes of the same scene for a movie. I trimmed the best clips from each take and put them into the project screen. However, I can't figure out how to make it flow seamlessly as one scene. Can someone please help me??

    1-800-676-2775  apple support   tech support 1 800 275 2273
    If your computer is on one minute before it freezes, than you have one minute to secure your serial number.
    click the apple----->click about this Mac ------> click on version----> until you see the serial number.  You may have to do this a couple of times if it freezes before you have all the numbers.  A camera might help.
    Good Luck

  • Took away the access rights for harddrive - mac os x cant boot! pleasehelp!

    i took away the access rights for harddrive - mac os x cant boot! pleasehelp!
    thank you for any help

    wow! thank u a lot!!! it worked great!
    i did this:
    A1. If the disk in question is your Mac OS X startup disk and your computer stops starting up at the blue screen, restart with the Command and S keys held down, and enter the following commands:
    mount -uw /
    chown root /
    chmod 1775 /
    exit

Maybe you are looking for