[ODBC Driver Manager] Driver does not support this function

HI every body
In Win Server 2008 R2 , I tried to retrieve data from my ODBC Driver
 by Report Builder , my connection test is successful , but after any retrieve data by SQL Statement I encounter with this Error :
IM0001: [Microsoft] [ODBC Driver Manager] Driver does not support this function
I use Win Server 2008 R2 , and my ODBC Driver installed on :
%SystemRoot%\SysWOW64\odbcad32.exe
Can anyone help me to solve this problem, its realy urgent for me ,
PLEASE HELP ………………..

ODBC Driver name is PMSDK (32 bit) and installed by Primavera software
I use SQL Report Builder to connect the driver and try SQL Statement in it
Report Builder may be executing an ODBC function to retrieve meta data, and that function is not supported by the PMSDK driver.  Are you using the latest version of the PMSDK driver?  You might try turning on ODBC tracing to find out the problem
function. 
Dan Guzman, SQL Server MVP, http://www.dbdelta.com

Similar Messages

  • [unixODBC][Driver Manager]Driver does not support this function {IM001}

    Hello,
    I start from the end and details show below - this error message i got in sql session:
    SQL> select count(*) from EnergyType@ENERGOPLAN;
    select count(*) from EnergyType@ENERGOPLAN
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    ORA-02063: preceding 2 lines from ENERGOPLAN
    SQL>
    First question - is Oracle Heterogeneous Services are licensed for standard edition ? I cant find this information, and my database - is SE 11.2.0.3.0 - 64bit.
    If its ok and HS are licensed for SE, then please see details of my problem:
    ----OS and packages version
    [oracle@aris_sv_db log]$ uname -a
    Linux aris_sv_db 2.6.18-308.24.1.el5 #1 SMP Tue Dec 4 17:43:34 EST 2012 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ rpm -qa | grep odbc
    [oracle@aris_sv_db log]$ rpm -qa | grep unixodbc
    [oracle@aris_sv_db log]$ rpm -qa | grep unixODBC
    unixODBC-libs-2.2.11-10.el5
    unixODBC-libs-2.2.11-10.el5
    unixODBC-devel-2.2.11-10.el5
    unixODBC-2.2.11-10.el5
    unixODBC-devel-2.2.11-10.el5
    [oracle@aris_sv_db log]$ rpm -qa | grep freetds
    freetds-0.91-1.el5.rf
    [oracle@aris_sv_db log]$
    -----ODBC.INI, ODBCINST.INI and FREETDS.CONF
    [oracle@aris_sv_db log]$ more /home/oracle/.odbc.ini
    [ENERGOPLAN]
    Driver = FreeTDS
    Servername = ENERGOPLAN
    Database = ess2
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ more /etc/odbcinst.ini
    # Example driver definitions
    [FreeTDS]
    Description = MSSQL Driver
    Driver = /usr/lib64/libtdsodbc.so.0
    #Setup = /usr/lib64/libtdsodbc.so.0
    #Driver = /usr/lib64/libodbc.so
    #Driver = /usr/lib/libodbc.so
    UsageCount = 1
    Trace = Yes
    TraceFile = /tmp/freetds.log
    [ODBC]
    DEBUG = 1
    TraceFile = /tmp/sqltrace.log
    Trace = Yes
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ more /etc/freetds.conf
    # A typical Microsoft server
    [ENERGOPLAN]
    host = 192.168.10.64
    port = 1433
    tds version = 8.0
    # client charset = UTF-8
    client charset = cp1251
    [oracle@aris_sv_db log]$
    ----CHECK CONNECT from ODBC
    [oracle@aris_sv_db log]$ isql -v ENERGOPLAN user pass
    | Connected! |
    | |
    | sql-statement |
    | help [tablename] |
    | quit |
    | |
    SQL> select count(*) from EnergyType;
    | |
    | 8 |
    SQLRowCount returns 1
    1 rows fetched
    SQL> [oracle@aris_sv_db log]$ tsql -S ENERGOPLAN -U user -P pass
    locale is "en_US.UTF-8"
    locale charset is "UTF-8"
    using default charset "cp1251"
    1> select count(*) from EnergyType;
    2> go
    8
    (1 row affected)
    1> [oracle@aris_sv_db log]$
    ----LISTENER.ORA, TNSNAMES and initENERGOPLAN.ora
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # listener.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    SID_LIST_ENERGOPLAN =
    (SID_LIST =
    (SID_DESC=
    (SID_NAME=ENERGOPLAN)
    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1)
    (PROGRAM=dg4odbc)
    (ENVS="LD_LIBRARY_PATH=/usr/lib64:/u01/app/oracle/product/11.2.0/dbhome_1/lib")
    ENERGOPLAN =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = PNPKEY))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.10.72)(PORT = 1523))
    ADR_BASE_LISTENER = /u01/app/oracle
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora
    # tnsnames.ora Network Configuration File: /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    ENERGOPLAN =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.10.72)(PORT=1523))
    (CONNECT_DATA=(SID=ENERGOPLAN))
    (HS=OK)
    [oracle@aris_sv_db log]$ more /u01/app/oracle/product/11.2.0/dbhome_1/hs/admin/initENERGOPLAN.ora
    # This is a sample agent init file that contains the HS parameters that are
    # needed for the Database Gateway for ODBC
    # HS init parameters
    HS_FDS_CONNECT_INFO = ENERGOPLAN
    #HS_FDS_CONNECT_INFO = 192.168.0.199:1433//test
    HS_FDS_TRACE_LEVEL = DEBUG
    #HS_FDS_TRACE_FILE_NAME = /tmp/hs1.log
    HS_FDS_TRACE_FILE_NAME = /u01/app/oracle/product/11.2.0/dbhome_1/hs/log/mytrace.log
    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbc.so #/usr/lib64/libtdsodbc.so.0
    #HS_FDS_SHAREABLE_NAME = /usr/lib64/libtdsodbc.so.0
    #HS_FDS_SHAREABLE_NAME = /usr/lib/libodbc.so
    #HS_LANGUAGE=american_america.we8iso8859p1
    #HS_LANGUAGE=AMERICAN_AMERICA.AL32UTF8
    #HS_LANGUAGE=AMERICAN_AMERICA.CL8MSWIN1251
    #HS_LANGUAGE=RUSSIAN_RUSSIA.UTF8
    #HS_LANGUAGE=Russian_CIS.AL32UTF-8
    #HS_FDS_FETCH_ROWS=1
    HS_NLS_NCHAR = UCS2
    HS_FDS_SQLLEN_INTERPRETATION=32
    # ODBC specific environment variables
    set ODBCINI=/home/oracle/.odbc.ini
    set ODBCINSTINI=/etc/odbcinst.ini
    #HS_KEEP_REMOTE_COLUMN_SIZE=ALL
    #HS_NLS_LENGTH_SEMANTICS=CHAR
    #HS_FDS_SUPPORT_STATISTICS=FALSE
    # Environment variables required for the non-Oracle system
    #set <envvar>=<value>
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ tnsping ENERGOPLAN
    TNS Ping Utility for Linux: Version 11.2.0.3.0 - Production on 01-APR-2013 16:27:49
    Copyright (c) 1997, 2011, Oracle. All rights reserved.
    Used parameter files:
    /u01/app/oracle/product/11.2.0/dbhome_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=192.168.10.72)(PORT=1523)) (CONNECT_DATA=(SID=ENERGOPLAN)) (HS=OK))
    OK (0 msec)
    [oracle@aris_sv_db log]$
    ----CREATE DBLINK and test from sqlplus
    CREATE DATABASE LINK "ENERGOPLAN" CONNECT TO "user" IDENTIFIED BY "pass" USING 'ENERGOPLAN';
    [oracle@aris_sv_db log]$ sqlplus / as sysdba
    SQL*Plus: Release 11.2.0.3.0 Production on Mon Apr 1 16:30:14 2013
    Copyright (c) 1982, 2011, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Release 11.2.0.3.0 - 64bit Production
    SQL> select count(*) from EnergyType@ENERGOPLAN;
    select count(*) from EnergyType@ENERGOPLAN
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    ORA-02063: preceding 2 lines from ENERGOPLAN
    SQL>
    ----logs from hs and odbc
    [oracle@aris_sv_db log]$ tail -50 ENERGOPLAN_agt_12117.trc
    12 VARCHAR N 100 100 0/ 0 1000 0 200 ConsumptionYearCostUOM
    3 DECIMAL N 24 24 9/ 3 0 0 0 ConsumptionYearFactorAmount
    -7 BIT N 1 1 0/ 0 0 0 20 NeedToBeApprovedByREK
    Exiting hgodtab, rc=0 at 2013/04/01-16:30:42
    Entered hgodafr, cursor id 0 at 2013/04/01-16:30:42
    Free hoada @ 0x14e5fd20
    Exiting hgodafr, rc=0 at 2013/04/01-16:30:42
    Entered hgopars, cursor id 1 at 2013/04/01-16:30:42
    type:0
    SQL text from hgopars, id=1, len=36 ...
    00: 53454C45 43542043 4F554E54 282A2920 [SELECT COUNT(*) ]
    10: 46524F4D 2022454E 45524759 54595045 [FROM "ENERGYTYPE]
    20: 22204131 [" A1]
    Exiting hgopars, rc=0 at 2013/04/01-16:30:42
    Entered hgoopen, cursor id 1 at 2013/04/01-16:30:42
    hgoopen, line 87: NO hoada to print
    Deferred open until first fetch.
    Exiting hgoopen, rc=0 at 2013/04/01-16:30:42
    Entered hgodscr, cursor id 1 at 2013/04/01-16:30:42
    Allocate hoada @ 0x14e5fd80
    Entered hgodscr_process_sellist_description at 2013/04/01-16:30:42
    Entered hgopcda at 2013/04/01-16:30:42
    Column:1(): dtype:4 (INTEGER), prc/scl:10/0, nullbl:1, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2013/04/01-16:30:42
    Entered hgopoer at 2013/04/01-16:30:42
    hgopoer, line 231: got native error 0 and sqlstate IM001; message follows...
    [unixODBC][Driver Manager]Driver does not support this function {IM001}
    Exiting hgopoer, rc=0 at 2013/04/01-16:30:42
    hgodscr, line 407: calling SQLSetStmtAttr got sqlstate IM001
    Free hoada @ 0x14e5fd80
    hgodscr, line 464: NO hoada to print
    Exiting hgodscr, rc=28500 at 2013/04/01-16:30:42 with error ptr FILE:hgodscr.c LINE:407 FUNCTION:hgodscr() ID:Set array fetch size
    Entered hgoclse, cursor id 1 at 2013/04/01-16:31:24
    Exiting hgoclse, rc=0 at 2013/04/01-16:31:24
    Entered hgocomm at 2013/04/01-16:31:24
    keepinfo:0, tflag:1
    00: 4F52434C 2E343535 32623466 342E362E [ORCL.4552b4f4.6.]
    10: 32322E37 363237 [22.7627]
    tbid (len 20) is ...
    00: 4F52434C 5B362E32 322E3736 32375D5B [ORCL[6.22.7627][]
    10: 312E345D [1.4]]
    cmt(0):
    Entered hgocpctx at 2013/04/01-16:31:24
    Exiting hgocpctx, rc=0 at 2013/04/01-16:31:24
    Exiting hgocomm, rc=0 at 2013/04/01-16:31:24
    Entered hgolgof at 2013/04/01-16:31:24
    tflag:1
    Exiting hgolgof, rc=0 at 2013/04/01-16:31:24
    Entered hgoexit at 2013/04/01-16:31:24
    Exiting hgoexit, rc=0
    [oracle@aris_sv_db log]$
    [oracle@aris_sv_db log]$ tail -50 /tmp/sqltrace.log
    Native = 0x7fff6ca974f4
    Message Text = 0x14e5f968
    Buffer Length = 510
    Text Len Ptr = 0x7fff6ca97750
    [ODBC][12117][SQLGetDiagRecW.c][582]
    Exit:[SQL_SUCCESS]
    SQLState = IM001
    Native = 0x7fff6ca974f4 -> 0
    Message Text = [[unixODBC][Driver Manager]Driver does not support this function]
    [ODBC][12117][SQLGetDiagRecW.c][540]
    Entry:
    Statement = 0x14e399f0
    Rec Number = 2
    SQLState = 0x7fff6ca97700
    Native = 0x7fff6ca974f4
    Message Text = 0x14e5f908
    Buffer Length = 510
    Text Len Ptr = 0x7fff6ca97750
    [ODBC][12117][SQLGetDiagRecW.c][582]
    Exit:[SQL_NO_DATA]
    [ODBC][12117][SQLEndTran.c][315]
    Entry:
    Connection = 0x14dbd4b0
    Completion Type = 0
    [ODBC][12117][SQLGetInfo.c][214]
    Entry:
    Connection = 0x14dbd4b0
    Info Type = SQL_CURSOR_COMMIT_BEHAVIOR (23)
    Info Value = 0x7fff6ca9781e
    Buffer Length = 8
    StrLen = 0x7fff6ca9781c
    [ODBC][12117][SQLGetInfo.c][528]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLEndTran.c][488]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLDisconnect.c][204]
    Entry:
    Connection = 0x14dbd4b0
    [ODBC][12117][SQLDisconnect.c][341]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLFreeHandle.c][268]
    Entry:
    Handle Type = 2
    Input Handle = 0x14dbd4b0
    [ODBC][12117][SQLFreeHandle.c][317]
    Exit:[SQL_SUCCESS]
    [ODBC][12117][SQLFreeHandle.c][203]
    Entry:
    Handle Type = 1
    Input Handle = 0x14dbb0c0
    [oracle@aris_sv_db log]$

    To see which ODBC function DG4ODBC is looking for and unixODBC isn't supporting it would be best to get an ODBC trace file. But as your unixODBC driver (unixODBC-2.2.11-10.el5) is outdated and these old drivers had a lot of issues when being used on 64bit operating systems (for example wrong sizeofint etc). So best would be to update the unixODBC Driver manager to release 2.3.x. More details can be found on the web site: www.unicodbc.org
    - Klaus

  • Error: Driver does not support this function

    Hi there people!
    I'm a newbie in jsp and I encountered this error: Driver does not support this function. I'm using odbc:jdbc and access. Can someone please tell me what is wrong?
    <%@ page import = "java.sql.*" %>
    <%@ page import="java.io.*" %>
    <%@ page import="java.util.*" %>
    <HTML>
    <title>Stock Portfolio</title>
    <body>
    <body bgcolor="gray"><center>
    <table border = 1>
    <tr>
         <td><th>Symbol</td></th>
         <td><th>Type of Transaction</td></th>
         <td><th>Date</td></th>
         <td><th>Shares</td></th>
         <td><th>Price</td></th>
         <td><th>Stock Commission</td></th>
         <td><th>Stock Brocker Name</td></th>
    <tr>
    <%     String symbol = request.getParameter("symbol");
           String type = request.getParameter("type");
           String date = request.getParameter("date");
            String shares = request.getParameter("shares");
            int ishares = Integer.parseInt(shares);
            String price = request.getParameter("price");
            float fprice = Float.parseFloat(price);
            String commission = request.getParameter("commission");
            float fcommission = Float.parseFloat(commission);
            String bname = request.getParameter("bname");
    %>
    <% String url ="jdbc:odbc:Product";
       try
       { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         Connection con = DriverManager.getConnection(url,"","");
         String query = "INSERT INTO Stock (dbsymbol,dbtype,dbdate,dbshares,dbprice,dbcommission,dbname) VALUES (?,?,?,?,?,?,?)";
          PreparedStatement pstmt = con.prepareStatement(query);
          pstmt.setString(1,symbol);
           pstmt.setString(2,type);
           pstmt.setString(3,date);
           pstmt.setInt(4,ishares);
           pstmt.setDouble(5,fprice);
           pstmt.setDouble(6,fcommission);
           pstmt.setString(7,bname);
           pstmt.executeUpdate(query);
          }catch (Exception e)
           {System.out.println(e.getMessage());
    %>
    </body>
    </html>      Thanks!

    Sorry I need to hurry up. But here is link i found relating same problem. Please check this and see if it might help you.
    [http://forum.java.sun.com/thread.jspa?threadID=564872&messageID=2784526|http://forum.java.sun.com/thread.jspa?threadID=564872&messageID=2784526]
    Read reply #5.
    It says
    You're getting this exception because you're using the executeUpdate() method that returns a ResultSet. That's a JDBC 3.0 function, and the JDBC-ODBC bridge only supports JDBC 1.0.Good Luck.

  • Error -11040 Driver does not support this function- Informix SE db

    Hello,
      Weu2019re getting an error -11040 "Driver does not support this function" when trying to connect to an ODBC data source to an InformixSE database. This is with Crystal 2010 and 2008 on a Windows XP sp2 box. Weu2019re trying to use the ODBC(RDO) choice for a new connection.
      The Informix ODBC driver has been loaded. We tried 3 versions, the 2.40 and 3.70(latest) ones from IBM, and one that I believe came with Crystal (CR xxxx). I tried turning on the ODBC trace file, but it didnu2019t write anything to the log. We are supplying the same log in credentials as with Excel.
       The Informix database we use is Informix SE (Standard Engine) v5.10 on separate machine running Unix (Aix) with the Informix-Net daemon running to handle odbc connectivity. We are able to connect from Excel to the Informix database.
      I donu2019t know what ODBC function Crystal may be expecting from the driver that it doesnu2019t seem to support and how to tell Crystal to not need it.
    Thanks,
    Mike

    Hi Mike,
    According to the Platforms for DB support we only support these Informix data sources:
    IDS (Informix Dynamic Server)     11.50       32 bit       64 bit        Linux               AIX                   Solaris
    IDS          IDS Client 11.5                                     Direct     Direct     Not Supported     Not Supported     Not Supported
    ODBC      IBM Informix ODBC SDK 3.50             Direct     Direct     Direct             Direct             Direct
    ODBC      DataDirect ODBC 6.0 SP2 (10)      Direct     Direct     Direct             Direct             Direct
    You may want to try the Data Direct 6.x drivers as a test.
    CR in the .NET IDE is running under 32 bit mode so make sure you are using the 32 bit Client.
    Don

  • Error when trying to re-mount a VHDx (the version does not support this version of the file format)

    Hi,
    I have a vhdx on a NAS that I use for server backup. I created the VHDx via disk management, mounted it and assigned drive letter X. I now created a script that gets triggered upon startup via task scheduler to remount the VHD. If I try to mount it however,
    it tells me this:
    No matter what I try, I can't mount it. Double clicking just says this:
    Eventviewer spits out error 137: The default transaction resource manager on volume X: encountered a non-retryable error and could not start.  The data contains the error code.
    How do I trouble shoot this? oO Originally I had created the VHD as expanding, where now I recreated it at it's full size of 900GB. Maybe that will make a difference.
    Thanks for the help
    Cheers
    Maike

    Hi Maike,
    Do you mean that you can mount the VHDX via disk management but cannot mount it via a script? If so, please provide the diskpart’s mount commands in the script.
    In the meantime, check if destination partition is NTFS formatted.
    Problem with Attach VHD function: The version does not support this version of the file format
    http://www.paulauskis.lt/2010/03/problem-with-attach-vhd-function.html
    Please Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there.
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Hi Mandy,
    I can not mount it after a reboot. So I create the VHDx via disc management and attach it afterwards without problem. After the server reboots and the attached VHDx dropps, I can't remount it. Gives me the errors I posted above.
    As I had mentioned above, I recreated the VHDx at it's full size this time, rather than expanding. That worked just fine and I can remount after reboot.
    So I consider this dealt with ;)
    Thanks anyway!

  • Satellite R830-143 - BIOS update does not support this operating system

    Hi,
    I received a notification via Tempro that a BIOS upgrade was available. I downloaded the ZIP file (bios-20120209125153.zip), extracted the package (BIOS360_EC140_WIN.exe) and ran it according to the instructions.
    The package runs, gives the "Extracting files..." progress bar then displays a dialogue entitled "TOSHIBA BIOS Package Ver.4.1.2" that says: "This BIOS package does not support this operating system."
    I am running Windows 7 Home Premium 64-bit on a Satellite 830R-143 with the short part no. PT32LE
    Does anyone know what the problem is?
    Thanks in advance for your help...

    Notebok Satellite R830-14U (part ? PT32LE) with BIOS 2.70 & EC 1.10
    after upgrade Intel Management Engine Interface v.7.1.52.1176 i can not update BIOS - error "This computer is not supported"
    http://ru.computers.toshiba-europe.com/innovation/dodriverLanguage=42
    The ME Interface provides thermal management for Intel Mainboards. The Intel Management Engine Interface (Intel ME Interface) is the interface between the Intel Management Engine firmware and the host. Drivers and applications on the host that wish to interact with Intel Management Engine through host interface would use the Intel ME Interface host windows driver.
    Model: Tecra R850, Portege R830, Satellite Z830, Qosmio F750, Portege Z830, Satellite Pro S750, Tecra R840, Satellite R830, Satellite Pro R850, Satellite R850
    Downgade Intel Management Engine Interface to 7.00.02.1164 and/or reinstall Value Update Pack (vap-2011-614162421.zip) does not solve the problem.
    What else can I do to fix this problem?

  • "...does not support this type of alias."

    I just reinstalled the OS 10.4 onto my G5 using the erase and install function. The drive is formatted as a Mac OS Extended (Journaled), which is an HFS+ format. I'm trying to copy some files onto the main hard drive from a DVD. I keep getting an error message that says "[the file name] cannot be copied to the destination, perhaps because the destination does not support this type of alias." I researched the message and the only thing I could find was that the error appears if the destination disk is formatted as a UFS disk. I thought maybe I made a mistake when I reinstalled the OS, so I tried to copy the same files to the secondary internal drive and to an external Firewire drive, and I got the same message both times.
    What should I be looking for so that this will work? I'm going to post in a couple other topics, but any help would be greatly appreciated.
    Thank you in advance,
    Lloyd

    Barry,
    I was trying to make back-up copies of my Adobe CS2 disks by copying the disks to the hard drive then burning them to CDs, but I got the error message when I dragged the contents from the original CD to the HD.
    This worked, but it took a while: I Stuffed each CD to the HD, then unStuffed them and used Toast to burn a new CD. A few steps longer, but at least it worked.
    Now, if I could only figure out why the second internal drive does not have the "Ignore Permissions" check box available, I'd be all set.
    Thanks,
    Lloyd

  • Hp the system recovery media does not support this computer, WIN7 GS72 Notebook

    HProduct: GS-B66US (17" I3 notebook)
    OS:             Win7
    Bios Rev:   F.47
    Error message: "hp the system recovery media does not support this computer.  You are not able to restore this system"
    Changes made to system:  Updated bios (I think).
    Getting error messages (at system boot, as windows start, and from the intel hard drive controller) warning me to backup data and hard drive my fail.
    I replaced the harddrive and inserted the first of my 4 recovery DVDs (created before I updated the bios).  After booting from the first recovery disk I get the following message
    "hp the system recovery media does not support this computer. You are not able to restore this system with the media"
    The computer still boots with the old hard drive (with drive failure imminent messages)  I do see support assistant offering another bios update but I did not install it with the hard drive problem
    PLEASE HELP
    TIA

    Hi,
    I think there could be two possible reason. wrong media or systemboard is changed.
    did you create any recovery media yourself or you ordered the recovery media from hp? also, was there any systemboard replacement done before?
    media created on some other computer (same model) may not work on your computer.
    you can order the media from hp.com here.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&docname=c00810334
    also once systemboard is replaced you need to get the configuration settings done for BIOS(only HP can do it).
    hope it helps
    Regards,
    WW
    “I am an HP Employee“
    ***** Click the KUDOS star on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem***

  • The platform does not support this application, but does under other account

    Okay the MSI Gaming App works just fine under my own account on my PC on which I am the administrator. So it isn't a driver related issue.
    Last week I created a second account for my son as he also like to play some games but I dont want him messing up my account.
    I wanted to start the MSI Gaming App on his account as my son was going to play a more graphic demanding game but the MSI Gaming App is only giving me the warning: the platform does not support this application.
    I checked the Security and Permissions for Authentication they all set like they should which works fine for other software and applications.
    Even when I try to run the app as administrator it keeps coming back with this warning.
    Anyone got clue why? Maybe I'm overlooking something obvious but till now I still didn't get the MSI Gaming App to run like it should. Some help please.

    Quote from: JLio01 on 11-December-14, 14:49:39
    1. What's your App version?
    2. What's the mobo/vga/specs of your son's pc?
    First of all thanks for the replies and future replies.
    1.
    Version 1.0.0.18
    2.
    My sons has his own profile/account on my pc so the hardware config and installed drivers are exact the same. And on my profile the App is working fine. So it has nothing to do with mobo/drivers/vga/specs. I already had installed the App before I created his own profile. As administrator I added all the needed permissions to the MSIGamingApp Properties Security Tab. Like I did with all other software he is running on his profile and which are working just fine. For example Teamspeak, Mumble, Several games, MSOffice and so on. I even set the Permissions to Full Control like on my Administrator profile. At the Permission Entry for MSIGamingApp I let the permissions be inherited from the parent object my administrator profile.
    If I would re-install and if during the installation windows would ask for whom the software should be accessible. I only would let Windows do exact the same as I did as administrator in the App Properties Security Tab. That the nice thing about being an admin. Create profile, set permissions and let users on your pc or network access software and applications already installed on the network. So that is why I find it weird this doesnt work.
    Also running the MSIGamingApp as Administrator on his profile gives the exact same warning.
    I do know how to add permissions to the security tab have been doing that several years for some job I had once.
    I could use Afterburner maybe but I don't trust him yet with making changes in Afterburner.
    The MSIGamingApp gives just enough controls OC-Gaming-Silent mode.
    And in case of trying a re-install of the App anyone got an url for a new version?
    Might have found it but it isn't on any MSI webpage.
    I did found something on Guru3D but I'm not aloud to post external links.
    Did found a url linking to a Torrent side but my Bullguard AV blocked this site instantly.
    So a clean url would be nice so to say.
    So weird I cant find this software on http://nl.msi.com/search/MSIGamingApp/product/1 or any other MSI site

  • SL500 " this program does not support this system"

    I've an SL500 with windows 7 64bit system. It has a fresh system installed. I've installed all the necessary drivers correctly.Now I'm not able to install the followind items with system update utility:
    Thinkpad ultranav driver for windows 7
    Thinkpad hotkey features integration driver
    Thinkpad Ultranav utility
    If I try to install manually I receive an error message " this program does not support this system".
    Solved!
    Go to Solution.

    I had the same problem with Thinkpad hotkey features integration driver Version 3.84.1500
    (and the latest version 3.84.2000)
    It is a faulty installation!
    2 Files missing.
    Solution until Lenovo fixes the installation:
    Download and extract latest version.
    Download and extract version 3.81.0100.
    Copy the files SWI32.sys and SWIX64.sys from version 3.81.0100 to the corresponding folder of the latest version.
    Start setup.exe of latest version.
    According to the file properties SWI32.sys and SWIX64.sys are used as 'System Information Detector'.
    No wonder we get the error message 'this program does not support this system'
    Lenovo, please fix it.

  • [290x] MSI Gaming App error "The platform does not support this application."

    Using the latest AMD Omega drivers, I am unable to launch the Gaming App and am presented with this error -  "The platform does not support this application."
    I have tried downloading Gaming APP 3.0.0.16.zip from another post on the topic but I am receiving the same error. The only other thing I've seen as a 'solution' is to install the drivers from the MSI support page for my card - however this is version 14.4 and is over 3 months old, I don't really think that's a viable solution.
    Any ideas?
    Thanks!

    Quote from: JLio01 on 07-January-15, 11:55:18
    Is your vga driver 14.12? Any other settings changed?
    Do you have any other msi or vga software installed?
    Can you do a fresh re-install OS and what's the language of your OS?
    Yes, Catalyst Omega. No other software or hardware changes.
    Yes MSI Afterburner. Have tried uninstalling and installing gaming app, have also not had it running when trying to launch MSI Gaming app. No joy there.
    No I can't, that's not really an option for a piece of software like this which worked before but doesn't since the latest AMD driver updates.
    Quote from: JLio01 on 07-January-15, 16:07:38
    Since your motherboard is not the supported gaming series mobos, there might be something detected wrong with your card. The error message shown if neither motherboard nor vga is supported in Gaming App. I suggest use AMD Catalyst Clean Uninstall Utility to totally uninstall the current driver:
    http://www.techspot.com/drivers/driver/file/information/16748/
    and re-install the latest driver 14.12. I have no problem using Gaming App 3.0.0.16 with my R9 290X, hope you too.
    I have never seen anything stating that you need a supported gaming series motherboard to use the MSI Gaming App - maybe for other features if it has any, but the gaming app I used when I got my card was a little box with a few options for the GPU on it. Tried uninstalling and reinstalling the driver already unfortunately, using both AMD CCUU and a second attempt with DDU. No change at all, the exact same error message.
    But as I've said, the fact that there is more than one person reporting this and older drivers make the gaming app work, it's definitely a software ended problem on certain configurations. I have installed driver 14.4 now and can once again use the gaming app, just as someone with a different card and different motherboard has stated in another thread. xxhttps://forum-en.msi.com/index.php?topic=251885.0xx this solution however is not really acceptable.

  • Exchange 2010 - WS-Management Service does not support

    Hi,
    We have a tool which was used for bulk Mailbox creation, Mailbox Movement etc. This we have used in Exchange 2007 also and was working fine. Now in Exchange 2010 we are facing some issues. Tool is written in VB.
    Exchange 2010 SP2 is running in all servers and we have 2 Mailbox Servers in DAG and 2 HUBCAS in CAS Array/NLB.
    When Team is trying to fetch the DB details in exchange 2010 through tool they are not able to connect and getting error as
    "Connecting to remote Server failed with the following error message. The WS-Management Service does not support the request."
    I have checked everything from Exchange like Remorepowersell status, WinRM, WS Managemet dll location and entry in config file everthing seems to be fine.
    I checked through EMTShooter tool also and no issues reported and connection was success through EMTShooter.
    Pls suggest if anymore we can check to fix the problem.
    Note: everything is working frine from Powershell and Exchange Management console.
    Regards:Mahesh

    Hi
    Yes, i got it confirmed and coding team claims that no issue with code and its working in some other setup.
    <v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f"><v:stroke joinstyle="miter"><v:formulas><v:f
    eqn="if lineDrawn pixelLineWidth 0"><v:f eqn="sum @0 1 0"><v:f eqn="sum 0 0 @1"><v:f eqn="prod @2 1 2"><v:f eqn="prod @3 21600 pixelWidth"><v:f eqn="prod @3 21600 pixelHeight"><v:f eqn="sum @0 0 1"><v:f eqn="prod @6 1 2"><v:f eqn="prod @7 21600 pixelWidth">Below
    is the snapshot of error with coding <v:f eqn="sum @8 21600 0">
      <v:f eqn="prod @7 21600 pixelHeight">
      <v:f eqn="sum @10 21600 0">
     </v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
     <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f">
     <o:lock aspectratio="t" v:ext="edit">
    </o:lock></v:path></v:stroke></v:shapetype><v:shape alt="" id="Picture_x0020_2" o:spid="_x0000_i1025" style="width:631.5pt;height:148.5pt;" type="#_x0000_t75">
    <v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\aralele\AppData\Local\Temp\msohtmlclip1\01\clip_image001.jpg">
    </v:imagedata></v:shape>
    Regards:Mahesh

  • I want to use icloud on my macbook and cant because I am using OSX10.6.8 - I want to upgrade this but I cant upgrade to mountain lion as my mac does not support this - cannot find a way to go to Version 10.7.4 which i understand supports icloud - help

    want to use icloud on my macbook and cant because I am using OSX10.6.8 - I want to upgrade this but I cant upgrade to mountain lion as my mac does not support this - cannot find a way to go to Version 10.7.4 which i understand supports icloud - help to do this please

    If you purchased Lion for your iMac, just log into the Mac App Store from your MacBook using the Apple ID under which you purchased Lion and go to the Purchases page. You will be able to download and install Lion there. 
    searching the internet i found a link to upgrtade to 10.7
    The only place you get get Lion is from the Mac App Store. If you found some other site, that was an illegal copy and almost certainly tied to someone else's Apple ID and hence unusable by you. If the link was just to the Mac App Store, see above.
    As to the problem with synchronization to iCloud, that's not a 10.6 question, so I'd suggest you take up that specific issue in either the Lion or iCloud forums, providing full details, and someone there can probably help you sort things out.
    Regards.

  • Strange IE ExternalInterface Bug: "Object does not support this property or method"

    We have an application on a relatively slow server (I mention
    the speed because it may be relevant).
    The app is flash 8 and uses ExternalInterface to call a
    javascript function in its parent page. It also used the
    ExternalInterface to receive a call from another function. These
    calls happens separately (the outbound one calls up a list view of
    items, clicking on an item calls up the details in the flash
    movie). In between the calls, the flash movie is hidden by moving
    it off screen using absolute positioning.
    On my local development box (Windows XPSP2) this works fine
    in both directions.
    On our production server (LAMP) this works fine in both
    directions in Firefox 1.5 and 2.0
    BUT while the outbound call from Flash to the page works fine
    in Internet Explorer 6 or 7, the call back from the page to the
    flash movie fails with the error messgage "Object does not support
    this method or property"
    We've tried not hiding the flash so it is always present on
    the page and still the browser > flash communication breaks in
    ie.
    We've tried using both the Adobe active content script and
    swfobject to embed the flash in the page with no difference in the
    resultset. In truth we've given up and gone to a two-page solution,
    reloading the flash from the start each time but I wondered if
    anyone had encountered a similar issue? Can't see why it would work
    perfectly in FF but not in IE.

    Not sure if this is your problem, but you do reference the
    Flash object
    differently, depending on the browser. In a video player we
    made, that uses
    JS to communicate back to Flash, I use a function like this
    to modify the
    variable depending on the browser:
    function changeVideo(xname){
    //ff
    if(window.vplayer){
    window.document["vplayer"].SetVariable("theXML", xname);
    window.document["vplayer"].GotoFrame(2);
    window.document["vplayer"].Play();
    //ie
    if(document.vplayer){
    document.vplayer.SetVariable("theXML", xname);
    document.vplayer.GotoFrame(2);
    document.vplayer.Play();
    The Flash is in a <div> named 'vplayer'
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • R9 290 Gaming - MSIGamingApp: The platform does not support this application

    Hey guys,
    I have a MSI R9 290X Gaming 8G and can´t use the gaming app.
    Whenever I try to run the app, I get an error: The platform does not support this application
    So I guess I have the same problem as the dude in that thread:
    https://forum-en.msi.com/index.php?topic=179659.0
    He had the same issue with the R9 290X Gaming 4G. The problem was, someone flashed a sapphire vbios on his new card.
    So can someone check the attached vbios rom, whether it is the right one for my card and not also a sapphire rom or something else?
    Thanks and regards.

    I seem to have the same problem using the Live Update App itself. My card is MSI R9 270X Gaming and I use Windows 8.1 64bit.
    S/N: 602-V303-03SB1311026767

Maybe you are looking for

  • Unable to connect to Android Device with MAC

    Hi I have been trying to connect to my device ( Samsung Galaxy S4) with Edge Inspector but it literaly does nothing except to stand still on "waiting for a connection" on Chrome, wait on the WIFI Name + Loading circle on my device, crashing (unfortun

  • Activation problems

    Folks, having had a number of infuriating encounters with Adobe 'Support', I'm turning to you for assistance. I'm trying to install Photoshop CS (v.8.0) on Windows 7 but it will not activate, it just hangs. Am I right in believing that the two are no

  • I tried to update to 4.0 and computer is extremely slow ever since. Also pop cap games will no longer load

    I followed upload instructions but was never prompted to drag the icon to my applications folder. So I don't believe the upload was complete. When I tried to play a game I received a message that I was trying to upgrade Flash in a system that could n

  • Need new ipod box!

    Hello, well i was wondering if anyone could help me. Here is my story : The click wheel on my fifth gen ipod keeps intermitenly failing to respond. it has became annoying. so i requested service (only bought the ipod in december) i recieved the box a

  • I have installed Lion and the Java update but my CS5 PS will not open jpegs to edit.

    I have loaded Lion, and updated my Java but for some reason my Photoshop doesn't want to load pictures. I can see them in the layers, but the actual image is just not coming up. Maybe this is nothing to do with Lion, but if anyone has any ideas it wo