Why the RSC can not found my JRE1.6.0.06 on windows server 2003 ?

I installed the SUN RSC program on my windows server 2003, It required JRE 1,3 or later,then I installed the JRE.16.0.06, I set the JAVA_HOME and CLASSPATH,I can got correct information with java -version commend on cmd,but the RSC still told me that it required JRE 1.3 or later.
Why ?

We run our Sun V480s and E250 (Solaris 10) headless, and depend on RSC (both CLI and GUI) to access the consoles from Windows.XP desktop machines.
We have been using the RSC GUI from the Wintel boxes quite successfully for several years, and appreciate having the RSC devices in our Sun servers. We rely on Sun's RSC software.
Several days ago we installed the current Sun JRE (1.6.0.06) on the Windows machines. RSC GUI now fails to run on the Windows machines, displaying a message box advising that Java 1.3, or later, is required and directing us to download 1.3 or later.
Since 1.6 is later than 1.3, it would appear that Sun's current JRE broke the existing Sun RSC GUI app.
How could Sun do this? WIll they release a fix?
We will try to open a Service Request, but are having difficulty due to Sun's problems implementing the new Support Contract arrangements, and it is not clear that we can access our support at this time. Sun has physically visited our facility, and given us absolute assurance that they will continue our existing contract for the duration of their difficulties, while simultaneously lapsing our contract when we attempt to access it online. Consequently, we cannot immediately get contractual assistance on this matter, through the normal support channel.
Thank you.
DG
Edited by: david_grove on Jun 4, 2008 5:53 PM

