Problem about installation directory of VSTO addin

Hallo,
our Addin can be installed successfully in any subdirectory under "%ProgramFiles(X86)%". But if we try to install it in customized directory, e.g. "C:\temp\addin". Then all the files are copied but it has an manifest error by starting
Word and then addin can not be loaded.
"Application manifest has either a different computed hash than the one specified or no hash specified at all."
Can Addin only be installed in programm directory or can the manifest be adapted, if yes, how can we do it in Visual Studio?
Thanks very much!
BR
Jie

Hello Jie,
> Can Addin only be installed in programm directory or can the manifest be adapted, if yes, how can we do it in Visual Studio?
No, you can install an add-in to any folder you want. There is no restrictions. You can read more about that in the
Deploying an Office Solution section in MSDN. Pay special attention to the
Deploying an Office Solution by Using Windows Installer article which describes all the required steps for deploying add-ins.
In case if you use ClickOnce see the following similar forum threads that describe an issue:
ClickOnce Deployment Issue
- File Has Different Computed Hash Than Specified In Manifest - Urgent!
ClickOnce Deployment Error: different computed hash than specified in manifest

Similar Messages

  • Problem about Installation J2SDK1.3.1 on Solaris 2.6

    hi,happy new year everyone,
    I have installed J2SDK1_3_1_02-solsparc.sh on Solaris 2.6, and it prompted to me installation sucessfully. but when I run javac or other commands, it prompts to me the following error:
    **************************************************************Error: failed /usr/local/apps/j2sdk1_3_1_02/jre/lib/sparc/client/libjvm.so,because ld.so.1: /usr/local/apps/j2sdk1_3_1_02/bin/./../bin/sparc/native_threads/jav
    ac: fatal: libCrun.so.1: open failed: No such file or directory
    I have checked the setup file size. and there is no ld.so.1 in any directory.
    Who can tell me why and how to resolve it? thanks a lot.

    I had exactly the same problem. You need to apply patch 105591-12. This solved the problem.

  • Facing Many Problems About Creating Directory and an External Table

    Question:
    The weird thing is if you look at question 10-b in page 3-41, it says:
    (page 3-41 "Oracle Database 10g SQL Fund. II Vol.1")
    Merge the data in the EMP_DATA table created in the last lab into the data in the emp_hist table. Assume
    that the data in external EMP_DATA table matches the EMP_HIST table, update the email column
    of the EMP_HIST table to match the EMP_DATA table row. If a row in the EMP_DATA table does not
    match, insert into the EMP_HIST tables. Rows are considered matching when the employee's first and
    last name are identical.
    To me, this question is constructed wrongly. First of all in the last lab we have not been asked to create EMP_DATA. Secondly, EMP_DATA is empty.
    Thirdly, this question asks us to merge into EMP_HIST table while EMP_DATA is empty.
    EMP_HIST table currently has copied data from employees table. EMP_HIST structure:
    FIRST_NAME VARCHAR2(20)
    LAST_NAME NOT NULL VARCHAR2(25)
    EMAIL NOT NULL VARCHAR2(45)
    Anway, i did the merge as following:
    merge into emp_hist e
    using emp_data d
    on (e.first_name = d.first_name)
    when matched then
    update set
    e.last_name = d.last_name,
    e.email = d.email
    when not matched then
    insert values (d.first_name, d.last_name, d.email);
    I get this error:
    Error report:
    SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file emp.dat in EMP_DIR not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    On the other hand, i said let me try this:
    merge into emp_data d
    using emp_hist e
    on (d.first_name = e.first_name)
    when matched then
    update set
    d.last_name = e.last_name,
    d.email = e.email
    when not matched then
    insert values (e.first_name, e.last_name, e.email);
    I get this error because external table is final once its created as far as i know:
    Error report:
    SQL Error: ORA-30657: operation not supported on external organized table
    30657.0000 - "operation not supported on external organized table"
    *Cause:    User attempted on operation on an external table which is
    not supported.
    *Action:   Don't do that!
    I do not know what to do. I did my best, please help.
    Edited by: user11164565 on Jul 27, 2009 2:43 AM

    user11164565 wrote:
    NOTE: I did my best, i did all what i can do, but the problem persists. Please help
    I will mention all the steps i did clearly....
    I gave scott the following grants:
    grant create any directory to scott;
    grant read on directory emp_dir to scott;
    1. Created a directory and its been created successfully:
    create or replace directory emp_dir
    as 'F:\emp_dir';
    Then i did the following just to make sure my directory is recognized:
    SELECT *
    FROM dba_directories;
    I found the drive amongst the results...
    OWNER DIRECTORY_NAME
    DIRECTORY_PATH
    SYS EMP_DIR
    F:\emp_dir
    SYS SUBDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\/2002/Sep
    SYS XMLDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\
    2. I created an external table emp_data (the script is given by the text book): done successfully
    drop table emp_data;
    CREATE TABLE emp_data
    (first_name VARCHAR2(20)
    ,last_name VARCHAR2(20)
    , email VARCHAR2(30)
    ORGANIZATION EXTERNAL
    TYPE oracle_loader
    DEFAULT DIRECTORY emp_dir
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE CHARACTERSET US7ASCII
    NOBADFILE
    NOLOGFILE
    FIELDS
    ( first_name POSITION ( 1:20) CHAR
    , last_name POSITION (22:41) CHAR
    , email POSITION (43:72) CHAR )
    LOCATION ('emp.dat') ) ;
    3. I went to F:\ drive to see if emp_dir folder exist or not! I did not see it. I checked hidden files, nothing there. Anyway, i ignored it and did step 4.
    <snip>
    "Anyway, I ignored it . . . "
    and hence the rest of your problems. I did not see in the steps you recounted that you acually created a directory ("folder") named "\emp_dir" on your f: drive. Nothing you create within the database will actually create that directory on the OS. Createing a directory in Oracle, createing an external table in Oracle, will only create pointers to objects that Oracle will simply assume actually exists.

  • The problem about changing the SID

    Hello,
    Due to some reasones ,we shoud chang the R3 sid from PR3(instance number is 00) to QR3 on one IBM iseries host .As we read some relatives doc about system copy ,we decide use method of exoprt/import to do this.But there are paramter that really confuse me now.In the step of SAP system instance indentification,I hesitate the instance number should be set.Should I choose a new number or keep the value that PR3 used(instance number is 00).BTW,is there two instance or just one instance in the host after I change the system sid
    Thanks in advance.
    Message was edited by:
            Rong

    I understnad this problem now.But still one got me.
    I want to use SMIGR_CREATE_DDL to generating ddl statements for migration,but when I finished this ABAP I cann't find any script has been generated.
    The installation Directory is '/tmp'.
    Our platform of R/3 is OS/400.
    Thanks.
    Message was edited by:
            Rong

  • Outlook freeze when loading an VSTO Addin

    Hello,
    I have a problem with the VSTO Runtime. Sometimes, when Outlook loads an VSTO Addin, the CPU-Load of the Outlook process goes up to 25% and Outlook freeze. Then I must delete some assemblies in the GAC folder:
    Microsoft.Office.Tools*
    Microsoft.VisualStudio.Tools*
    Now Outlook starts for some days and then I have the same problem until I delete the assemblies in the GAC folder again.
    With the process explorer I could see that Outlook hangs in the function "GetMetadataInternalInterfaceFromPublic" of the "clr.dll".
    Regards
    Nico

    Hi Nico,
    Visual Studio Tools for Office can write all errors that occur during
    startup to a log file or display each error in a message box. By default,
    these options are turned off for application-level projects. You can turn
    the options on by adding and setting environment variables. To display each
    error in a message box, set the VSTO_SUPPRESSDISPLAYALERTS variable to 0
    (zero). You can suppress the messages by setting the variable to 1 (one). To
    write the errors to a log file, set the VSTO_LOGALERTS variable to 1 (one).
    Visual Studio Tools for Office creates the log file in the folder that
    contains the application manifest. The default name is
    <Manifestname>.manifest.log. To stop logging errors, set the variable to 0
    (zero).
    1  Make
    sure you have the correct version of .NET framework installed.
    2    Make
    sure you have Office Primary Interop Assemblies (PIAs) installed on the target machine. You can check this by going to the Global Assembly Cache, GAC, (%systemroot%\assembly) and looking for assemblies beginning with “Microsoft.Office”. Also, make sure that
    you are referencing the Office PIAs (not Interop Assemblies) in the project references. You can confirm this by looking at the properties for the reference added. They should point to GAC.  To know more about PIAs, please refer:  Primary Interop
    Assemblies (PIAs) and Interop Assemblies (IAs) http://msdn2.microsoft.com/en-us/library/aa169585.aspx
    3 Make sure
    all the required dependencies for your Add-In are present/installed on the target machine. You can enable Fusion logs to detect missing dependencies. To enable Fusion logs, you can either use the “Assembly Binding Log Viewer” (fuslogvw) .NET framework tool
    or make registry entries to enable logging. [Please do make appropriate backup before making any registry changes]. Here are the registry entries that need to be made:
          Open regedit and browse to “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion” 
          Create a DWORD value by name “EnableLog” and set its value to 1. 
           Create a DWORD value by name “ForceLog” and set its value to 1. 
          Create a DWORD value by name “LogFailures” and set its value to 1. 
          Create a String value by name “LogPath” and set its value to “c:\Fusion” 
           Create the folder “c:\Fusion”
    After reproducing the issue, look at each of the files created under “C:\Fusion\ Default \<Application.exe>\” folder. Fix any failures and retry. To know more about Assembly Binding Log Viewer (fuslogvw), please refer: Assembly
    Binding Log Viewer (Fuslogvw.exe) http://msdn2.microsoft.com/en-us/library/e74a18c4(VS.80).aspx
    See Troubleshooting
    COM Add-In load failures for more information. 

  • Sequence app with modify rights to installation directory

    Hey there
    I've got an application, where the user must have Change / Modify Rights to the Installation Directory. By Default, the Installation is installed in C:\Vendor\App1. If i just install the application locally the application can be launched without any
    problem.
    I tried to sequence the App with App-V 5.0 SP2 HF4 with PVAD "C:\Vendor1" and i selected the Option "Allow virtual application full write permissions to the virtual file System" on the Advanced Tab of the Sequencer. If i start the application
    i get an error that the database (Application is an Access addin) is only in read mode, and that the application can't get startet.
    Also i'm not able to manually add or modify rights in the Installation Directory.
    Have i missed something? Isn't the Option "Allow virtual application full write permissions..." for this case?
    Thank you in advance!
    Best regards, Simon

    In the first post I read it as you captured to PVAD, and in the post above you set it to VFS.  Did you do a second capture?  If not which are the files in?
    You can always run procmons, etc, to try to figure out what is going on.  The application can always be doing something 'weird', unfortunately its hard to give you a really solid solution with all the potential variables.
    You could upgrade to SP3, and resequence.  Beyond that, you could try going into the VE, and writing a dummy file to that DIR, to see if you get any permissions error.  Does the program put itself into PATH or anything like that?  If there
    are references to the C:\ProgramData location, its possible the program is trying to write to that folder, which is the outside folder you can't write to.

  • Problem with installation CF7 on W2K3

    //Original message //
    Здравствуйте,
    отдел
    поддержки
    Macromedia(Adobe). //
    // Проблема:
    При
    установке
    ColdFusion MX 7 на
    операционную
    систему Windows 2003
    Server на //
    // любой
    web-сервер
    (пробовал
    на Apache и на IIS) в
    лог-файле
    следующее: //
    // Installation: Successful with errors. //
    // 1736 SUCCESSES //
    // 0 WARNINGS //
    // 1 NONFATAL ERRORS //
    // 0 FATAL ERRORS //
    // Web Server Connector Configuration Error //
    // Status: ERROR //
    // Additional Notes: ERROR - JNDI port 2920 for server
    coldfusion//
    // is not active //
    // Раньше у
    меня
    программа
    была уже
    установлена
    на Windows Server 2003, но
    произошла //
    // какая-то
    ошибка и
    после я
    переустанавливал
    и
    программу
    и OS - никаких
    результатов.
    // Может
    быть
    необходимы
    какие-нибудь
    настройки? //
    // ColdFusion
    устанавливался
    на чистую OS
    без
    каких-нибудь
    программ.
    Без
    файрволла
    и //
    брандмауэра.
    На windows XP
    ставится
    отлично,
    без ошибок.
    // Если ColdFusion не
    поддерживается
    на Windows Server 2003,
    тогда
    почему
    раньше он //
    // работал? //
    // C глубоким
    уважением
    всем
    сотрудникам
    Macromedia и Adobe,
    Шильдяков
    Алексей из
    России. //
    // [email protected] //
    // Translated message //
    // Hello, a department of support Macromedia (Adobe). //
    // Problem: At installation ColdFusion MX 7 on operational
    system Windows 2003 Server on //
    // any web-server (tried on Apache and on IIS) in a log-file
    the following: //
    // Installation: Successful with errors. //
    // 1736 SUCCESSES //
    // 0 WARNINGS //
    // 1 NONFATAL ERRORS //
    // 0 FATAL ERRORS //
    // Web Server Connector Configuration Error //
    // Status: ERROR //
    // Additional Notes: ERROR - JNDI port 2920 for server
    coldfusion//
    // is not active //
    // Earlier at me the program was already established on
    Windows Server 2003, but //
    // there was any mistake and the ambassador I reinstalled
    also the program and OS - //
    // nothing results. It can be necessary any adjustments? //
    // ColdFusion it was established on pure(clean) OS without
    any programs. Without //
    // firewall and a fireproof wall. On windows XP it is put
    perfectly, without mistakes. //
    // If ColdFusion it is not supported on Windows Server 2003
    then why earlier it(he) //
    // worked? //
    // Deep respect to all employees Macromedia and Adobe,
    Shil'djakov Alexey from Russia. //
    // [email protected] //
    // translated by X-Translator of PROMPT:
    http://www.prompt.ru and online
    translate in //
    http://www.translate.ru //
    //// Sorry for possible mistakes while translating ////
    ///// [email protected] /////

    quote:
    Originally posted by:
    <newbie />
    Make sure IIS and CF is running and then run wsconfig.jar to
    configure
    IIS. Do a search on your hard-drive(s) to see if this jar is
    exists. Traverse
    to that directory using a command prompt and type:
    prompt>java -jar wsconfig.jar
    I installed Apache Server 2 and uninstalling IIS. Why I doing
    that CF will work in Apache2

  • An old and difficult problem about "UnsatisfiedLinkError"

    Hi dear all,
    I have been struck with the problem about "UnsatisfiedLinkError". I have a c++ class HelloWorld with a method hello(), and I want to call it from within a java class. In fact, I have succeeded in calling it on the windows platform. But when I transfer it to linux, the error "UnsatisfiedLinkError" comes out. I have tried to take the measures as Forum has suggested, but it failed.
    The source code is very simple to demonstrate JNI.
    "HelloWorld.h"
    #ifndef INCLUDEDHELLOWORLD_H
    #define INCLUDEDHELLOWORLD_H
    class HelloWorld
    public:
    void hello();
    #endif
    "HelloWorld.cpp"
    #include <iostream>
    #include "HelloWorld.h"
    using namespace std;
    void HelloWorld::hello()
    cout << "Hello, World!" << endl;
    "JHelloWorld.java"
    public class JHelloWorld
    public native void hello();
    static
    System.loadLibrary("hellolib");
    public static void main(String[] argv)
    JHelloWorld hw = new JHelloWorld();
    hw.hello();
    "JHelloWorld.cpp"
    #include <iostream>
    #include <jni.h>
    #include "HelloWorld.h"
    #include "JHelloWorld.h"
    JNIEXPORT void JNICALL Java_JHelloWorld_hello (JNIEnv * env, jobject obj)
    HelloWorld hw;
    hw.hello();
    All the files are in the same directory and all the processes are under the dirctory:
    1. javac JHelloWorld.java
    2. javah -classpath . JHelloWorld
    3. g++ -c -I/usr/java/jdk1.3/include -I/usr/java/jdk1.3/include/linux JHelloWorld.cpp HelloWorld.cpp
    4. ld -shared -o hellolib.so *.o
    5. java -cp . -Djava.library.path=. JHelloWorld
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no hellolib in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1349)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at JHelloWorld.<clinit>(JHelloWorld.java:7)
    Tried another measure:
    i) export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
    ii)java -cp . JHelloWorld
    The same error came out as above.
    I really don't know what is wrong with it.
    Would you like to help me as soon as possible?
    Thanks.
    Regards,
    Johnson

    Hi Fabio,
    Thanks a lot for your help.
    It is very kind of you.
    Regards,
    Johnson

  • Problems with installation on Windows XP Pro with SP1

    Hi! I've two problems during installation.
    I try to install Oracle 10g Enterprise
    First:
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    Recommendation: Oracle supports installations on systems with DHCP-assigned IP addresses; However, before you can do this, you must configure the Microsoft LoopBack Adapter to be the primary network adapter on the system. See the Installation Guide for more details on installing the software on systems configured with DHCP.
    Second:
    Checking service pack requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    OUI-15038: Unable to execute rule 'CheckServicePack' from ruleset 'ServicePackChecks'. The underlying test 'oracle.sysman.oip.oipc.oipcz.OipczServicePackChecks.checkServicePack' has thrown an unhandled exception [For input string: "Pac"]. If the exception results in a failure of the test and the exception needs to be propagated, then encapsulate the exception in the result object and return the result.
    Recommendation: Install the recommended Service Pack.
    What I should to do?
    Message was edited by:
    user465581

    Hey Guys,
    I am Srinivas Here who had been trying to install Oracle Database 10G on Windows X86 on Windows XP Professional.
    If you have Win-XP Professional as your Operating System. Do not download the oracle Database using windows - XP Professional because XP will block certain installation files while downloading. In your machine install Windows 2000 or any other Windows version as a dual boot. First the download Database Zip files using your other version of Windows Operating system and then when you Unzip the files it will create a folder called Database and all the files will be present in it.If you want to store the same to cd for having to install the 10G Rel 2 database through CD then copy the contents of the unzipped database folder and store only the contents of the database folder and write them to CD's. Please see to it that while writing on cd's do not copy the folder itself .
    After this, restart the system and get into windows XP Professional (Your XP Professional should be with Service Pack 2 in order to install 10G Database on windows XP - The Basic requirements for Oracle Database 10G on Windows X86).
    I request you to check the software and hardware requirements from oracle Documents before you install the Oracle Database 10G on Windows x86 as well as Oracle Database 10G on Linux X86 or any other operating systems.
    Finally, After you run the Oracle Universal installer in the last you will get messages for all products installed Success and finally it will ask the password for DBA and open the password management and give the password and reenter password and on the left you will have to unlock the items you would like to use.
    In the last it will give you various URL links for Isqlplus, DBA, Enterprise Manager and a log report stored into oracle directory stored in your C:\Program files\Oracle folders. The correct link will be given at the end and you will have to watch the installation carefully.You can find DBCA and other options working. Try login in to Oracle through Command prompt, Sqlplus prompt availabe in Start ->Programs->Orahome10G->application Development-sqlplus as well as login through isqlplus link- Before this you should login at the command prompt as SYSDBA. YOU CAN SEE THAT YOUR DATABASE IS NOW WORKING IN WINDOWS XP PROFESSIONAL.
    THANKS IN ADVANCE TO ALL FORUM MEMBERS WHO GAVE ME IDEA AND SUPPORT
    REGARDS,
    SRINIVAS

  • Problem about Handling of Empty Files in File Adapter

    Hello everyone,
    NetWeaver 2004s --- XI
    In Sender i have a File Adapter.
    Now i meet a problem about Handling of Empty Files. When i send empty file, but don't cerate a leer message.
    I have seen following text in help document. But in adapter configuration i can not find the correspond parameter.
    can you give me some tips?
    Thx in advance
    best regards
    Yaning
    SAP Help Document über File Adapter
    +Handling of Empty Files
    Specify how empty files (length 0 bytes) are to be handled.
    &#9675;       Do Not Create Message
    No XI messages are created from empty files.
    The files are processed according to the selected Processing Mode.
    For example, if the processing mode is Delete, empty files are deleted in the source directory.
    &#9675;       Process Empty Files
    XI messages are created with an empty main payload.
    The files are processed according to the selected Processing Mode.
    &#9675;       Skip Empty Files
    No XI messages are created from empty files.
    Empty files are skipped and remain in the source directory.+
    Help Docu

    hi,
    it's available since Sp19 for XI 3.0
    and the corresponding SPS fpr XI 7.0
    http://help.sap.com/saphelp_nw04/helpdata/en/44/f565854b7341e6e10000000a1553f6/frameset.htm
    so probably you need to install the new SP
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Problem during installation of oacle patchset 10.2.0.2

    I am facing the following problem during installation of oracle patchset 10.2.0.2 with SAP SRM 3.0 (with EBP 4.0) on HP-UX IA64. Already my system has oracle patchset 9.2.0.7 installed. Experts' opinion required urgently please..
    prompt> ./runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be B.11.23.    Actual B.11.23
                                          Passed
    Checking swap space: must be greater than 250 MB.   Actual 32000 MB    Passed
    Checking Temp space: must be greater than 250 MB.   Actual 1796 MB    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2008-04-14_01-40-53PM. Please wait ...
    Error in writing to directory /tmp/OraInstall2008-04-14_01-40-53PM. Please ensure that this directory is writable and has atleast 69 MB of disk space. Installation cannot continue.
    : Error 0
    prompt>

    hi ben. I ran the runinstaller with the debug option. This is what it gave: (might be helpful for your analysis of the problem)
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be B.11.23.    Actual B.11.23
                                          Passed
    Checking swap space: must be greater than 250 MB.   Actual 32000 MB    Passed
    Checking Temp space: must be greater than 250 MB.   Actual 1684 MB    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2008-04-14_07                     -42-47PM. Please wait ...unzip:  cannot find ../stage/102_64/Components/oracle.s                     wd.jre/1.4.2.7.0/1/DataFiles/.jar, ../stage/102_64/Components/oracle.swd.jre/1.                     4.2.7.0/1/DataFiles/.jar.zip or ../stage/102_64/Components/oracle.swd.jre/1.4.2                     .7.0/1/DataFiles/*.jar.ZIP.
    No zipfiles found.
    Error in writing to directory /tmp/OraInstall2008-04-14_07-42-47PM. Please ensur                     e that this directory is writable and has atleast 69 MB of disk space. Installat                     ion cannot continue.
    : Error 0

  • Problem during installation of iTunes 10.7 on Win7 x64. Is there anybody that can help me?

    Hello everyone!
    I've a problem during installation of Itunes 10.7 on Window 7 x64. I had installed v11 but i don't like it, so i've uninstalled correctly this version and i have downloaded v10.7
    The message, translated in english, is:
    UNKNOWN \ Components \ ... \ 2B0163E6D0340BE2758E9BEDD8.
    Make sure you have sufficient access to that key, or contact your support staff.
    I don't know how to do...I don't want to format my pc
    I have already tried to erase all the "apple" folders on directory C:\, but nothing to do...
    Is there anybody that can help a poor italian boy, please?
    Thanks a lot,
    Teo

    Thx Polydorus!
    this evening i'll try and i'll tell you if it works!
    Teo

  • Creative Cloud - BUG Changing Installation Directory for Apps

    I searched and could only find this similar post here
    http://forums.adobe.com/message/5498967#5498967
    Which stated the issue I am experiencing.  In the preferences of the creative cloud desktop program I changed the installation directory to D drive because I have my main hard drive partitioned and the programs would take up too much space on C.  Regardless of the change in preferences the applications were still installing to my C drive.  I tried restarting and reinstalling and nothing seemed to work. 
    Finally I decided to reallocate my D partition back to C, I have yet to complete this because I am waiting for all the data on D to be transferred to an external drive so I can recombine it to C without losing data ( I don't know if this is necessary, I haven't recombined partitions in the operating system before, but just to be safe)
    ANYWAY
    As I am waiting for the transfer (Over 120gbs takes a while)  I changed the installation directory in the Creative Cloud preferences back to C and went ahead and installed the program I was trying to prior to all this.  Guess What?  It installed to my D drive!!!
    This isn't a serious bug for me, just incredibly annoying and causing a lot of extra work on my part just to install the program I wanted.  However for someone who requires a different directory to install to and cannot rearrange their computer to accommodate this bug I could see it being more serious.  Has anyone else had this issue and did you find a solution?  Thanks.
    P.S. Adobe you rock, I hope your other CC programs don't feel rushed for release like your installer does

    ADOBE WILL TRY TO DELETE YOUR LEGACY APPS!!!!  Do NOT let them! They could put you out of business! Here is a tech support transcript, see for yourselves:
    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: I need to know that NONE of my legacy adobe apps will be affected. CS5 suite and CS6 products will NOT be affected is that right??????????????
    info: Your chat transcript will be sent to dixxx.net at the end of your chat.
    Vipin: It will be affected.
    ADOBE CUSTOMER: WHOA! you are saying that my CS% and CS 6 apps will be hurt and not run correctly is that right?
    Vipin: We need to remove all the Adobe apps installed on your computer.
    Vipin: Is that okay.
    Vipin: May I have your permission to connect to your computer remotely and try to solve the problem while you watch?
    ADOBE CUSTOMER: There is no way I give permission to delete CS5 creative suite, CS6 video production suite or hurt them in any way what so ever. I have THOUSANDS of dollars of plugins and other workfow products that depend on them. Sorry but my only recourse is to
    ADOBE CUSTOMER: see if you have ANY loyalty to an OVER 30 years adobe customer (me) when you demand payout for the remaining 5 months of the subscription. I'm betting you will just send the bill to collections for non payment. If so, you WILL be sued for non service and non delivery of product. And yes, I am ready to spend over xxxx on a suit vs adobe because of how you have treated me. The point is I know that I am not alone, and that's sad.
    Then after TECH NO SUPPORT, CSRs try to 'handle' me:
    If you do decide to cancel, we can refund your subscription.
    If you stay with the service, we can provide 2 free months as an apology for the technical difficulties. We cannot provide a free year.
    Please let me know which you would like to do.
    Thanks,
    Britt
    Like · Reply · 35 mins
    ADOBE CUSTOMER:You want me to stay with a service that provides no product? And has not provided me with a usable product since October of 2014? And now the word is out that you are raising subscription prices after the first year? Who do you think you are? You HURT peoples ability to earn a living! You cost us hours and days and months trying trying to fix your problems so we can move forward with your products? Who in the hell do you think you are? Tell you what, dont cancel a thing. A media blitz and maybe a subpoena to San Jose is the right move to protect peoples rights. Your company needs to learn a lesson in how to treat legacy customers. It seems no one has taught you that "if you take care of the customer, they will take care of adobe." Britt, care to guess how many dollars I have given adobe in almost 30 years?
    Adobe Creative Cloud Hi ADOBE CUSTOMER:
    We value all our customers and would love to help resolve your issue. Would you like to arrange a callback with tech support? I can make sure the technician is a senior staff member that can offer more troubleshooting solutions. Let me know if you would like to schedule this, and what a suitable time would be.
    Thanks,
    Britt
    Like · Reply · 19 mins
    Adobe Creative Cloud Regarding Creative Cloud prices, it is noted on the purchasing page that some subscriptions offer "promotional rates for the first year only." Our full subscription terms can be viewed here: https://www.adobe.com/misc/subscription_terms.html
    -Britt
    Like · Reply · 18 mins
    ADOBE CUSTOMER: You see, that is EXACTLY how you should take care of a customer. Tell them they are wrong and have it NOT RELATED to a simple request to FIX a company software PROBLEM. Tell your customers that after FOUR months of unusability of your product, DAYS of the customer trying to fix the company problem, that your solution is give them TWO months FREE then JACK the price up for them! You MUST have thousands of people in LINE to YOU to get this celebrated DEAL!
    Like · Reply · 6 mins
    ADOBE CUSTOMER: I have a hunch some adobe board members are going to have fun with your conversation and offer, Britt. I would hush up now before you have to look for a different job because I know you mean well BUT you have no experience or skills solving a client's issues and in fact, you are hurting adobe's future earnings.
    Like · Reply · 2 mins
    Adobe Creative Cloud I apologize for the frustration regarding Adobe's pricing policy, Kee. Please let me know if you would like additional help troubleshooting the problem. We would love to locate the cause of the download issue and get this resolved for you.
    Thanks,
    Britt
    Like · Reply · 7 mins
    ADOBE CUSTOMER: The Russian cracked version of PS 2014 will have to do on another clients machine until you have a total new WORKING release. I'm tired of being your company's test pig, doing the boiler plate cleaner routines, and having the same failures. It's one thing to have broken software, but NOT acceptable to treat customers the way I have been treated, and then, be greedy on a remediation offer from you.
    You say,"We value all our customers."  Again, clearly NO ONE from the BOD has taught you that if you take care of the customer, then the customer will take care of adobe.
    You guys and gals have essentially asked for a fight, and a fight you shall have. good night.

  • A problem about gcc

    I installed Solaris8 x86 on my PC successfully, including software companion CD, which was installed under /opt.
    Following was added in .profile :
    PATH=/opt/sfw/bin:$PATH
    Then I created two programs in a subdirectory:
    C code, HelloWorld.c, compiled using gcc, run ./a.out, everything OK;
    C++ code, HelloWorld.cc, compiled using g++, ./a.out was generated, it seemed ok. But when I tried to run ./a.out, got following error message:
    $ ./a.out
    ld.so.1: ./a.out: fatal: libstdc++.so.2.10.0: open failed: No such file or directory
    Killed
    The same C++ HelloWorld compiled and run good on another Sparc/Solaris7.
    Anybody can tell me what the problem is and how to solve it?

    Edward_King wrote:
    I enter a problem about gcc,I installed solaris 10,and then login with root user,I want to use gcc,
    #pwd
    #gcc
    but I find there is no gcc,A better way to find gcc is to:
    grep gcc /var/adm/install/contents
    On a Solaris system if you install the developer or greater cluster then gcc should be installed into:
    /usr/sfw/bin
    so you can start by just checking there.
    PATH=$PATH:/opt/gnome/bin:/usr/local/bin:/opt/netscape:/usr/ccs/bin
    export PATH I'm not sure why you would need /opt/gnome or /opt/netscape but whatever.
    1 how can i know root user use sh or csh user?Look at the /etc/passwd file.
    2 I can't find .profile or .cshrc file in / directory,where are they? Which directory should I create profile or .cshrc file? After I create profile or .cshrc file,which command I can run to make profile or .cshrc file go function? Need I reboot the solaris system?By default root doesn't have one so just create using vi.
    vi /.profile
    Thanks in advance!regards,
    alan

  • Problem after installation Project Server 2013 CU September 9, 2014

    Dear All,
    I have some problems after installation
    Project Server 2013 CU September 9, 2014 (Hotfix 2883072) on 3 level farm
    Before installing CU, I have installed
    SP1 for Project Server 2013, installation and configuration was successful.
    Then I have installed CU and I have not get any errors during installation process. Then I have restarted servers and in SharePoint health analyzer got an error about patch/installation status
    on WFE server.
    I checked in Windows installed updates and hotfix is installed. I checked in SharePoint Update and Upgrade history and there were no errors during installation. But when I checked in Manage
    Patch Status list I found an information:
    Language Pack for SharePoint and Project Server 2013 - Russian
    Microsoft Project Server Russian Language Pack 15.0.4420.1017 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Microsoft Project Server 2013
    Microsoft Project Server English Language Pack 15.0.4571.1502 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Service Pack 1 for Microsoft Project Server 2013 (KB2880553) 64-Bit Edition
    15.0.4571.1502 Installed
                Microsoft Project Server Web Front End Server
    15.0.4571.1502 Installed
    Hotfix for Microsoft Project Server 2013 (KB2883072) 64-Bit Edition
    15.0.4649.1001 Missing/Required
    Service Pack 1 for Microsoft Project Server 2013 (KB2880553) 64-Bit Edition
    15.0.4571.1502 Installed
    If I run installation again I get message that nothing will be updated - no update needed.
    Please help, how I can install missed packages?

    The problem was solved !
    I solve it using two ways:
    1. I have installed the hotfix for Project Server -  Hotfix for Project Server 2013 October 14, 2014 KB 2889959 (Projectserverwfe-x-none.msp, Projectservermui-Language-Code.msp)
    2. using command
    Psconfig -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures -cmd installcheck -noinstallcheck
    After two actions I was able to run SharePoint Configuration Wizard and upgrade database. Configuration completed successful.

Maybe you are looking for

  • Issue in To: field on SSRS Subscriptions

    Greetings! Our organization just recently migrated to a new Microsoft Exchange server, at almost the exact same time as the workstations were upgraded to Windows 2013 and Office 2013. After the upgrade an issue with our SSRS Report subscriptions was

  • Duplicate zip entry

    Hi, I am trying to zip up a directory containing subdirectories and files which have the same names. This causes a ZipException because i end up with a duplicate entry. Ive noticed that programs such as winzip allow you to have duplicate file names w

  • Change "to equal" to "to be greater than" in Wait for Field to equal Value"

    In Sharepoint Designer 2010, in the workflow Action "Wait for Field to equal Value", I could change the "to equal" to "to be greater than". I can't find how to do this in SPD 2013. Can someone please help? Thank you!

  • How do I fix this runtime Error?

    Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reas

  • Controlling print options through triggers

    Hi, I developed a report which runs in 2 modes. 1. Automatic mode(runs in a request set) 2. Manual Mode(submitted manually through SRS as a single request) I got a new requirrment where I need to print the output when print flag is Y and the report i