Bridge(CS3) conflict with Windows file explorer

Bridge will crash on me at least twice a day. I use Bridge and Windows file explorer simultaneously copying and moving files across a network. When Bridge quits I sometimes lose my network connection and have a lot of trouble re-connecting.
I have done the usual delete preference, trash cache etc., nothing seems to be working.

Not sure what is going on there, but have a suggestion. You are increasing your odds of Bridge crashing, and trashing the cache, if you move too fast. When in Bridge wait for the spinning arrow in lower left corner to stop (it is building the thumbs) before changing folders.
Don't see any correlation between network connection and Bridge crashing. Perhaps if you have a slow computer you are overloading it with tasks and it can not keep up. Minimize programs running at same time.
Also, run task manager and see what the processor is doing. If CPU useage goes up markedly that will confirm the problem.

Similar Messages

  • Search using Windows file explorer

    Searching works using the default browser search page, but
    does not work when using the Windows file explorer interface?
    Do you know how to solve this problem?
    William Troper

    Have you cheeked the permissions? On my machine Windows explorer
    uses the system account. Its possible that the web interface is
    using different account with more rights.
    Right click on the o: and choose user profile. This will show
    you which account explorer is using.
    Then login with the same account in the browser and see if there
    are still differences.
    Mitch

  • Deleting Adobe Bridge CS3 Cache on Windows XP

    Hi!
    I need help deleting the Adobe Bridge CS3 Cache on Windows XP.
    Not just purging thanks!

    Well, you're welcome here any time, Emily, but this is the Adobe Bridge
    Macintosh
    forum.
    The Windoze forum is across the hall. :)

  • Question about Windows File Explorer and offline attribute display

    In previous releases of Windows (including Windows 8), Windows File Explorer would display a small "x" icon if the offline file attribute was set.  In Windows 8.1, Windows File Explorer no longer displays the "x" icon if the offline
    file attribute is set.  Is there a reason this behavior was changed?  Is there an option to get the old behavior of displaying the "x" icon?

    Hello Ed Winn,
    What ‘x’ icon do you mean?
    Please share us the screenshots to compare.
    Based on my test, I can’t find the ‘x’ icon in the offline folder both in Windows 7 and Windows 8.1.
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • RMAN-05001 auxiliary .... conflicts with a file used by the target database

    I can´t recreate my physical standby.
    It worked in the past.
    Now I reinstalled the 3 standbyclients.
    Copied the spfile from the primary - modified the entries and did a rman backup.
    But when issuing the duplicate database command - it comes up with the error above
    SPFILE standyby db:
    *.db_file_name_convert='+DATA/prim/','+DATA/stdy/','+RECOVERY/prim','+RECOVERY/stdy'
    *.log_file_name_convert='+DATA/prim/','+DATA/stdy/','+RECOVERY/prim','+RECOVERY/stdy'
    Starting restore at 15-APR-10
    using channel ORA_AUX_DISK_1
    channel ORA_AUX_DISK_1: starting datafile backupset restore
    channel ORA_AUX_DISK_1: restoring control file
    channel ORA_AUX_DISK_1: reading from backup piece /oracle/stage/33lb65n2_1_1
    channel ORA_AUX_DISK_1: restored backup piece 1
    piece handle=/oracle/stage/33lb65n2_1_1 tag=TAG20100415T102434
    channel ORA_AUX_DISK_1: restore complete, elapsed time: 00:00:11
    output filename=+REDO1/stdy/controlfile/current.262.716293055
    output filename=+REDO2/stdy/controlfile/backup.262.716293055
    Finished restore at 15-APR-10
    sql statement: alter database mount standby database
    released channel: ORA_AUX_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 04/15/2010 10:31:46
    RMAN-05501: aborting duplication of target database
    RMAN-05001: auxiliary filename DATA/prim/datafile/system.262.715097535 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/sysaux.263.715097499 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/undotbs3.269.710521021 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/undotbs2.270.710521021 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/example.272.710521021 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/users.268.710521021 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/sysaux.273.710521021 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/undotbs1.271.710521021 conflicts with a file used by the target database+
    RMAN-05001: auxiliary filename DATA/prim/datafile/system.264.710521021 conflicts with a file used by the target database+

    Hi ,
    I feel you are using ASM but still check the below details:
    Cause
    Production and Auxiliary have same directory structure and are running on two different machines. RMAN must be told not check that the target datafiles are sharing the same names as the duplicated files being created. Otherwise, the following errors will be returned:
    RMAN-05001: auxiliary filename /qmaxnt/u04/qmaxntorafiles/table/QMAXAD08_03.dbf
    conflicts with a file used by the target database
    RMAN-05001: auxiliary filename /qmaxnt/u04/qmaxntorafiles/table/QMAXAD08_02.dbf
    Solution
    To implement the solution, please use nofilenamecheck in syntax as follows:
    1. Connect to Target, auxiliary, and rman catalog and
    2. use script as
    run{
    set until time "to_date('2005/09/17 14:00:00','yyyy/mm/dd HH24:MI:SS')";
    allocate auxiliary channel aux1 type 'sbt_tape';
    allocate auxiliary channel aux2 type 'sbt_tape';
    duplicate target database for standby dorecover nofilenamecheck;
    Make sure to use auxiliary type of channel so RMAN restore take place at auxiliary database.
    Thanks,
    Rafi.
    http://rafioracledba.blogspot.com/

  • Auxiliary filename  conflicts with a file used by the target database

    Hi,
    I am using RMAN backup to duplicate my prod database.
    My database is 10g on Linux.
    My RMAN script is like this
    connect auxiliary /;
    connect catalog rman/rman@catalog;
    connect target sys/sys@prod;
    sql "alter session set optimizer_mode=RULE";
    run {
    allocate auxiliary channel dup1 type disk;
    allocate auxiliary channel dup2 type disk;
    allocate auxiliary channel dup3 type disk;
    set newname for datafile 1 to '/d05/u08/oracle/qadata/system01.dbf';
    set newname for datafile 2 to '/d05/u08/oracle/qadata/system02.dbf';
    set newname for datafile 3 to '/d05/u08/oracle/qadata/system03.dbf';
    set newname for tempfile 1 to '/d05/u09/oracle/qadata/temp01.dbf';
    set newname for tempfile 2 to '/d05/u09/oracle/qadata/temp02.dbf';
    set newname for tempfile 3 to '/d05/u09/oracle/qadata/temp03.dbf';
    set newname for tempfile 4 to '/d05/u09/oracle/qadata/temp04.dbf';
    duplicate target database to qa logfile
    group 1 ('/d05/u09/oracle/qadata/log1a.log',
    '/d05/u09/oracle/qadata/log1b.log') size 50m,
    group 2 ('/d05/u09/oracle/qadata/log2a.log',
    '/d05/u09/oracle/qadata/log2b.log') size 50m,
    group 3 ('/d05/u09/oracle/qadata/log3a.log',
    '/d05/u09/oracle/qadata/log3b.log') size 50m;
    I am getting the following error in the middle
    Starting Duplicate Db at 18-SEP-10
    released channel: dup1
    released channel: dup2
    released channel: dup3
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 09/18/2010 11:32:07
    RMAN-05501: aborting duplication of target database
    RMAN-05001: auxiliary filename /db01/u08/oracle/proddata/GRCM.dbf conflicts with a file used by the target database
    Recovery Manager complete.
    Previously the duplicate db was successful, but now it is giving error.
    How can I solve this.
    Thanks,
    Kavitha

    5001, 1, "auxiliary file name %s conflicts with a file used by the target database"
    // *Cause: RMAN is attempting to use the specified file name as a restore
    //         destination in the auxiliary database, but this name is already
    //         in use by the target database.
    // *Action: Use the CONFIGURE AUXNAME command to specify a name for the data
    //          file that does not conflict with a file name in use by the
    //          target db.

  • Adobe Premiere Pro CS3 compatibility with Windows 8.1

    Is Premiere CS3 and Encore CS3 compatible with Windows 8.1 64 bit?

    I rather doubt it.  CS3 was released back in 2007.  You might try it.

  • Question about change in Windows File Explorer in 8.1

    Windows File Explorer in Windows 8 (and previous releases) would display an icon if the file had the offline attribute set.  Windows 8.1 File Explorer does not show an "offline" icon if the file's offline attribute is set.  Is there
    a way to set at option to get File Explorer to display this icon?

    Hi Ed,
    The Win8.1 forums are over here:
    https://social.technet.microsoft.com/Forums/en-us/home?category=w8itpro&filter=alltypes&sort=lastpostdesc
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Can't pin windows file explorer to taskbar

    On a fresh install of Windows 8, windows file explorer is already pinned to the task bar on the desktop. I accidently unpinned this icon and now I cannot get it back. The logical way to do this is to go to the start screen, right click file explorer and
    choose the 'Pin to taskbar', but for some reason I don't get this option for file explorer. I can pin lots of other desktop applications, but just not file explorer. I work mostly from the desktop so it's really annoying to have to flick back to the start
    screen every time I want to start file explorer.
    Thinking I must be going mad, I tried the same thing on the Windows Server 2012 desktop and now I have exactly the same problem there!!

    Hi,
    Windows Explorer should has the option to pin to taskbar:
    If you don’t have this option, try to use SFC /scannow to check system files.
    Or you can perform a system refresh for test:
    Click
    Control Panel
    Click General on the left column
    Under the Refresh your PC without affecting your files, click
    Get started
    Leo Huang
    TechNet Community Support

  • Windows file explorer

    I refreshed my laptop and now I need to reinstall windows file explorer. How do I do this?

    Hello Terrythrostle,
    Your needing to reinstall windows file explore, you might need to refresh windows again.
    You can try to run the following command in command prompt,  SFC /scannow. This should fix any software error that you’re having
    If you run the refresh again make sure that nothing is connected to the computer.
    What version of windows are you using?
    Did you have recovery media?
    Let me know if this helps.

  • CS6 Crashed Windows File Explorer when loading Actions

    Had a Tif file open and was trying to load an action set saved from CS5.  The Actions File Open dialog box opened then crashed the Windows Explorer (not internet Explorer) and allowed me to cancel the Adobe Actions Open dialog when the explorer restarted (not the computer, just the file explorer).
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 3400 MHz
    Built-in memory: 16281 MB
    Free memory: 13493 MB
    Memory available to Photoshop: 14658 MB
    Memory used by Photoshop: 95 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GTX 560 Ti/PCIe/SSE2
    Display: 2
    Display Bounds:=  top: -1080, left: 0, bottom: 0, right: 1920
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 1080, right: 1920
    Video Card Number: 2
    Video Card: Intel(R) HD Graphics 3000
    OpenCL Unavailable
    Driver Version: 8.15.10.2653
    Driver Date: 20120214000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd32
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: Intel(R) HD Graphics 3000
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Video Card Number: 1
    Video Card: NVIDIA GeForce GTX 560 Ti 
    OpenCL Unavailable
    Driver Version: 8.17.12.9610
    Driver Date: 20120229000000.000000-000
    Video Card Driver: nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode: 1920 x 1080 x 4294967296 colors
    Video Card Caption: NVIDIA GeForce GTX 560 Ti 
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\SSDPYRO\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      H:\, 111.7G, 87.4G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Most likely the explorer crashed while trying to create a preview/thumbnail of one of the files in the directory.
    Do you have any third party shell extensions that provide thumbnails?

  • Can't Access One of My Network Computers via Windows (File) Explorer

    I've just installed a new router (Linksys EA3500 Dual Band) to replace my old (Linksys WRT100), but can't imagine how that could cause this trouble, except that prior to installing the new router, all worked properly.  I have three Workgroup computers
    on my network, one running Win 7 Ultimate 64bit (call it Tower-755, an older laptop upstairs running Win 7 Pro 32bit (call it MommaDell), and a super laptop running Win 7 Pro 64bit (Call it M6600).  On Tower-755 I have a mirrored Raid1 drive - call
    it Z: - that I share over the net (i.e. Everyone = Read/Write).
    Since installing the new router, when I open File Explorer on M6600 or MommaDell, I can see - in the search pane (under Network) - all three computers, and when I click on MommaDell, its shared folder is accessible, but when I click on Tower-755
    I get an error saying, "Windows cannot access
    \\Tower-755, yet I can ping it successfully from a command prompt.
    However, when I open File Explorer on Tower-755, although I can see all three computers in the search pane (under Network), I can't access any of the three (including Tower-755 itself); I get the same error message, although I CAN ping them from a command
    prompt.
    Also, and I'm not sure if this related, in the search pane under HomeGroup on all three computers, I can only see MommaDell.
    I've checked and double checked all my router settings, including the IP Address range (192.168.1.2 - 51).  I also have a Domain Controller server with two joined workstations on the net, so I have a static IP in order to be able to access the server
    and/or workstations remotely when we travel.
    That's my story and I'm stuck with it, but I'd sure be grateful for any help with this mess.
    Capt. Dinosaur

    Hi Capt,
    In order to help you analyze your issue, we need confirm some situations.
    1. Did these 3 computers all join the same HomeGroup or Workgroup?
    Yes
    2. Domain Controller server with two joined workstations you mentioned, did it mean two of these 3 computer joined the domain environment?
    No.  Those are separate computers in their own domain, just using the same network.
    3. Did you ping via IP address or computer name?
    Both, but this morning something is different. 
      a.  MommaDell and M6600 can ping each other both by IP and Name, but can't ping Tower-755 either way.
      b.  Tower CAN ping both MommaDell and M6600 both ways.
    According to your description,
    Tower cannot ping MommaDell and M6600.
    No, Tower CAN ping both MommaDell AND M6600 both by ip and name.
    MommaDell can ping Tower.
    M6600 can ping Tower.
    Both of the above was true yesterday, but not this morning.
    Please check if MommaDell and M6600 could ping each other.
    Yes they can
    And make sure all of them turn on the network discovery and turn off the firewall temporarily for test:
    Network Discovery is ON in all three machines, and Windows firewall is always off because I have ZoneAlarm on all three machines.
    Enable or disable network discovery
    Which?
    http://windows.microsoft.com/en-in/windows/enable-disable-network-discovery#1TC=windows-7
    If it doesn't resolve, please post every computer's ipconfig /all output here for analysis.
    it's 7:30 and I have to be out until 2:30.  I'll do the posting then, and thanks for the help.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Capt. Dinosaur

  • Bridge CS3 crashes with RAW folder, CS2 doesn't

    I have this folder with all my recent RAW files, 319 shots. If I go to that folder with Bridge CS3, it crashes. I can however go to that folder with Bridge CS2 without it crashing, but I have to drag and drop the file to Photoshop CS3 to work on it. Clicking on the photo in Bridge CS2 just opens it in Preview.
    I know it's not that big of a deal and I can still view/open my files with at least one of the version's of Bridge. It just frustrates me because I can't use the updated, and theoretically better, version of Bridge on my RAW files. I'm so used to being able to open up CS3, click on my file, and there it is open in Photoshop ready for me to do my edits.
    I've tried toying around with preferences, and nothing works. I've tried dividing the files into sub folders, thinking it was the number of large files in one folder...worked for a while and eventually started crashing when I went to the folder that held the sub folders. Any suggestions as to what to do so I can use CS3.

    Hey mine does this too, some one please help!
    http://www.itreallyisfree.com

  • Can't label files in bridge, and problem with starred files

    I'm working with CS3 on saving raw files to jpegs, and I usually organize them by 5 starring my favorites as well as labeling them, and just in the last 2 days Bridge has been acting up and won't label the files. Also, it will 5 star them, but only about a 1/4 of them show up in the filter as being starred. Any ideas? I already checked my access, and I can read and write to them.... the only thing I can think of is that I ran a few updates a day or two ago.... help! this is getting really frustrating and slowing down my workflow...

    http://forums.adobe.com/community/bridge/bridge_macintosh

  • Is Photoshop CS3 compatible with Windows 8

    I am planing to get a new computer with windows 8 and I am currently using Photoshop CS3 in a windows XP computer.  Do I need to get the upgrade to CS6 or can I get an update for CS3 to work on Windows 8?

    PS CS3 is not supported on Win 8. So, its best to upgrade to PS CS6 and use it flawlessly with Win 8.

Maybe you are looking for

  • [Adobe Photoshop CS2] How to make a layer round like a circle?

    Hey there, I have a png-file, which shows our bandname (http://i.imgur.com/qbrWWs0.png). I now want to shape it like a circle, because we want to print it on buttons. How can I do that? I already tried it with the warp tool, but that result isn't sat

  • Custom XML documents in ADF: managing them with MDS?

    Deleted. Please ignore. Edited by: ChristineWolak on Jan 5, 2011 8:02 AM

  • How to output non-fixed length field by DMEE?

    Hi, In DMEE, I need to set a fixed length for each field. If the source data length is less than what we set, it will ouput space to fill in rest of the place. Is that a way I could just out put exactly what I need? No extra space to be output. Thank

  • Classes are missing in the api doc's

    Some of the class that my java book says are available aren't documented on th web. Am I missing something, or is the api doc behind the times?

  • Creating buckets or histograms with a query

    I know I can do what is below with a case statement defining each range. How do I make it dynamic? I know about the width_bucket and ntile functions. I am having trouble getting them to do what I want. I created the following table to get counts of d