Similar Messages

  • ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified in windows server 2008 r2

    ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified in windows server 2008 r2.I made a application in asp.net c#.I am using ODBC connection.When I deployed my application in windows server2008 r2.There
    is no Microsoft ODBC driver shown in ODBC Data source administrator.Then I go to the C:\Windows\SysWOW64 and open  Odbcad32.exe and add Microsoft ODBC2 driver for Oracle and when I run my application I got following error
    ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
    I am using follwoing string
     <connectionStrings>
    <add name="theconnetion" connectionString="DSN=abdb;UID=abc;PWD=xyz"/>
     </connectionStrings>
    Guide me What I do?

    Did you add a System DSN or a User DSN? If you added a User DSN from your own login, the asp.net application will not be able to use it unless its application Pool in IIS is configured to run under the same credentials that you used for creating
    the DSN. It's better if you add a System DSN.
    Also, be careful to ensure that you are using a 64 bit DSN, unless you configure the application to run in 32 bits. If the 64 bit application attempts to use the 32 bit driver you get the same error message "Data source name not found and no default
    driver specified". See this KB article:
    http://support.microsoft.com/kb/942976/en-us

  • Why the ejb can not pass the complie?

    I just use the work shop to create a simple ejb(SampleEJB.ejb) like:
    package SampleEJB;
    import javax.ejb.*;
    import weblogic.ejb.*;
    * @ejbgen:session
    * ejb-name = "Sample"
    * @ejbgen:jndi-name
    * remote = "ejb.SampleRemoteHome"
    * @ejbgen:file-generation remote-class = "true" remote-class-name = "Sample"
    remote-home = "true" remote-home-name = "SampleHome" local-class = "false" local-class-name
    = "SampleLocal" local-home = "false" local-home-name = "SampleLocalHome"
    public class SampleEJB
    extends GenericSessionBean
    implements SessionBean
    public void ejbCreate() {
    // Your code here
    * @ejbgen:remote-method
    public void Hello(){
              System.out.println("Hello");
    * @ejbgen:remote-method
    public void Hello2(){
              System.out.println("Hello2");
    but when i build it. The compiler give me error:
    ¾¯¸æ: SampleEJB.java:14: ÕÒ²»µ½ JNDI Ãû³Æ¡£
    [Info:] Creating D:\DOCUME~1\Yong\LOCALS~1\Temp\/wlw_SampleEJB_build\SampleEJB\SampleHome.java
    [Info:] Creating D:\DOCUME~1\Yong\LOCALS~1\Temp\/wlw_SampleEJB_build\SampleEJB\Sample.java
    [Info:] Creating D:\DOCUME~1\Yong\LOCALS~1\Temp\/wlw_SampleEJB_build\META-INF\ejb-jar.xml
    [Info:] null [Bean] MAKE CLASS NAME G:SampleHome P:SampleEJB N:SampleHome
    [Info:] null [Bean] MAKE CLASS NAME G:Sample P:SampleEJB N:Sample
    [Info:] Creating D:\DOCUME~1\Yong\LOCALS~1\Temp\/wlw_SampleEJB_build\META-INF\weblogic-ejb-jar.xml
    [Info:] Creating D:\DOCUME~1\Yong\LOCALS~1\Temp\/wlw_SampleEJB_build\ejbgen-build.xml
    SourceLoader roots: 10
    post-ejbgen:
    ¾¯¸æ: EJBGen ok. Compiling...
    Compiling 3 source files to D:\DOCUME~1\Yong\LOCALS~1\Temp\wlw_SampleEJB_build
    ¾¯¸æ: All files compiled. Running ejbc...
    <2004-5-3 ÏÂÎç16ʱ20·Ö17Ãë CST> <Warning> <EJB> <BEA-010212> <The EJB 'Sample(Jar:
    D:\DOCUME~1\Yong\LOCALS~1\Temp\wlw_SampleEJB_build)' contains at least one method
    without an explicit transaction attribute setting. The default transaction attribute
    of Supports will be used for the following methods: remote[Hello2(), Hello()]
    >
    SourceLoader roots: 60
    D:\DOCUME~1\Yong\LOCALS~1\Temp\wlw_SampleEJB_build\SampleEJB\Sample_vngkt3_HomeImpl.java:13:
    cannot resolve symbol
    symbol : class SampleHome
    location: class SampleEJB.SampleEJB
    implements SampleEJB.SampleHome, weblogic.utils.PlatformConstants
    ^
    D:\DOCUME~1\Yong\LOCALS~1\Temp\wlw_SampleEJB_build\SampleEJB\Sample_vngkt3_HomeImpl.java:69:
    cannot resolve symbol
    symbol : class Sample
    location: class SampleEJB.SampleEJB
    public SampleEJB.Sample create ()
    ^
    D:\DOCUME~1\Yong\LOCALS~1\Temp\wlw_SampleEJB_build\SampleEJB\Sample_vngkt3_EOImpl.java:15:
    cannot resolve symbol
    symbol : class Sample
    location: class SampleEJB.SampleEJB
    implements SampleEJB.Sample, weblogic.utils.PlatformConstants
    ^
    D:\DOCUME~1\Yong\LOCALS~1\Temp\wlw_SampleEJB_build\SampleEJB\Sample_vngkt3_HomeImpl.java:73:
    cannot resolve symbol
    symbol : class Sample
    location: class SampleEJB.SampleEJB
    return (SampleEJB.Sample) super.create(md_ejbCreate);
    ^
    4 errors
    ´íÎó: ERROR: Error from ejbc: Compiler failed executable.exec
    ´íÎó: ERROR: ejbc couldn't invoke compiler
    BUILD FAILED
    ´íÎó: ERROR: Error from ejbc: Compiler failed executable.exec
    ´íÎó: ERROR: ejbc couldn't invoke compiler
    Why? who can give me a hand

    I met the same problem. I am a newbie, but why weblogic even can not build a simple startup ejb project?

  • Why the applied_scn can not increase?

    I use the Oracle stream while I find the change of the source databse can apply in the remote database,but the applied_scn can not increase for a long time after the change has success.If this scn can not increase,I can not delete some logfile,which may be full of my disk one day.
    Who has suggestion?

    you say you want delete some logfile , destination's logfile , is it right ?
    i think that's no problem because the change of LCR is kept in Stream Queue but not in logfile. that means you can drop some archivelog as you want. it dosn't matter! :)

  • Windows 8 and IE10 and 11 not accepting Proxy Settings via Group Policy from windows server 2003

    Hi
    We are still running Windows Server 2003 with a Win7 and Win8 desktop environment. I can control Win7 IE9 settings,
    But Win8 systems are running IE10. We have an internal proxy server.
    Is there any way to force the proxy settings to the Win8/IE10 or 11 systems .
    i have tried with The IE 10 .adm template and applied gpo,but does not have any proxy settings for ie10 and no changes were applies
    please can anyone help me regarding this
    i want to apply GPO from windows server 2003  to windows 8 ie10/11
    Thanks
    KNC

    Hi,   
    I agree with Zanderol24, we can install RSAT on a windows8 client, and then we can use Group Policy Management to manage group policy from the client.
    For more information about RSAT, we can refer to the following link:
    Remote Server Administration Tools (RSAT) for Windows Client and Windows Server (dsforum2wiki)
    http://social.technet.microsoft.com/wiki/contents/articles/2202.remote-server-administration-tools-rsat-for-windows-client-and-windows-server-dsforum2wiki.aspx
    For more detailed information about how to use GPP to configure the proxy setting for ie10 and ie11, we can refer to the following link:
    How to configure Group Policy Preference settings for Internet Explorer 11 in Windows 8.1 or Windows Server 2012 R2
    http://support.microsoft.com/kb/2898604
    When we use GPPs you need to be aware of the F5-F8 keys:
    Red / Green: GP Preferences doesn’t work even though the policy applied and after gpupdate \force
    http://blogs.technet.com/b/grouppolicy/archive/2008/10/13/red-green-gp-preferences-doesn-t-work-even-though-the-policy-applied-and-after-gpupdate-force.aspx
    Besides, aside from using group policy to manage IE, IEAK can also be used to do this.
    For IEAK, the following article can be referred to for more information.
    Internet Explorer Administration Kit (IEAK) Information and Downloads
    http://technet.microsoft.com/en-in/ie/bb219517.aspx
    Best Regards,
    Erin

  • Can't access some clien'ts features after migration Windows Server 2003 - 2008R2

    Hi,
    I have done migration of the domain controller from Windows Server 2003 to 2008R2. The old domain controller is set as a relay. After that, I have problems with the clients.
    Now with the 2008R2, it is impossible to:
    -Explore targeted computer's disks.
    -All RPC features.
    -The deployment by GPO is also impossible (Group Policy object did not apply because it failed with error code '0x80070015 The device is not ready).
    All of these features works well on the relay. I also can't shutdown a computer from a pc logged as Administrator.
    I've got the problem on the 3 sites I've migrate.
    Thanks.

    > The old domain controller is set as a relay.
    Please explain "relay" further. I never heard this label in terms of
    Domain Controllers...
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Can Project Std 2013 be made to run on Windows Server 2003?

    Bought Project Standard 2013 and planned to install/run it on Windows Server 2003 (only one concurrent user), but the moment I try to install it, it gives the error "The procedure entry point EventWrite could not be located in the dynamic link library
    ADVAPI32.dll." Then I noticed on the requirements page for Project Standard 2013 that Server 2003 is not supported (only 7/8/2008/2012 are supported). Is there a way to get it installed and running on Server 2003?

    Hi Teky,
    Please refer to the requirements below:
    http://technet.microsoft.com/en-us/library/ee683978.aspx
    At least Windows Server 2008 R2 SP1 is required for PS2013.
    Note that if you just need Project 2013 standard edition (and not server), you do not need to install any Windows Server.
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Why the setting can not be seen in Broadcaster?

    Hello guys,
    we are working on Broadcaster und meeting a problem:
    The Settings from our customer can not be seen by us. We estimate may they have created the settings via favorite workbook. Is there any authority object to solve this problem? Which is it?
    Any hint is appreciated!
    Regards,
    Youyou

    Are you talking about iCloud's PhotoStream?
    iCloud only keeps the photos in photoStream for 30 days. How old are the photos?
    Also, I am not clear if when yu add a new device to PhotoStreamm, the device will load photos currently in the PhotoStream.

  • Why the subvi can not show,when i use call by reference node.

    I used a call by reference node in function pallete,i follow the labview manuals and examples(dynamic load example), but i can not see the subvi show when the program running.
    Attachments:
    comshow.vi ‏75 KB
    交流稳态频谱.vi ‏19 KB

    Hi Sunny,
    Open your subVI,
    1. go to File->Vi Properties (or Ctrl+I)
    2. choose Window Appearance category
    3. choose Customize
    4. check "Show Front Panel When Called" (and "Close Afterwards ..")
    5. save the VI, close it and try again.
    Let us know if it's OK ...

  • Why my IllustratorCC can not found compatible GPU???

    I can't open and place jpg files in IllustratorCC
    I guess GPU performance causing trouble...
    Could you fix my GPU setting?
    Thanks!
    This is my System Info
    Components:
    ACE 2014/04/14-23:42:44 79.554120 79.554120
    Adobe APE 2013/02/04-09:52:32 0.1160850 0.1160850
    Adobe Linguisitc Library 8.0.0
    Adobe Owl 5.2.3
    PDFL 2014/08/18-15:13:12 79.512424 79.512424
    Adobe Product Improvement Program 7.2.1.3399
    AdobePSL 79.981546_15.981535 79.981546_15.981535
    Adobe Illustrator 1.0
    Adobe XMP Core 2014/08/29-03:07:50 79.156821 79.156821
    Adobe XMP Files 2014/08/29-03:07:50 79.156821 79.156821
    Adobe XMP Script 2014/08/29-03:07:50 79.156821 79.156821
    Adobe CAPS 8,0,0,13
    AFL 1.0
    AGM 2014/08/12-23:42:09 79.557478 79.557478
    AgoraLib Library 1.0.0.0
    AdobeHelp Dynamic Link Library 1,8,0,31
    AIFM 1.0 23.68434
    AIPort 1.0 23.68434
    AIPreviewHandler 1.0 23.68434
    AMTLib (64 Bit) 8.0.0.122212002 BuildVersion: 8.0; BuildDate: Wed Jul 30 2014 15:59:34) 1.000000
    ARE 2014/03/31-23:39:12 79.553719 79.553719
    AXE8SharedExpat 2014/06/28-00:28:27 79.556202 79.556202
    AXEDOMCore 2014/06/28-00:28:27 79.556202 79.556202
    AXSLE 2014/06/28-00:28:27 79.556202 79.556202
    BIB 2014/03/31-23:39:12 79.553719 79.553719
    BIBUtils 2014/03/31-23:39:12 79.553719 79.553719
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    CoolType 2014/03/31-23:39:12 79.553719 79.553719
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 7.0.6
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    DVA Product 8.0.0
    ExtendScript 2014/01/21-23:58:55 79.551519 79.551519
    FilterPort 1.1 79.557478
    Microsoft® Windows® Operating System 6.1.7601.17514
    International Components for Unicode 2013/12/18-15:59:15  Build gtlib_5.0.19974
    International Components for Unicode 2013/12/18-15:59:15  Build gtlib_5.0.19974
    International Components for Unicode 2013/12/18-15:59:15  Build gtlib_5.0.19974
    International Components for Unicode 2013/12/18-15:59:15  Build gtlib_5.0.19974
    JP2KLib 2014/06/09-23:41:38 79.253735 79.253735
    Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler 10.1
    LogSession 7.2.1.3399
    MPS 2014/08/18-23:43:19 79.557676 79.557676
    Microsoft® Windows® Operating System 7.0.7600.16385
    Microsoft® Visual Studio .NET 7.10.3077.0
    Microsoft® Visual Studio® 2005 8.00.50727.42
    Microsoft® Visual Studio .NET 7.10.3052.4
    Microsoft® Visual Studio® 2005 8.00.50727.42
    PDFPort 2014/03/31-23:39:12 79.553719 79.553719
    Adobe PDFSettings 1.04
    Adobe Photoshop CC 2014 15.2
    Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit) 5.0.0
    Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit) 5.2.0.47
    Adobe India Sangam Core Code 2014/01/07-23:52:02 79.252127 79.252127
    Adobe India SangamML Import from Sangam 2014/01/07-23:52:02 79.252127 79.252127
    ScCore 2014/01/21-23:58:55 79.551519 79.551519
    Microsoft® Windows® Operating System 6.00.2600.0000
    SVGExport 6, 0, 0, 0 1.0
    SVGRE 6, 0, 0, 0 1.0
    Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler 12.0
    Intel(R) Threading Building Blocks for Windows 4, 2, 2013, 1114
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Teigha® for .dwg files 3.05.1.0
    Adobe Updater Notifications Library 8.0.0.14 (BuildVersion: 1.0; BuildDate: BUILDDATETIME) 8.0.0.14
    Vulcan Application Control Library 5.0.0.82
    Vulcan Message Library 5.0.0.82
    WRServices Fri Mar 07 2014 15:33:10 Build 0.20204 0.20204
    ATE
    OS: Windows
    Version: 6.1
    System Architecture: x86
    Built-In Memory: 3995 MB
    Application Folder:
    C:\Program Files\Adobe\Adobe Illustrator CC 2014\Support Files\
    Primary Scratch Folder:
    C:\AITEMP\
    Secondary Scratch Folder:
    Plug-ins:
    Live Menu Item
    Adobe AI Application Plugin
    Color Conversion
    New Cache Plugin
    AdobeLicenseManager
    ZStringTable
    Main Filters
    Main File Formats
    AI File Format
    Mesh Object
    Control Groups
    Composite Fonts
    Place Gun Tool
    AppAnnotators
    Window Menu
    File Format Place EPS
    Debug Menu
    SLO Text Tool
    Pen Tool Plugin
    Document Window Plugin
    Sweet Pea 2 Adapter Plugin
    AdobeActionManager
    Adobe Illustrator User Interface
    FrameworkS
    Art Converters v2
    CurveFittingSuite
    FlattenTransparency
    FO Conversion Suite
    Pathfinder Suite
    Path Suite
    PDF Suite
    Rasterize 8
    AdobeSlicingPlugin
    AdobeActionPalette
    BeautifulStrokes Suite
    AdobeBrushMgr
    Adobe Color Harmony Plugin
    Control Panel Plugin
    Adobe Deform Plugin
    AdobeLayerPalette
    AdobePaintStyle
    Adobe Planar Edit Plugin
    AdobeSwatch_
    AdobeToolSelector
    Adobe Variables Palette
    AdobeDiffusionRaster
    SvgFileFormat
    Snapomatic
    Adobe Geometry Suite
    Flatten Suite
    Shape Suite
    ExpandS
    SWFExport
    Photoshop Plugin Adapter Unsharp Mask...
    Photoshop Plugin Adapter Crystallize...
    Photoshop Plugin Adapter Pointillize...
    Photoshop Plugin Adapter Pinch...
    Photoshop Plugin Adapter Extrude...
    Photoshop Plugin Adapter Fibers...
    Photoshop Plugin Adapter Lens Flare...
    Photoshop Plugin Adapter Ripple...
    Photoshop Plugin Adapter Shear...
    Photoshop Plugin Adapter Twirl...
    Photoshop Plugin Adapter Polar Coordinates...
    Photoshop Plugin Adapter Smart Blur...
    Photoshop Plugin Adapter Spherize...
    Photoshop Plugin Adapter Wind...
    Photoshop Plugin Adapter ZigZag...
    Photoshop Plugin Adapter Mezzotint...
    Photoshop Plugin Adapter Radial Blur...
    Photoshop Plugin Adapter Wave...
    Photoshop Plugin Adapter Crop and Straighten Photos Filter
    Photoshop Plugin Adapter De-Interlace...
    Photoshop Plugin Adapter Displace...
    Photoshop Plugin Adapter Tiles...
    Photoshop Plugin Adapter BMP
    Photoshop Plugin Adapter CompuServe GIF
    Photoshop Plugin Adapter PNG
    Photoshop Plugin Adapter Targa
    Photoshop Plugin Adapter IFF Format
    Photoshop Plugin Adapter Paths to Illustrator...
    Photoshop Plugin Adapter OpenEXR
    Photoshop Plugin Adapter Color Halftone...
    Photoshop Plugin Adapter Pixar
    Photoshop Plugin Adapter PCX
    Photoshop Plugin Adapter NTSC Colors
    Photoshop Plugin Adapter Legacy Gaussian Blur...
    Photoshop Plugin Adapter Filter Gallery...
    Photoshop Plugin Adapter Colored Pencil...
    Photoshop Plugin Adapter Cutout...
    Photoshop Plugin Adapter Dry Brush...
    Photoshop Plugin Adapter Film Grain...
    Photoshop Plugin Adapter Fresco...
    Photoshop Plugin Adapter Neon Glow...
    Photoshop Plugin Adapter Paint Daubs...
    Photoshop Plugin Adapter Palette Knife...
    Photoshop Plugin Adapter Plastic Wrap...
    Photoshop Plugin Adapter Poster Edges...
    Photoshop Plugin Adapter Rough Pastels...
    Photoshop Plugin Adapter Smudge Stick...
    Photoshop Plugin Adapter Sponge...
    Photoshop Plugin Adapter Underpainting...
    Photoshop Plugin Adapter Watercolor...
    Photoshop Plugin Adapter Accented Edges...
    Photoshop Plugin Adapter Angled Strokes...
    Photoshop Plugin Adapter Crosshatch...
    Photoshop Plugin Adapter Dark Strokes...
    Photoshop Plugin Adapter Ink Outlines...
    Photoshop Plugin Adapter Spatter...
    Photoshop Plugin Adapter Sprayed Strokes...
    Photoshop Plugin Adapter Sumi-e...
    Photoshop Plugin Adapter Diffuse Glow...
    Photoshop Plugin Adapter Glass...
    Photoshop Plugin Adapter Ocean Ripple...
    Photoshop Plugin Adapter Bas Relief...
    Photoshop Plugin Adapter Chalk && Charcoal...
    Photoshop Plugin Adapter Charcoal...
    Photoshop Plugin Adapter Chrome...
    Photoshop Plugin Adapter Cont^e Crayon...
    Photoshop Plugin Adapter Graphic Pen...
    Photoshop Plugin Adapter Halftone Pattern...
    Photoshop Plugin Adapter Note Paper...
    Photoshop Plugin Adapter Photocopy...
    Photoshop Plugin Adapter Plaster...
    Photoshop Plugin Adapter Reticulation...
    Photoshop Plugin Adapter Stamp...
    Photoshop Plugin Adapter Torn Edges...
    Photoshop Plugin Adapter Water Paper...
    Photoshop Plugin Adapter Glowing Edges...
    Photoshop Plugin Adapter Craquelure...
    Photoshop Plugin Adapter Grain...
    Photoshop Plugin Adapter Mosaic Tiles...
    Photoshop Plugin Adapter Patchwork...
    Photoshop Plugin Adapter Stained Glass...
    Photoshop Plugin Adapter Texturizer...
    Twirl v2
    SketchingTools
    Simplify
    Segment Tools
    ShapeTool
    Advanced Select
    Adobe Scatter Brush Tool
    Adobe Symbolism
    Magic Wand
    Liquify
    Lasso
    Knife Tool
    Reshape Tool
    Adobe Flare Plugin
    AdobeTextDropper
    Adobe Eraser Tool
    Adobe dBrush Brush Tool
    Adobe Curvature Tool
    Adobe Crop Tool
    Adobe Calligraphic Brush Tool
    BoundingBox
    AdobeArtBrushTool
    TypeCase
    Smart Punctuation
    TxtColumns
    TextFindFont
    Spell Check Dictionary
    Adobe PSD File Import
    Adobe PSD File Export
    PSLFilterAdapter
    Photoshop Adapter
    ZigZagUI
    VectorizeUI
    VariablesPaletteUI
    TwirlToolUI
    TransformUI
    AI New Sample Plugin
    TIFF File Format UI
    TextExportUI
    SvgFileFormatUI
    Spell Check UI
    AdobeSlicingUI
    ShapeEffectUI
    ScribbleUI
    ScribbleFillUI
    ScatterBrushToolUI
    SangamFormatsUI
    RoundUI
    RoughenUI
    RasterizeUI
    PuckerAndBloatUI
    PSLFilterAdapterUI
    Adobe PSD File Import UI
    Adobe PSD File Export UI
    AIPreferenceUI
    PlanetXUI
    PerspectiveUI
    PDF File Format UI
    PathfinderUI
    ParticleSystemUI
    OffsetPath UI Plugin
    ObjectMosaicUI
    Adobe Live Shapes UI
    LiveBlendsUI
    LiquifyToolUI
    JPEGFormatUI
    IllustratorUI
    GlobAdjToolUI
    FuzzyEffectUI
    FlattenTransparencyUI
    SWFExport UI
    FlareUI
    Find Replace UI
    ExpandUI
    DxfDwgUI
    DropShadowUI
    DistortUI
    Design Library
    DeformUI
    Adobe dBrush Brush Tool UI
    Adobe Curvature ToolUI
    CSSExtractUI
    AdobeBrushMgrUI
    Asset ManagementUI
    ArtOnPathBrushToolUI
    AI Toolbox UI Plugin
    AddArrowUI
    TIFF File Format
    Save4Web
    PNG File Format
    PNGExport
    MPSParser
    MPSExport
    MPSCommon
    Mojikumi UI
    JPEG Plugin
    Adobe DXFDWG Format
    ZigZag v2
    TrimMark v2
    TextWrap Dlg
    ShapeEffects v2
    Adobe Scribble Fill
    Scribble v2
    Saturate
    Round v2
    Roughen v2
    Punk v2
    AdobePathfinderPalette
    Overprint
    OffsetPath v2
    AI Object Mosaic Plug-in
    MaskHelper v2
    Inverse
    FuzzyEffect v2
    Find
    Expand
    DropShadow
    Distort v2
    Colors
    Cleanup
    Adjust
    AddArrowHeads v3
    Add Anchor Points
    Adobe Custom Workspace
    Vectorize
    AdobeTransparencyEditor
    AdobeTransformObjects
    Transform v2
    Adobe Symbol Palette Plugin
    SVG Filter Effect v2
    Stroke Offset v2
    GradientMeshPlugin
    Services
    SeparationPreviewPlugin
    Scripts Menu
    ScriptingSupport
    Print Plugin
    Adobe Perspective Guides
    Package
    Adobe Nudge
    AdobeNavigator
    Adobe Live Shapes
    Adobe Path Blends
    AdobeLinkPalette
    Kinsoku Dlg
    KBSC Plugin
    IdeaFileFormat
    AdobeAlignObjects
    Flattening Preview
    FileClipboardPreference
    DynamicCorners
    DocInfo
    CSSExtract
    ContextMenuTouch
    Character and Paragraph Styles
    AI Bottlenecks Plugin
    Asset Management
    Adobe Art Style Plugin
    AdobeArtboardPanel
    AppBarControls
    Alternate Glyph Palette
    3D v2
    PDF File Format
    GPU Info:
    OpenGL Version: 3.3.0 - Build 8.15.10.2712
    Extensions: GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_blend_color GL_EXT_abgr GL_EXT_texture3D GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_SGIS_texture_edge_clamp GL_SGIS_generate_mipmap GL_EXT_draw_range_elements GL_SGIS_texture_lod GL_EXT_rescale_normal GL_EXT_packed_pixels GL_EXT_texture_edge_clamp GL_EXT_separate_specular_color GL_ARB_multitexture GL_EXT_texture_env_combine GL_EXT_bgra GL_EXT_blend_func_separate GL_EXT_secondary_color GL_EXT_fog_coord GL_EXT_texture_env_add GL_ARB_texture_cube_map GL_ARB_transpose_matrix GL_ARB_texture_env_add GL_IBM_texture_mirrored_repeat GL_EXT_multi_draw_arrays GL_NV_blend_square GL_ARB_texture_compression GL_3DFX_texture_compression_FXT1 GL_EXT_texture_filter_anisotropic GL_ARB_texture_border_clamp GL_ARB_point_parameters GL_ARB_texture_env_combine GL_ARB_texture_env_dot3 GL_ARB_texture_env_crossbar GL_EXT_texture_compression_s3tc GL_ARB_shadow GL_ARB_window_pos GL_EXT_shadow_funcs GL_EXT_stencil_wrap GL_ARB_vertex_program GL_EXT_texture_rectangle GL_ARB_fragment_program GL_EXT_stencil_two_side GL_ATI_separate_stencil GL_ARB_vertex_buffer_object GL_EXT_texture_lod_bias GL_ARB_occlusion_query GL_ARB_fragment_shader GL_ARB_shader_objects GL_ARB_shading_language_100 GL_ARB_texture_non_power_of_two GL_ARB_vertex_shader GL_NV_texgen_reflection GL_ARB_point_sprite GL_ARB_fragment_program_shadow GL_EXT_blend_equation_separate GL_ARB_depth_texture GL_ARB_texture_rectangle GL_ARB_draw_buffers GL_ARB_color_buffer_float GL_ARB_half_float_pixel GL_ARB_texture_float GL_ARB_pixel_buffer_object GL_EXT_framebuffer_object GL_ARB_draw_instanced GL_ARB_half_float_vertex GL_ARB_occlusion_query2 GL_EXT_draw_buffers2 GL_WIN_swap_hint GL_EXT_texture_sRGB GL_ARB_multisample GL_EXT_packed_float GL_EXT_texture_shared_exponent GL_ARB_texture_rg GL_ARB_texture_compression_rgtc GL_NV_conditional_render GL_EXT_texture_swizzle GL_ARB_sync GL_ARB_framebuffer_sRGB GL_EXT_packed_depth_stencil GL_ARB_depth_buffer_float GL_EXT_transform_feedback GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_ARB_framebuffer_object GL_EXT_texture_array GL_EXT_texture_integer GL_ARB_map_buffer_range GL_EXT_texture_snorm GL_ARB_blend_func_extended GL_INTEL_performance_queries GL_ARB_copy_buffer GL_ARB_sampler_objects GL_NV_primitive_restart GL_ARB_seamless_cube_map GL_ARB_uniform_buffer_object GL_ARB_depth_clamp GL_ARB_vertex_array_bgra GL_ARB_shader_bit_encoding GL_ARB_draw_buffers_blend GL_ARB_geometry_shader4 GL_ARB_texture_query_lod GL_ARB_explicit_attrib_location GL_ARB_draw_elements_base_vertex GL_ARB_instanced_arrays GL_ARB_fragment_coord_conventions GL_EXT_gpu_program_parameters GL_ARB_texture_buffer_object_rgb32 GL_ARB_compatibility GL_ARB_texture_rgb10_a2ui GL_ARB_texture_multisample GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_timer_query GL_ARB_vertex_array_object GL_ARB_provoking_vertex
    Number of Displays: 1
    Number of Drivers: 2
    Driver[0] Name: AMD Radeon HD 7650M Series
    Driver[0] Driver Version: 8.951.9.3000
    Driver[0] Driver Date: 20120418000000.000000-000
    Driver[0] Adapter RAM: 1024
    Driver[0] Installed Display Drivers: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.d ll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver[1] Name: Intel(R) HD Graphics 4000
    Driver[1] Driver Version: 8.951.9.3000
    Driver[1] Driver Date: 20120418000000.000000-000
    Driver[1] Adapter RAM: 1805
    Driver[1] Installed Display Drivers: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumd32,igd10umd32,igd10umd32

    [*duplicate*|http://forums.sun.com/thread.jspa?threadID=5297139]

  • Windows 7 x64 can't read/install any printer drivers from Windows Server 2003 x64 (AMD64 folder and HP Deskjet 855c)

    I read the thread Widows 7 printer
    HP deskjet 855c driver about possible installation of HP855c drivers onto Windows 7 x64 from "Windows Server 2003 x64" CD but I didn't have enough luck to succeed with doing it on my laptop. That thread appears to be dead now
    as it is marked "Answered", so I'm asking for help here. I have Toshiba Satellite P500 with Windows 7 Home Premium 64-bit (http://i55.tinypic.com/2zgth6v.jpg). 
    Let me tell you first that I don't have access to Windows Server 2003 x64 or XP Pro 64 CD's. However I did some research online, which eventually forced me to learn about the "file sharing". After extensive search I was able to get the copies
    of AMD64 folders from Windows Server 2003 R2 Standard x64 with SP2 and
    XP Pro 64. The reason that I went also after XP Pro was because I thought that the extra wording "R2 Standard x64 with SP2" in description of "Windows Server 2003" did not reflect the exact name provided by poster
    Alan. I couldn't find just "Windows Server 2003 x64" (does it matter?).
    Anyway, I followed first the drill with running "printui /s /t2" and disabling UAC, and then in both cases I was able to locate the
    NTPRINT.INF file (http://oi51.tinypic.com/9qwvt2.jpg - this image is from XP Pro AMD64 folder) but each time when I
    attempted to install the driver, I got the same message stating:
    "The folder you specified doesn't contain a compatible software drive for your device. If the folder contains the driver, make sure it's designed to work with Windows for x64-based systems." (http://oi53.tinypic.com/27yveiw.jpg)
    Why aren't there x64 drivers?
    During several installation attempts I had the printer connected to or disconnected from my laptop. It didn't make any difference. I must add that for this purpose I had to use different cable than the original one designated only for the
    Parallel port in my old desktop with Windows XP. My new laptop with Windows 7 x64 came only with 3 USB ports (plus 1 HDMI and 1 Serial). Because of that situation I bought in advance a new printer cable called “USB to 36-pin Parallel Port Adapter
    Cable” (http://www.amazon.com/gp/product/B003A8I75E). I'm not sure, if it will work until I can install the printer.
    Besides, nobody talked about this issue yet. I was also playing with the port choices in "Add printer" step; changing from default LPT1 to USB001 with the same negative results.
    I don't know what I'm doing wrong. I was very hopeful after reading positive "case closed" notes there.
    Can anyone help me here, maybe by making the necessary files available for download? I'm willing to pay for such assistance or make a donation, if necessary. Seriously. Judging by the large number of views of the original
    thread, one could assume that there is a potential demand for such service. It would be more human to pay few bucks for a few driver files than $900 for the whole Windows Server 2003 x64 CD, no? Can Microsoft accomodate me/us, please? :)
    Andrew*
    P.S. I was advised to come for help here from
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/windows-7-x64-cant-readinstall-any-printer-drivers/4e7d06e1-33a5-4597-be70-4fdc087a63a7?msgId=9a045994-0d31-4d40-b17d-dba372393ee4

    I have my HP 855c/driver working on Win 7 Ultimate x64. I used the 'printui /s' procedure and 4 files described above with some minor changes.
    I pulled WindowsServer2003.WindowsXP-KB914961-SP2-x64-ENU.exe down from the Microsoft website. Running the file causes the exe to unpack into a temp folder at the root drive. A 'Setup Error' message box is displayed once the file is run. I left this
    message box up until I copied ntprint.inf, ntprint.cat, and sp2.cab from the temp folder.
    I copied driver.cab from a Windows XP Pro disc. I also needed amd64\stdnames.gpd which was already in my Windows 7 c:\windows\system32\spool\drivers\x64\3 folder.  
    I created a folder with the 5 files (ntprint.inf, ntprint.cat, sp2.cab, driver.cab, and amd64\stdnames.gpd). This is my 'Have Disc' folder. 
    I followed the 'printui /s' instructions, first changing the permissions mentioned above and then installing the driver. Next I followed the instructions to add a printer from Control Panel 'Devices and Printers' - 'Add Printer', choosing to 'use an existing
    driver' when installing the HP 855c.
    I used a slightly different ntprint.inf, size 1570418. The readable contents of ntprint.inf is as follows. Notice the line 'CatalogFile=ntprint.cat' is not included. I tried using the 1570468 version of ntprint.inf; when I did I received an incompatibility
    message (probably the same one mentioned above).
    ; NTPRINT.INF (for Windows Server 2003 family)
    ; List of supported printers, manufacturers
    [Version]
    Signature="$Windows NT$"
    Provider=%MS%
    ; LayoutFile=layout.inf
    ClassGUID={4D36E979-E325-11CE-BFC1-08002BE10318}
    Class=Printer
    DriverVer=10/01/2002,5.2.3790.4533
    [ClassInstall32.NT]
    AddReg=printer_class_addreg
    [printer_class_addreg]
    HKR,,,,%PrinterClassName%
    HKR,,Icon,,"-4"
    HKR,,Installer32,,"ntprint.dll,ClassInstall32"
    HKR,,NoDisplayClass,,1
    HKR,,EnumPropPages32,,"printui.dll,PrinterPropPageProvider"
     Good luck

  • I can not load my yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server. Apache/2.2.9 (Debian) mod_jk/1.2.26 PHP/5.2.6-1+lenny4 with Suhosin-Patch etc... (too many characters for your ? page

    Can't log into yahoo email. I get the following message: "Not Found The requested URL /mc/showMessage was not found on this server.

    OK here is the problem I am having with this.. It might be related to my own machine but I need help where to look..
    on the command line using mintty on XP I have this:
    $ nslookup us.mg6.mail.yahoo.com
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.155, 216.115.101.178, 216.115.110.119, 216.115.101.179
    98.136.145.157, 98.136.145.154, 216.115.110.118, 98.136.145.156
    Aliases: us.mg6.mail.yahoo.com, geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    HOwever when I look in firebug for where the ip for the above domain is this is what I get:
    66.115.130.31 clearly not listed above..
    Let's check the aliases
    $ nslookup geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 216.115.110.118, 98.136.145.156, 98.136.145.155, 216.115.101.178
    216.115.110.119, 216.115.101.179, 98.136.145.157, 98.136.145.154
    Aliases: geoycpi-uno-deluxe.gycpi.b.yahoodns.net
    geoycpi-uno.gycpi.b.yahoodns.net
    nope
    $ nslookup geoycpi-uno.gycpi.b.yahoodns.net
    Non-authoritative answer:
    Server: Wireless_Broadband_Router.home
    Address: 192.168.1.1
    Name: any-ycpi-uno.aycpi.b.yahoodns.net
    Addresses: 98.136.145.156, 98.136.145.155, 216.115.110.118, 216.115.101.179
    98.136.145.157, 216.115.101.178, 98.136.145.154
    Aliases: geoycpi-uno.gycpi.b.yahoodns.net
    nope
    where is this 66.115.130.31 ip comming from.. why isn't firefox using native DNS lookup?
    When I do a reserve lookup on that ip it points to nationalnet.com as the top SOA..
    any ideas?

  • Why att store can not help for unlocking the phone

    I followed the instructions to unlock our two old iphones after having iPhone 6. I received "unlock" message for one phone and did not receive the message for other phone. I am not sure if the phone has been unlocked. I went to AT&T store at Bridgewater Commons, NJ. and like to know if it Is unlocked. I was told that they can not tell and I need go to T mobile store to find out. I stopped by T mobile and found out the phone is still locked. So I went back to the AT&T store to try getting help. Because I already tried to unlock this phone three times before. There were 10 ATT people in the store and only two or three customers there. I asked one of employees to tell me what I need to do. I was told that they do not have the service to help unlocking and I need to call customer service. I said to her that you have 10 employees here and why can not help, I would like to speak to the store manager. The store manager Dawn was there and she told me the same thing. They can not help and I need to call the customer service. I kept asking but why you can not help. Finally she said that she can help me to call the customer. She called and the phone was not go through. Finally the employee asked me the phone number and I thought that maybe she will help me to unlock. Actually she just made another unlock request online for me and I need to wait the email in 24 hours and redo the unlock process later. I would to know why att store can not help the customers to unlock their old phones after getting the new phones. Why att keeps 10 employees in one store and can not help to solve customer problems.

    Xiyufu wrote:
    ... I would to know why att store can not help the customers to unlock their old phones after getting the new phones. Why att keeps 10 employees in one store and can not help to solve customer problems.
    AT&T keeps 10 employees at a store in case they need them to assist customers with purchasing items, or with items recently purchased.
    The Store representatives can't help you with the unlock portion because it requires access to systems they are not authorized to access. If store employees could access the unlock system (other than the very same portal you can access) then there would be a high risk that there would be inapropriate unlocks by employees for their friends & relatives.  AT&T's solution is to not allow them access to those systems, and have everyone go through the same process so that everyone gets the same treatment.  If you are having problems with your unlock requests through the portal, try contacting customer support or you can send a private message to the escalation team at ATT Customer Care and someone will get in touch with you in two to three business days to help you get a resolution to your problems.
    To check for their reply, click the little blue envelope. in the top bar near your username.

  • How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    How can I get my ES2 loops to play correctly? I keep getting the message that the audio is not found when I drag the loops from my audio browser even though they play fine in the preview.

    It's exactly as I stated. Whenever I try to drag these kinds of loops (ESX24 / software instrument loops? the ones marked in green with the white music note next to them) from the loop browser into the timeline a message comes up saying Audio Not Found for that loop.  And a new track is created automatically when loops are dragged into the timeline, so I'm not creating some other random / synth instrument track so I'm not sure  what the deal is... But perhaps I'll try creating a software instrument track first and then drag the loop into that track and see what happens - maybe there's something with the default settings that automatically creates audio tracks whenever loops are imported?

  • I restored my ipod, when I went to put everything back on it, I got a message that said, "an error writing to the device, can not sinc.  Then it said the required disc can not be found.  Now what do I do, I have all of this music and apps that I can't get

    Before I restored my ipod, I backed it up then I updated and restored.  The problem is when I went to put everything back on it, I got a message saying that an error writing to the device, can not sync.  Then another message appeared saying that "the required disc can not be found.  Now what do I do?

    Try resetting the iPOd. Nothing will be lost.
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Also, delet the iPod Phot Cache folder for the second error. For its loation see:
    iTunes: Photo sync creates iPod Photo Cache folder

Maybe you are looking for

  • How to add Line items to Accounting Doc

    Hi All, I want to capture the amount of inventory to a separate GL accounts while doing GR. Accounting Document should look like this:- Inventory a/c 1000 BSX GR/IR a/c           1000- WRX 1New line a/c  1000 2New line a/c    1000- How can we achieve

  • System Image Utility - Takes FOREVER

    13 hours ago, I asked System Image Utility 10.5 to create a NetInstall image of a 75GB Leopard partition. It's only 40% done. It's definately working on it (ie the percentages increase) but this seems ridiculous. Source System: iMac 20" Intel Core Du

  • IPod touch won't pair with Bose bluetooth anymore.

    I've been using my new Bose Bluetooth speaker with the newest iPod touch and I connected fine and it's been playing everything good for weeks. When I usually play it my iPod is on a dock charger but when i put it on my ihome today and tried to choose

  • Forwarding work item

    Hi Forum, When we forward a workitem from Inbox of an approver.. 1)Which BADI is trigered? I tried puting a break point in workflow BADI but it is not trigered when i pushed the Send button. 2)Are any mails trigered? Regards, Anubhav

  • CS3 won't print anymore

    Since I installed LR2, CS3 won't print any more. I worked already with LR1.4 and LR2beta. When I give a print command in CS3 I get two warnings: first that I have to install a printer and second that the print command can not be completed because of