Cannot finalise registration process of CS6 due to Adobe ID error

I have just installed 13 copies of CS6 in our studio, 12 successfully but one is having problems. The registration process goes smoothly using our relevant Adobe licences, the problem occurs when we have to enter the Adobe ID at the end of the process. The two option sappear, sign in later or sign in now. Once we click sign in now it just becomes the spinning wheel of boredom, can't do anything. of course the problem is that it says you have 7 days to do so before it makes the application inoperable.
So what is wrong and how do I fix this and what does an Adobe ID have to do with this whole thing anyway? We have the legal licences, why do we also need an Adobe ID to complete the process
Graham

I had the same issue & contacted Tech Support several times before finally they found that it must be my "corporate network" setup.
This is in part becuase Adobe is now requiring that you use your Adobe ID to register CS6.  See the link below:
Adobe ID Required for Photoshop CS6 Beta and Upcoming CS 6 Products
http://blogs.adobe.com/oobe/2012/03/adobe-id-required-for-photoshop-cs6-beta-and-upcoming- cs-6-products.html
After several "live" chats with Adobe support they gave me a link to directions for a work around.  The problem was our "corporate network" setup, so this will occur on each machine that you install CS6 on while connected to a "corporate network".
To work around the CS6 registration error on a "corporate network" you must do one of the following: disable the proxy server, disconnect from the internet completely to use the Offline Activation option, or use an alternate outside internet source to complete the CS6 registration.
Adobe Tech Support directed me to a forum on how to disable the proxy server, but really all you need to do is unplug your internet source, and then you can generate the codes that are needed to complete the registration with the Offline Activation option. This worked for me, I'm all set now.
See the links below:
Forum link from Adobe Tech Support
http://forums.adobe.com/thread/1005256
Offline Activation
https://exception.licenses.adobe.com/aoes/aoes/v1/t1?locale=en

Similar Messages

  • The server was unable to process the request due to an internal error.

             
    Properties set in my project are below
    namespace EmployeeService
            public class Employee
                private int _Id;
                private string _Name;
                private string _Gender;
                private DateTime _DateofBirth;
                public int Id
                    get { return _Id; }
                    set { _Id = value; }
                public string Name
                    set { _Name = value; }
                    get { return _Name; }
                public string Gender
                    set { _Gender = value; }
                    get { return _Gender; }
                public DateTime DateofBirth
                    set { _DateofBirth = value; }
                    get { return _DateofBirth; }
    This is the service i have developed in my project 
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the class name "Service1" in both code and config file together.
        public class EmployeeService : IEmployeeService
            public Employee GetEmployee(int Id)
                Employee objemp = new Employee();
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spGettblEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter Idparameter = new SqlParameter();
                    Idparameter.ParameterName = "@Id";
                    Idparameter.Value = Id;
                    cmd.Parameters.Add(Idparameter);
                    con.Open();
                    SqlDataReader dr = cmd.ExecuteReader();
                    while (dr.Read())
                        objemp.Id = Convert.ToInt32(dr["Id"]);
                        objemp.Name = dr["Name"].ToString();
                        objemp.Gender = dr["Gender"].ToString();
                        objemp.DateofBirth = Convert.ToDateTime(dr["DateofBirth"]);
                return objemp;
            public void SaveEmployee(Employee objemp)
                string cs = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;
                using (SqlConnection con = new SqlConnection(cs))
                    SqlCommand cmd = new SqlCommand("spInsertEmployeewcf", con);
                    cmd.CommandType = CommandType.StoredProcedure;
                    SqlParameter ParameterId = new SqlParameter()
                        Value = objemp.Id,
                        ParameterName = "@Id"
                    cmd.Parameters.Add(ParameterId);
                    SqlParameter ParameterName = new SqlParameter()
                        Value = objemp.Name,
                        ParameterName = "@Name"
                    cmd.Parameters.Add(ParameterName);
                    SqlParameter ParameterGender = new SqlParameter()
                        Value = objemp.Gender,
                        ParameterName = "@Gender"
                    cmd.Parameters.Add(ParameterGender);
                    SqlParameter ParameterDateofBirth = new SqlParameter()
                        Value = objemp.DateofBirth,
                        ParameterName = "@DateofBirth"
                    cmd.Parameters.Add(ParameterDateofBirth);
                    con.Open();
                    cmd.ExecuteNonQuery();
    The Service Contract  code is
    namespace EmployeeService
        // NOTE: You can use the "Rename" command on the "Refactor" menu to change the interface name "IService1" in both code and config file together.
        [ServiceContract]
        public interface IEmployeeService
            [OperationContract]
            Employee GetEmployee(int Id);
            [OperationContract]
            void SaveEmployee(Employee objemp); 
            // TODO: Add your service operations here
        // Use a data contract as illustrated in the sample below to add composite types to service operations
    and i deployed the EmployeeService in iis and consuming the service in my web application the code is below
     protected void btnsave_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = new EmployeeService.Employee();
                employee.Id = Convert.ToInt32(txtid.Text);
                employee.Name = txtname.Text;
                employee.Gender = txtgender.Text;
                employee.DateofBirth = Convert.ToDateTime(txtdob.Text);
                client.SaveEmployee(employee);
            protected void btnget_Click(object sender, EventArgs e)
                EmployeeService.EmployeeServiceClient client = new EmployeeService.EmployeeServiceClient("basicHttpBinding");
                EmployeeService.Employee employee = client.GetEmployee(Convert.ToInt32(txtid.Text));
                txtname.Text = employee.Name;
                txtgender.Text = employee.Gender;
                txtdob.Text = employee.DateofBirth.ToShortDateString();
    and  when i am entering the details of employee Id,Name,Gender,DateofBirth and clicking save button iam getting the following error 
    The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute or from the <serviceDebug> configuration behavior)
    on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.
    Code in web.config file in Webapplication(Client) is the following
    <?xml version="1.0"?>
    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=169433
      -->
    <configuration>
        <system.diagnostics>
            <sources>
                <source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelMessageLoggingListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
                <source name="System.ServiceModel" switchValue="Warning, ActivityTracing"
                    propagateActivity="true">
                    <listeners>
                        <add type="System.Diagnostics.DefaultTraceListener" name="Default">
                            <filter type="" />
                        </add>
                        <add name="ServiceModelTraceListener">
                            <filter type="" />
                        </add>
                    </listeners>
                </source>
            </sources>
            <sharedListeners>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_messages.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
                <add initializeData="C:\Users\HEMANTH\Desktop\Client\Client\Web_tracelog.svclog"
                    type="System.Diagnostics.XmlWriterTraceListener, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                    name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
                    <filter type="" />
                </add>
            </sharedListeners>
            <trace autoflush="true" />
        </system.diagnostics>
        <system.web>
            <compilation debug="true" targetFramework="4.0" />
        </system.web>
        <system.serviceModel>
            <diagnostics>
                <messageLogging logEntireMessage="true" logMalformedMessages="true"
                    logMessagesAtTransportLevel="true" />
            </diagnostics>
            <bindings>
                <basicHttpBinding>
                    <binding name="basicHttpBinding" />
                </basicHttpBinding>
                <wsHttpBinding>
                    <binding name="mexHttpBinding">
                        <security mode="None" />
                    </binding>
                </wsHttpBinding>
            </bindings>
            <client>
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/basic"
                    binding="basicHttpBinding" bindingConfiguration="basicHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="basicHttpBinding" />
                <endpoint address="http://localhost/EmployeeWebServices/EmployeeService.svc/mex"
                    binding="wsHttpBinding" bindingConfiguration="mexHttpBinding"
                    contract="EmployeeService.IEmployeeService" name="mexHttpBinding" />
            </client>
        </system.serviceModel>
    </configuration>
    Things i have tried till now are 
    1)changed the name of the name of the endpoint address basicHttpBinding to  basicHttpBinding_IEmployeeService but still get the save error.
    2)Opened the Message Log Trace. Got the error as follows
    <MessageLogTraceRecord>
    <HttpResponse xmlns="http://schemas.microsoft.com/2004/06/ServiceModel/Management/MessageTrace">
    <StatusCode>InternalServerError</StatusCode>
    <StatusDescription>Internal Server Error</StatusDescription>
    <WebHeaders>
    <Content-Length>730</Content-Length>
    <Cache-Control>private</Cache-Control>
    <Content-Type>text/xml; charset=utf-8</Content-Type>
    <Date>Sat, 03 Jan 2015 12:12:24 GMT</Date>
    <Server>Microsoft-IIS/7.5</Server>
    <X-AspNet-Version>4.0.30319</X-AspNet-Version>
    <X-Powered-By>ASP.NET</X-Powered-By>
    </WebHeaders>
    </HttpResponse>
    <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Header></s:Header>
    <s:Body>
    <s:Fault>
    <faultcode xmlns:a="http://schemas.microsoft.com/net/2005/12/windowscommunicationfoundation/dispatcher" xmlns="">a:InternalServiceFault</faultcode>
    <faultstring xml:lang="en-US" xmlns="">The server was unable to process the request due to an internal error.  For more information about the error, either turn on IncludeExceptionDetailInFaults (either from ServiceBehaviorAttribute
    or from the <serviceDebug> configuration behavior) on the server in order to send the exception information back to the client, or turn on tracing as per the Microsoft .NET Framework SDK documentation and inspect the server trace logs.</faultstring>
    </s:Fault>
    </s:Body>
    </s:Envelope>
    </MessageLogTraceRecord>
    Try to understand but could not understand because i'am new to wcf services. Please help me to find the error details.
    Thanks in advance
    Regards
    rax227 
                           

    Hi Mohan,
    I didn't use Fiddler before, I just download and use it but how to see the request message from this software?
    I have logged the request to event log before send to web service and copy this request from event log to testing with soapUI, so I don't think have between the actual messages being sent to your client via orchestration and soapui. In the log Response shape
    I see the fault response in event log.
    You can see
    this link to know how to use fiddler. As I suggested above the error you need to check is at the server side who is hosting the service( your party ) because you are getting fault response properly from them. The webservice you are calling seems to look
    like WCF service too. Your life would have been so easier if you could ask them to have firewall open from your dev box to their dev server so that you can use use "Add Service Reference" wizard, that even they have .NET wcf service too. 
    Did you by any chance manage to talk to them what they are getting or if they can increase the exception details in the fault message for you?
    If this answers your question please mark it as Answer and if this post is helpful, please vote as helpful. Thanks !

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. Event 1121

    Hello all,
    We migrated our Exchange server from 2003 to 2010. After the mailbox move requests were finished we had one that was stuck. We basically skipped it as we had a lot of other things to finish over the weekend. Here we are a year later, the old exchange server
    is gone and so is an old DC. I am receiving an error every four minutes in event viewer.
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error.
    Request GUID: '3e46b7cb-2ac0-42c1-98e8-57517a19ee40' 
    Database GUID: '5c6c573b-4f45-4ce3-b296-11cf69c2e2b6'
    Error: Unable to find 'OLD Domain Controller' computer information in domain controller 'OLD Domain Controller' to perform the suitability check. Verify the fully qualified domain name..
    I have checked in EMC for move requests. None are listed. I have checked the DCs listed in EMC properties. Old DC is not listed.
    I also ran these commands in shell to attempt to cancel the stuck request.
    Get-MoveRequest -MoveStatus Completed;Pending;InProgress;Failed;CompletedWithWarning;Suspended;Queued;CompletionWithProgress : Remove-MoveRequest
    NO changes. Still throwing error. Any suggestions? I also tried using the guid and shell to look at the move request. Systems replies no such request.

    Hello,
    Please try to restart iis services to check the result.
    If the issue persists, I recommend you ping you DC server on your exchange server to check if your exchange server can communicate with your DC server.
    If there are other DCs, please try to use set-adserversettings cmdlet to specify a DC for your exchange server.
    Set-AdServerSettings
    http://technet.microsoft.com/en-us/library/dd298063(v=exchg.150).aspx
    Besides, please install the lasted rollup to check the result.
    Cara Chen
    TechNet Community Support

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. : Error: An Active Directory Constraint Violation error occurred

    Hello,
    We have a multi domain parent child AD domain infrastructure and now we upgraded our exchange from Exchange 2007 to Exchange 2013. Since last few days, we see the below error on the mailbox server event viewer.
    EVENT ID : 1121
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error. 
    Request GUID: '93a7d1ca-68a1-4cd9-9edb-a4ce2f7bb4cd' 
    Database GUID: '83d028ec-439d-4904-a0e4-1d3bc0f58809' 
    Error: An Active Directory Constraint Violation error occurred on <domain controller FQDN>. Additional information: The name reference is invalid. 
    This may be caused by replication latency between Active Directory domain controllers. 
    Active directory response: 000020B5: AtrErr: DSID-0315286E, #1:
    Our Exchange setup is in parent domain, but we keep on getting this error for various domain controllers in each child domain in the same site. We then configured one of the parent domain domain controller on Exchange. Still we are getting this error for
    the configured parent domain DC.
    Verified the AD replication and there is no latency or pending stuffs.
    Any support  to resolve this issue will be highly appreciated. Thank you in advance.
    Regards,
    Jnana R Dash

    Hi,
    In addition to Ed's suggestion, I would like to clarify the following things for troubleshooting:
    1. Please restart IIS at first.
    2. If the issue persists, please ping your DC on your Exchange server to check if Exchange can communicate with DC.
    Hope it helps.
    Best regards,
    Amy Wang
    TechNet Community Support

  • The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error

    Since demoting a child domain a few days ago, Exchange 2013 is still trying to contact it and as a result generating errors in the application event logs.  I had a similar problem which I solved by removing some old migration batches, now I have a problem
    with the Microsoft Exchange Mailbox Replication service.
    The event logged is:
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error.
    Request GUID: '0b6c0f5a-0563-48e2-8b97-e0781c6cc69a' 
    Database GUID: '23258311-ad29-41c2-a842-522f48baa267'
    Error: Unable to read from Active Directory. --> The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details Unable to find a suitable directory server for
    domain 'admin.riddlesdown.local'.. --> Unable to find a suitable directory server for domain 'admin.riddlesdown.local'..
    Process Microsoft.Exchange.Directory.TopologyService.exe (PID=2280). Exchange Active Directory Provider could not find an available domain controller in domain admin.riddlesdown.local. This event may be caused by network connectivity issues or
    configured incorrectly DNS server.
    The domain doesn't exist in AD Sites and Services, I have removed all traces from DNS but this is still occurring.  When I run Get-ADServerSettings | fl it reports no trace of the domain or a DC that was previously in it.
    How can I stop these events occurring and is it likely to be causing something else not to work correctly.
    We are running Exchange 2013 CU1

    No, that didn't work.  Here are more details:
    Source: MSExchange ADAccess (EventID: 2130)
    Process Microsoft.Exchange.Directory.TopologyService.exe (PID=2280). Exchange Active Directory Provider could not find an available domain controller in domain admin.riddlesdown.local. This event may be caused by network connectivity issues or configured
    incorrectly DNS server.
    Source: MSExchange ADAccess (EventID: 2119)
    Process Microsoft.Exchange.Directory.TopologyService.exe (PID=2280). Error DNS_ERROR_RCODE_NAME_ERROR (0x8007232B) occurred when DNS was queried for the service location (SRV) resource record used to locate a domain controller for domain admin.riddlesdown.local
     The query was for the SRV record for _ldap._tcp.dc._msdcs.admin.riddlesdown.local
     Common causes of this error include the following:
     - The DNS SRV records required to locate a domain controller for the domain are not registered in DNS. These records are registered with a DNS server automatically when a domain controller is added to a domain. They are updated by the domain controller
    at set intervals. This computer is configured to use DNS servers with following IP addresses:
    10.59.100.7
    10.59.100.8
    fec0:0:0:ffff::1Microsoft.Exchange.Directory.TopologyService.exe
    fec0:0:0:ffff::2Microsoft.Exchange.Directory.TopologyService.exe
    fec0:0:0:ffff::3Microsoft.Exchange.Directory.TopologyService.exe
     - One or more of the following zones do not include delegation to its child zone:
    admin.riddlesdown.local
    riddlesdown.local
    local
    . (the root zone)
    Source: MSExchange Mailbox Replication Service (EventID: 1121)
    The Microsoft Exchange Mailbox Replication service was unable to process a request due to an unexpected error.
    Request GUID: '87f4b926-0621-43d3-afeb-fe475ee6d850' 
    Database GUID: '23258311-ad29-41c2-a842-522f48baa267'
    Error: Unable to read from Active Directory. --> The call to Microsoft Exchange Active Directory Topology service on server 'TopologyClientTcpEndpoint (localhost)' returned an error. Error details Unable to find a suitable directory server for domain 'admin.riddlesdown.local'..
    --> Unable to find a suitable directory server for domain 'admin.riddlesdown.local'..
    Something is cause the Exchange server to go looking for our old domain, but what and why?

  • [Solved] Cannot "su" properly in a terminal due to a .bashrc error

    The problem is simple:  I cannot su to my root account properly.  I can do so successfully in that I can become "root" but I get no output on the screen after typing in a command.  E.g., this is what my terminal shows after su'ing to root and typing the "ls" command:
    : ~ : su
    Password:
    :root:~: ls -a
    :root:~:
    Even trying to bring up a nano window gives the same result:
    :root:~: nano .bashrc
    :root:~:
    I get this behaviour in RoxTerm but in Xfce-Terminal I get this error instead:
    : ~ : su
    Password:
    -bash: printf: write error: Broken pipe
    Broken pipe (core dumped)
    : ~ :
    I have received the same error in the past in RoxTerm but it seems to have gone away today.  I did Google that error but I found nothing that seemed to point to a solution for this issue.  And, after a lot of experimentation and troubleshooting, I've narrowed down my issue to an error in my .bashrc file.  However, despite combing through it several times, and finding other errors, I still can't locate what is causing this issue.
    My .bashrc:
    ### ====== .bashrc + all prompts = a common config file for all ======
    ### Created Saturday 04 October 2014
    ## See [[ssh:ssh prompts]] for SSH
    # [[~/.bashrc]]
    ### Last edited October 2014 by H
    # ===================================================================================================
    # This file is sourced by all *interactive* bash shells on startup,
    # including some apparently interactive shells such as scp and rcp
    # that can't tolerate any output. So make sure this doesn't display
    # anything or bad things will happen!
    # If not running interactively, don't do anything.
    [[ $- != *i* ]] && return
    # ===================================================================================================
    # Alias definitions.
    # You may want to put all your additions into a separate file like
    # ~/.bash_aliases, instead of adding them here directly.
    # See /usr/share/doc/bash-doc/examples in the bash-doc package.
    if [ -f ~/.bash_aliases ]; then
    . ~/.bash_aliases
    fi
    # ===================================================================================================
    # Below are the color init strings for the basic file types. A color init string consists of one or more of the following numeric codes:
    # Attribute codes:
    # 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
    # Text color codes:
    # 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
    # Background color codes:
    # 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
    ## Now source the .dir_colors file to use those colours!
    if [ -x /usr/bin/dircolors ]; then
    test -r ~/.dir_colors && eval "$(dircolors -b ~/.dir_colors)" || eval "$(dircolors -b)"
    fi
    # ===================================================================================================
    ### [User Prompts]
    ## Very fancy ##
    #export PS1='\[\033[0;32m\]┌┼─┼─ \[\033[0m\033[0;32m\]\u\[\033[0m\] @ \[\033[0;36m\]\h\[\033[0m\033[0;32m\] ─┤├─ \[\033[0m\]\t \d\[\033[0;32m\] ─┤├─ \[\033[0;34m\]\w\[\033[0;32m\] ─┤ \n\[\033[0;32m\]└┼─\[\033[0m\033[0;32m\]\$\[\033[0m\033[0;32m\]─┤▶\[\033[0m\] '
    ## Very fancy with $ removed
    #export PS1='\[\033[0;32m\]┌┼─┼─ \[\033[0m\033[0;32m\]\u\[\033[0m\] @ \[\033[0;36m\]\h\[\033[0m\033[0;32m\] ─┤├─ \[\033[0m\]\t \d\[\033[0;32m\] ─┤├─ \[\033[0;34m\]\w\[\033[0;32m\] ─┤ \n\[\033[0;32m\]└┼─\[\033[0;32m\]─┤▶\[\033[0m\] '
    ### White Yunzi
    export PS1='\[\e[0;37m\]: \[\e[1;92m\]\W\[\e[0;37m\] :\[\e[m\] \[\e[0;37m\]'
    #### Silver Yunzi
    #export PS1='\[\e[0;37m\]: \[\e[1;94m\]\W\[\e[0;37m\] :\[\e[m\] \[\e[0;37m\]'
    ### Pink Yunzi
    #export PS1='\[\e[0;37m\]: \[\e[1;95m\]\W\[\e[0;37m\] :\[\e[m\] \[\e[0;37\]'
    #### Red Yunzi
    #export PS1='\[\e[0;37m\]: \[\e[1;91m\]\W\[\e[0;37m\] :\[\e[m\] \[\e[0;37m\]'
    ### [Root Prompts]
    ### White Yunzi Root
    #export PS1='\[\e[1;37m\]:\[\e[1;92m\]\u\[\e[1;37m\]:\[\e[1;92m\]\W\[\e[1;37m\]:\[\e[m\] \[\e[0;37m\]'
    ### Silver Yunzi Root
    #export PS1='\[\e[0;37m\]:\[\e[1;94m\]\u\[\e[0;37m\]:\[\e[1;94m\]\W\[\e[0;37m\]:\[\e[m\]\[\e[0;37m\]'
    ### Pink Yunzi Root
    #export PS1='\[\e[0;37m\]:\[\e[1;95m\]\u\[\e[0;37m\]:\[\e[1;95m\]\W\[\e[0;37m\]:\[\e[m\] \[\e[0;37\]'
    ### Red Yunzi Root
    #export PS1='\[\e[0;37m\]:\[\e[1;91m\]\u\[\e[0;37m\]:\[\e[1;95m\]\W\[\e[0;37m\]:\[\e[m\] \[\e[0;37\]'
    # ===========================================================================================================================================
    ### If the connection to the system is a remote connection 'ssh' will be
    ### appended to the prompt. Otherwise the prompt will be displayed normally.
    # See: remote.colourful.prompt_how-to on /media/lynwyn/networking/ssh
    #### White Yunzi ###
    # : ~ : ssh :
    if [ -n "$SSH_TTY" ] || [ -n "$SUDO_USER" ] ; then
    PS1="$PS1"ssh\ :\ ""
    fi
    # ================**OR**===========================================================================================================================
    # : ~ : :ssh:
    #export PS1='\[\e[0;37m\]: \[\e[1;92m\]\W\[\e[0;37m\] :\[\e[m\]\[\e[0;37m\]'
    #if [ -n "$SSH_TTY" ] || [ -n "$SUDO_USER" ] ; then
    # PS1="$PS1:ssh:"
    #fi
    # ===========================================================================================================================================
    ### Silver Yunzi ###
    # :~::ssh:
    #export PS1='\[\e[0;37m\]:\[\e[1;94m\]\W\[\e[0;37m\]:\[\e[m\]\[\e[0;37m\]'
    #if [ -n "$SSH_TTY" ] || [ -n "$SUDO_USER" ] ; then
    # PS1="$PS1":ssh: ""
    #fi
    # ===========================================================================================================================================
    ### Pink ###
    # :~:ssh:
    #export PS1='\[\e[0;37m\]:\[\e[1;95m\]\W\[\e[0;37m\]:\[\e[m\]\[\e[0;37m\]'
    #if [ -n "$SSH_TTY" ] || [ -n "$SUDO_USER" ] ; then
    # PS1="$PS1"ssh: ""
    #fi
    # ===========================================================================================================================================
    ### Red ###
    # :~:ssh:
    #export PS1='\[\e[0;37m\]:\[\e[1;91m\]\W\[\e[0;37m\]:\[\e[m\]\[\e[0;37m\]'
    #if [ -n "$SSH_TTY" ] || [ -n "$SUDO_USER" ] ; then
    # PS1="$PS1"ssh: ""
    #fi
    # ===================================================================================================
    #### * BASH options * ###
    # Bash won't get SIGWINCH if another process is in the foreground.
    # Enable checkwinsize so that bash will check the terminal size when it regains control.
    # [check the window size after each command and, if necessary, update the values of LINES and COLUMNS.]
    # http://cnswww.cns.cwru.edu/~chet/bash/FAQ (E11)
    shopt -s checkwinsize
    # ===================================================================================================
    # automatically prepend cd when entering just a path in the shell
    shopt -s autocd
    # ===================================================================================================
    # Enable history appending instead of overwriting.
    shopt -s histappend
    # ===================================================================================================
    # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
    HISTSIZE=10000
    HISTFILESIZE=20000
    # ===================================================================================================
    ## erase duplicate entries in your history file
    ## and force Bash History to ignorespace
    export HISTCONTROL=erasedups:ignorespace
    # ===================================================================================================
    ## This will prevent you from over-writing any file that you direct to with the ">" or ">>" symbols, thus destroying whatever pre-existing file
    ## you're pointing to in the first place. This tweak prevents that from happening and ">" or ">>" will fail when directed at an existing file.
    ## To clobber the existing file you have to use ">|" which is much harder to type by accident.
    set -o noclobber
    ===========================================================================================================================================
    ## Set variable identifying the chroot you work in (used in the prompt below)
    #if [ -z "$arch_chroot" ] && [ -r /etc/arch_chroot ]; then
    # debian_chroot=$(cat /etc/arch_chroot)
    #fi
    # ===================================================================================================
    # environment variables using gedit and nano
    export EDITOR="$(if [[ -n $DISPLAY ]]; then echo 'gedit'; else echo 'nano'; fi)"
    # ===================================================================================================
    ### Colored output through environment variables
    ### Add the following lines to your shell configuration file @ ~/.bashrc:
    ### List of colors for prompt and Bash: http://en.wikipedia.org/wiki/ANSI_escape_code#Colors
    ### See the web page above for a complete listing of all the colours applicable to these environments:
    ### Standard VGA colors / Windows XP CMD / Terminal.app / PuTTY / xterm / CSS/HTML / X
    #export LESS=-R
    #export LESS_TERMCAP_me=$(printf '\e[0m')
    #export LESS_TERMCAP_se=$(printf '\e[0m')
    #export LESS_TERMCAP_ue=$(printf '\e[0m')
    #export LESS_TERMCAP_mb=$(printf '\e[1;32m')
    #export LESS_TERMCAP_md=$(printf '\e[1;34m')
    #export LESS_TERMCAP_us=$(printf '\e[1;32m')
    #export LESS_TERMCAP_so=$(printf '\e[1;44;1m')
    ### Coloured man pages with explanations of colours in comments
    # Note to self: all of the colour & escape statements work ONLY by using double quote marks, e.g. " ... "
    ## Coloured man pages with explanations of colours in comments
    # 67: Primary colour for program names is Dark Green [old 80's CRT green!]
    # 68: Optional arguments and/or separate options for arguments is Bright Green
    # 69: Text Reset
    # 70: Text Reset
    # 71: man page info bottom of page is Dark Red on Black background (net effect is transparent background with red writing)
    # 72: Text Reset
    # 73: References to other programs (and their respective man page(s)) are Bright Yellow [good neutral yellow]
    man() {
    env LESS_TERMCAP_mb=$(printf "\e[1;31m") \
    LESS_TERMCAP_md=$(printf "\e[1;31m") \
    LESS_TERMCAP_me=$(printf "\e[0m") \
    LESS_TERMCAP_se=$(printf "\e[0m") \
    LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
    LESS_TERMCAP_ue=$(printf "\e[0m") \
    LESS_TERMCAP_us=$(printf "\e[1;32m") \
    man "$@"
    # ===================================================================================================
    ## To get a skin of your choice loaded instead of mc's default
    ## skin, you might consider the following solution:
    ## Multi-User: Create an alias for mc in your ~/.bashrc, like:
    if [ $TERM = "screen-256color" ]; then
    if [ $USER = "root" ]; then
    myMCSkin="modarcon16root-defbg"
    else
    myMCSkin="modarcon16-defbg"
    fi
    alias mc='mc --skin $myMCSkin'
    alias mcedit="mcedit --skin $myMCSkin"
    alias mcview="mcview --skin $myMCSkin"
    alias mcdiff="mcdiff --skin $myMCSkin"
    fi
    # ===================================================================================================
    # TMUX
    # Put this this snippet BEFORE the aliases in .bashrc.
    # This code starts TMUX with only one session (unless you start some manually), on login;
    # it will try to attach to a currently running session.
    # If there isn't a currently running session then TMUX will create one.
    # if which tmux 2>&1 >/dev/null; then
    ## if not inside a tmux session, and if no session is started start a new session
    # test -z "$TMUX" && (exec qterminal -e bash -c "tmux -q has-session && exec tmux attach-session -d || exec tmux new-session -n $USER -s $USER")
    # fi
    # ===================================================================================================
    Edit: fixed a few typos
    Last edited by MoonSwan (2014-10-25 01:22:52)

    Thank you very much for the response Jason and I am sorry for the late reply but as usual life got in the way.
    I ended up doing some more experimentation and I did fix the bug you pointed out.  When this didn't solve the problem I started to look at other files.  It turned out that my .bash_aliases file was the real culprit.  The offending line was:
    alias su='su -l | cd ~/' # invokes a login shell then changes to root's home directory
    I fixed the issue by changing that line to read:
    alias su='su -l ' # invokes a login shell then changes to root's home directory
    As always thank you for the help, 

  • Cannot download Creative Cloud due to Adobe Bridge error

    My Windows based computer will not allow me to download any of the CS6 products available through the Creative Cloud subscription. The error I continue to receive is that Adobe Bridge is open. I've since used the Adobe Cleanup Tool to delete my previous CS5 Master Collecter. I've also deleted the Bridge task in the task manager. I'm still getting the same error. I'm sure someone has an easy fix to this. Any and all help will be greatly appreciated.

    Thanks John for your reply. After I made this post yesterday, I went back and gave it another try and everything worked out fine. I do believe it was a combination of using the Adobe cleaning tool, task manager AND rebooting several times that finally got my programs downloaded. And by the way, I running Windows 7.

  • I cannot download and install Flash player due to general initation error

    Greetings,  I have a Windows 7 64--bit OS, Mozilla--Firefox browser. I cannot download from multiple locations, File hippo, adobe internet location, flash player. The message that I get at the end is general initation error. Then the software starts all over again with the same result. Thank you Ldxrunner

    Did you try the installers from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_text_4 ?

  • I can't upload images into CS6 due to a plugin error that hasn't occurred before.

    As the title says, I keep getting an error when I try to upload an image into CS6. It hasn't done this before, and I don't know what to do. I've even tried opening my previous images I've used in works before in CS6 and they are all greyed out as well. I really need some help, any is appreciated. Thanks.

    You can't open the image file in InDesign.
    Go to File-->Place and place the image file in InDesign

  • HT201210 MY I phone 4 cannot be updated in I tunes due to an unknown error(11).   Any advice?

    Looking for help please

    Assuming from your post that you are attempting to update your device using Windows 7 I would suggest the first thing you do when getting this type of error is to disabled the Windows firewall. After disabling this I would go to your anti-spyware program that auto scans your computer and UNINSTALL this program. Once the update has then sucessfully completed I would then suggest you reverse the process of the firewall and re-installing your anti-spyware.
    Good luck.

  • Cannot log anyone onto one computer due to personal certificate error

    I have a client who just deployed Lync with Office 365. On one user's computer, no one can log into Lync. If she goes to any other computer, she can log in fine. If another user tries on her computer, they get the same error. It's the error about a personal
    certificate. I went through the troubleshooting wizard, deleting the SIP folder, and deleting all the certificates associated with Office or otherwise generated the same day as the Lync install. But it did not work. Tried uninstalling and reinstalling several
    times, with no success. They are using a reseller from Office 365, and contacting their engineers, THEY were unable to assist. Is there anything else to check? The user stated when she saw other people first log in, they had a pop up to accept a certificate.
    But she never got one on her computer.

    Hi,
    On Lync client, OptionàPersonalàclick Advanced...button
    beside Sign-in address, check if you choice “Automatic configuration”. If not, change to it and then test again.
    Please also reg delete HKCU\Software\Microsoft\Office\15.0\Lync\[email protected] /f.
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • Can't Run Pandora Due To Adobe Air Error

    [2010-12-25:23:23:34] Runtime Installer begin with version 2.5.1.17730 on Windows Vista x86
    [2010-12-25:23:23:34] Commandline is: -playerVersion=10,1,102,64 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -x1 http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2010-12-25:23:23:34] No installed runtime detected
    [2010-12-25:23:23:34] Invoking Application Installer for combined install
    [2010-12-25:23:23:34] Launching subprocess with commandline C:\Users\Owner\AppData\Local\Temp\AIR6585.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Owner\AppData\Local\Temp\AIR6585.tmp -playerVersion=10,1,102,64 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2010-12-25:23:23:34] Application Installer begin with version 2.5.1.17730 on Windows Vista x86
    [2010-12-25:23:23:34] Commandline is: -runtime C:\Users\Owner\AppData\Local\Temp\AIR6585.tmp -playerVersion=10,1,102,64 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2010-12-25:23:23:34] No installed runtime detected
    [2010-12-25:23:23:35] Unpackaging http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air to C:\Users\Owner\AppData\Local\Temp\fla7925.tmp
    [2010-12-25:23:23:41] Application signature verified
    [2010-12-25:23:23:41] Unpackaging/validation complete
    [2010-12-25:23:24:19] Converting unpackaged application to a native installation package in C:\Users\Owner\AppData\Local\Temp\fla24C0.tmp
    [2010-12-25:23:24:19] Native installation package creation succeeded
    [2010-12-25:23:24:19] Launching subprocess with commandline C:\Users\Owner\AppData\Local\Temp\AIR6585.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Owner\AppData\Local\Temp\AIR6585.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)" -desktopShortcut -programMenu http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2010-12-25:23:24:19] Relaunching with elevation
    [2010-12-25:23:24:22] Application Installer begin with version 2.5.1.17730 on Windows Vista x86
    [2010-12-25:23:24:22] Commandline is: -stdio \\.\pipe\AIR_4436_0 -runtime C:\Users\Owner\AppData\Local\Temp\AIR6585.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)" -desktopShortcut -programMenu http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2010-12-25:23:24:22] No installed runtime detected
    [2010-12-25:23:24:23] Unpackaging http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air to C:\Users\Owner\AppData\Local\Temp\fla3542.tmp
    [2010-12-25:23:24:24] Application signature verified
    [2010-12-25:23:24:24] Unpackaging/validation complete
    [2010-12-25:23:24:24] Converting unpackaged application to a native installation package in C:\Users\Owner\AppData\Local\Temp\fla3B1D.tmp
    [2010-12-25:23:24:25] Native installation package creation succeeded
    [2010-12-25:23:24:25] Starting silent combined runtime and app install.
    Installing runtime version 2.5.1.17730.
    Installing app com.pandora.desktop.FB9956FD96E03239939108614098AD95535EE674.1 version 2.0.5 to C:\Program Files (x86) using the source file at http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2010-12-25:23:24:25] Installing msi at C:\Users\Owner\AppData\Local\Temp\AIR6585.tmp\setup.msi with guid {46C045BF-2B3F-4BC4-8E4C-00E0CF8BD9DB}
    [2010-12-25:23:24:28] Installing msi at C:\Users\Owner\AppData\Local\Temp\fla3B1D.tmp\setup.msi with guid {D51FD609-2385-695F-3D93-BD2C435A5EA2}
    [2010-12-25:23:24:30] Application Installer end with exit code 0
    [2010-12-25:23:24:30] Elevated install completed
    [2010-12-25:23:24:31] Launching subprocess with commandline C:\Program Files (x86)\Pandora\Pandora.exe
    [2010-12-25:23:24:32] Application Installer end with exit code 0
    [2010-12-25:23:24:32] Subprocess app installer succeeded
    [2010-12-25:23:24:32] Runtime Installer end with exit code 0
    [2010-12-25:23:25:02] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2010-12-25:23:25:02] Runtime Installer begin with version 2.5.1.17730 on Windows Vista x86
    [2010-12-25:23:25:02] Commandline is: -updatecheck
    [2010-12-25:23:25:02] Installed runtime (2.5.1.17730) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2010-12-25:23:25:03] Performing pingback request
    [2010-12-25:23:25:03] Pingback request completed with HTTP status 200
    [2010-12-25:23:25:03] Starting runtime background update check
    [2010-12-25:23:25:03] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.5.1.17730/update
    [2010-12-25:23:25:03] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.5.1.17730/update to C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background
    [2010-12-25:23:25:04] Runtime update not available
    [2010-12-25:23:25:04] Unpackaging cancelled
    [2010-12-25:23:25:04] Runtime Installer end with exit code 0
    [2011-05-29:06:00:16] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-05-29:06:00:16] Runtime Installer begin with version 2.5.1.17730 on Windows Vista x86
    [2011-05-29:06:00:16] Commandline is: -updatecheck
    [2011-05-29:06:00:16] Installed runtime (2.5.1.17730) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-05-29:06:00:17] Performing pingback request
    [2011-05-29:06:00:17] Starting runtime background update check
    [2011-05-29:06:00:17] Clearing unused background update directory
    [2011-05-29:06:00:17] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.5.1.17730/update
    [2011-05-29:06:00:17] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.5.1.17730/update to C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-05-29:06:00:39] Unpackaging complete
    [2011-05-29:06:00:39] Download success
    [2011-05-29:06:00:39] Runtime updated downloaded
    [2011-05-29:06:00:39] Runtime background update check failed: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Error #3001" errorID=3001]
    [2011-05-29:06:00:39] Runtime Installer end with exit code 0
    [2011-11-06:00:49:28] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -applyupdates "c:\program files (x86)\pandora\pandora.exe"
    [2011-11-06:00:49:28] Runtime Installer begin with version 2.5.1.17730 on Windows Vista x86
    [2011-11-06:00:49:28] Commandline is: -applyupdates "c:\program files (x86)\pandora\pandora.exe"
    [2011-11-06:00:49:28] Installed runtime (2.5.1.17730) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:49:28] Installed app (com.pandora.desktop.FB9956FD96E03239939108614098AD95535EE674.1) located at c:\program files (x86)\pandora\pandora.exe
    [2011-11-06:00:49:29] Starting runtime background update installation
    [2011-11-06:00:49:29] Launching subprocess with commandline C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update "c:\program files (x86)\pandora\pandora.exe"
    [2011-11-06:00:49:29] Runtime updater successfully launched
    [2011-11-06:00:49:29] Runtime Installer end with exit code 0
    [2011-11-06:00:49:34] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-11-06:00:49:34] Commandline is: -update "c:\program files (x86)\pandora\pandora.exe"
    [2011-11-06:00:49:34] Installed runtime (2.5.1.17730) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:49:34] Installed app (com.pandora.desktop.FB9956FD96E03239939108614098AD95535EE674.1) located at c:\program files (x86)\pandora\pandora.exe
    [2011-11-06:00:49:39] Relaunching with elevation
    [2011-11-06:00:49:39] Launching subprocess with commandline c:\users\owner\appdata\local\temp\aireb0.tmp\adobe air installer.exe -ei
    [2011-11-06:00:49:42] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-11-06:00:49:42] Commandline is: -stdio \\.\pipe\AIR_320_0 -ei
    [2011-11-06:00:49:42] Installed runtime (2.5.1.17730) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:49:43] Starting silent runtime update. Updating runtime from version 2.5.1.17730 to version 2.6.0.19140
    [2011-11-06:00:49:43] Installing msi at c:\users\owner\appdata\local\temp\aireb0.tmp\setup.msi with guid {AFF7E080-1974-45BF-9310-10DE1A1F5ED0}
    [2011-11-06:00:49:55] Runtime Installer end with exit code 0
    [2011-11-06:00:49:55] Elevated install completed
    [2011-11-06:00:50:34] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:50:35] Launching subprocess with commandline c:\program files (x86)\pandora\pandora.exe
    [2011-11-06:00:50:35] Runtime Installer end with exit code 0
    [2011-11-06:00:51:06] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -updatecheck
    [2011-11-06:00:51:06] Runtime Installer begin with version 2.6.0.19140 on Windows Vista x86
    [2011-11-06:00:51:06] Commandline is: -updatecheck
    [2011-11-06:00:51:06] Installed runtime (2.6.0.19140) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:51:07] Performing pingback request
    [2011-11-06:00:51:08] Pingback request completed with HTTP status 200
    [2011-11-06:00:51:08] Starting runtime background update check
    [2011-11-06:00:51:08] Clearing unused background update directory
    [2011-11-06:00:51:08] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.6.0.19140/update
    [2011-11-06:00:51:08] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/2.6.0.19140/update to C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-06:00:51:17] Unpackaging complete
    [2011-11-06:00:51:18] Download success
    [2011-11-06:00:51:18] Runtime updated downloaded
    [2011-11-06:00:51:28] User has selected immediate install of the update
    [2011-11-06:00:51:28] Starting runtime background update installation
    [2011-11-06:00:51:28] Launching subprocess with commandline C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background\updater -update
    [2011-11-06:00:51:28] Runtime updater successfully launched
    [2011-11-06:00:51:28] Runtime Installer end with exit code 0
    [2011-11-06:00:51:33] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:51:33] Commandline is: -update
    [2011-11-06:00:51:33] Installed runtime (2.6.0.19140) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:51:39] Relaunching with elevation
    [2011-11-06:00:51:39] Launching subprocess with commandline c:\users\owner\appdata\local\temp\airdd15.tmp\adobe air installer.exe -ei
    [2011-11-06:00:51:42] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:51:42] Commandline is: -stdio \\.\pipe\AIR_3620_0 -ei
    [2011-11-06:00:51:42] Installed runtime (2.6.0.19140) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:51:43] Starting silent runtime update. Updating runtime from version 2.6.0.19140 to version 3.0.0.4080
    [2011-11-06:00:51:43] Installing msi at c:\users\owner\appdata\local\temp\airdd15.tmp\setup.msi with guid {ACEB2BAF-96DF-48FD-ADD5-43842D4C443D}
    [2011-11-06:00:51:59] Runtime Installer end with exit code 0
    [2011-11-06:00:51:59] Elevated install completed
    [2011-11-06:00:52:22] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:52:23] Runtime Installer end with exit code 0
    [2011-11-06:00:52:25] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:52:25] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:52:25] Commandline is: -eula
    [2011-11-06:00:52:25] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:52:25] Starting eula display
    [2011-11-06:00:52:29] Finished eula display
    [2011-11-06:00:52:29] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:52:29] Runtime Installer end with exit code 0
    [2011-11-06:00:52:29] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:52:58] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:52:58] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:52:58] Commandline is: -eula
    [2011-11-06:00:52:58] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:52:59] Starting eula display
    [2011-11-06:00:53:06] Finished eula display
    [2011-11-06:00:53:06] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:53:06] Runtime Installer end with exit code 0
    [2011-11-06:00:53:06] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:53:39] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:53:39] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:53:39] Commandline is: -eula
    [2011-11-06:00:53:39] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:53:40] Starting eula display
    [2011-11-06:00:53:43] Finished eula display
    [2011-11-06:00:53:43] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:53:43] Runtime Installer end with exit code 0
    [2011-11-06:00:53:43] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:53:49] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:53:49] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:53:49] Commandline is: -eula
    [2011-11-06:00:53:49] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:53:50] Starting eula display
    [2011-11-06:00:53:54] Finished eula display
    [2011-11-06:00:53:54] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:53:54] Runtime Installer end with exit code 0
    [2011-11-06:00:53:55] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:54:00] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:54:00] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:54:00] Commandline is: -eula
    [2011-11-06:00:54:00] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:54:01] Starting eula display
    [2011-11-06:00:54:04] Finished eula display
    [2011-11-06:00:54:04] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:54:04] Runtime Installer end with exit code 0
    [2011-11-06:00:54:04] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:54:10] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:54:10] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:54:10] Commandline is: -eula
    [2011-11-06:00:54:10] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:54:10] Starting eula display
    [2011-11-06:00:54:18] Finished eula display
    [2011-11-06:00:54:18] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:54:18] Runtime Installer end with exit code 0
    [2011-11-06:00:54:18] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:55:50] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:55:51] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:55:51] Commandline is: -eula
    [2011-11-06:00:55:51] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:55:53] Starting eula display
    [2011-11-06:00:56:06] Finished eula display
    [2011-11-06:00:56:06] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:56:06] Runtime Installer end with exit code 0
    [2011-11-06:00:56:06] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:56:14] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:56:14] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:56:14] Commandline is: -eula
    [2011-11-06:00:56:14] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:56:15] Starting eula display
    [2011-11-06:00:56:17] Finished eula display
    [2011-11-06:00:56:17] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:56:17] Runtime Installer end with exit code 0
    [2011-11-06:00:56:17] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:56:25] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:56:25] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:56:25] Commandline is: -eula
    [2011-11-06:00:56:25] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:56:25] Starting eula display
    [2011-11-06:00:56:30] Finished eula display
    [2011-11-06:00:56:30] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:56:30] Runtime Installer end with exit code 0
    [2011-11-06:00:56:31] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:56:39] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:56:39] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:56:39] Commandline is: -eula
    [2011-11-06:00:56:39] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:56:39] Starting eula display
    [2011-11-06:00:56:46] Finished eula display
    [2011-11-06:00:56:46] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:56:46] Runtime Installer end with exit code 0
    [2011-11-06:00:56:46] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:56:55] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:56:55] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:56:55] Commandline is: -eula
    [2011-11-06:00:56:55] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:56:57] Starting eula display
    [2011-11-06:00:56:59] Finished eula display
    [2011-11-06:00:56:59] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:56:59] Runtime Installer end with exit code 0
    [2011-11-06:00:56:59] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:00:57:07] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:00:57:07] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:00:57:07] Commandline is: -eula
    [2011-11-06:00:57:07] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:00:57:08] Starting eula display
    [2011-11-06:00:57:10] Finished eula display
    [2011-11-06:00:57:10] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:00:57:10] Runtime Installer end with exit code 0
    [2011-11-06:00:57:11] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:01:00:12] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:01:00:12] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:01:00:12] Commandline is: -eula
    [2011-11-06:01:00:12] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:01:00:13] Starting eula display
    [2011-11-06:01:00:22] Finished eula display
    [2011-11-06:01:00:22] Runtime Installer end with exit code 0
    [2011-11-06:01:00:22] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:01:03:07] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:01:03:07] Commandline is:
    [2011-11-06:01:03:07] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:01:03:11] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-11-06:01:03:11] Runtime Installer end with exit code 0
    [2011-11-06:01:03:11] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:01:03:11] Commandline is: -installupdatecheck
    [2011-11-06:01:03:11] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:01:03:12] Performing pingback request
    [2011-11-06:01:03:17] Pingback request completed with HTTP status 200
    [2011-11-06:01:03:17] Starting runtime background update check
    [2011-11-06:01:03:17] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.0.0.4080/update
    [2011-11-06:01:03:17] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.0.0.4080/update to C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-11-06:01:03:17] Runtime update not available
    [2011-11-06:01:03:17] Unpackaging cancelled
    [2011-11-06:01:03:17] Runtime Installer end with exit code 0
    [2011-11-06:01:03:35] Application Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:01:03:35] Commandline is: "C:\My Download Files\pandora_2_0_5.air"
    [2011-11-06:01:03:35] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:01:03:36] Unpackaging file:///C:/My%20Download%20Files/pandora_2_0_5.air to C:\Users\Owner\AppData\Local\Temp\flaF45C.tmp
    [2011-11-06:01:03:37] Application signature verified
    [2011-11-06:01:03:37] Unpackaging/validation complete
    [2011-11-06:01:03:37] Installed app (com.pandora.desktop.FB9956FD96E03239939108614098AD95535EE674.1) located at C:\Program Files (x86)\Pandora\Pandora.exe
    [2011-11-06:01:03:49] Launching subprocess with commandline C:\Program Files (x86)\Pandora\Pandora.exe
    [2011-11-06:01:03:50] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:01:03:50] Application Installer end with exit code 0
    [2011-11-06:01:03:50] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:01:03:50] Commandline is: -eula
    [2011-11-06:01:03:50] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:01:03:50] Starting eula display
    [2011-11-06:01:03:57] Finished eula display
    [2011-11-06:01:03:57] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:01:03:57] Runtime Installer end with exit code 0
    [2011-11-06:01:03:57] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:01:04:17] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:01:04:17] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:01:04:17] Commandline is: -eula
    [2011-11-06:01:04:17] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:01:04:18] Starting eula display
    [2011-11-06:01:04:26] Finished eula display
    [2011-11-06:01:04:26] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:01:04:26] Runtime Installer end with exit code 0
    [2011-11-06:01:04:26] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-06:01:45:45] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-06:01:45:45] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-06:01:45:45] Commandline is: -eula
    [2011-11-06:01:45:45] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-06:01:45:45] Starting eula display
    [2011-11-06:01:45:48] Finished eula display
    [2011-11-06:01:45:48] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-06:01:45:48] Runtime Installer end with exit code 0
    [2011-11-06:01:45:48] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-07:21:46:26] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-07:21:46:26] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-07:21:46:26] Commandline is: -eula
    [2011-11-07:21:46:26] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-07:21:46:29] Starting eula display
    [2011-11-07:21:46:41] Finished eula display
    [2011-11-07:21:46:41] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-11-07:21:46:41] Runtime Installer end with exit code 0
    [2011-11-07:21:46:41] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-11-07:21:46:43] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-11-07:21:46:43] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-11-07:21:46:43] Commandline is: -eula
    [2011-11-07:21:46:43] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-11-07:21:46:44] Starting eula display
    [2011-11-07:21:46:47] Finished eula display
    [2011-11-07:21:46:47] Runtime Installer end with exit code 0
    [2011-11-07:21:46:47] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-27:23:50:27] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-27:23:50:27] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-12-27:23:50:27] Commandline is: -eula
    [2011-12-27:23:50:27] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:50:28] Starting eula display
    [2011-12-27:23:50:32] Finished eula display
    [2011-12-27:23:50:32] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-27:23:50:32] Runtime Installer end with exit code 0
    [2011-12-27:23:50:32] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-27:23:50:52] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-27:23:50:52] Runtime Installer begin with version 3.0.0.4080 on Windows Vista x86
    [2011-12-27:23:50:52] Commandline is: -eula
    [2011-12-27:23:50:52] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:50:53] Starting eula display
    [2011-12-27:23:51:00] Finished eula display
    [2011-12-27:23:51:00] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-27:23:51:00] Runtime Installer end with exit code 0
    [2011-12-27:23:51:00] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-27:23:55:48] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-27:23:55:48] Commandline is:
    [2011-12-27:23:55:48] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:55:54] Relaunching with elevation
    [2011-12-27:23:55:54] Launching subprocess with commandline c:\users\owner\appdata\local\temp\aird39.tmp\adobe air installer.exe -ei
    [2011-12-27:23:55:57] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-27:23:55:57] Commandline is: -stdio \\.\pipe\AIR_4188_0 -ei
    [2011-12-27:23:55:57] Installed runtime (3.0.0.4080) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:55:57] Starting silent runtime update. Updating runtime from version 3.0.0.4080 to version 3.1.0.4880
    [2011-12-27:23:55:58] Installing msi at c:\users\owner\appdata\local\temp\aird39.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-27:23:56:15] Runtime Installer end with exit code 0
    [2011-12-27:23:56:15] Elevated install completed
    [2011-12-27:23:56:18] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-27:23:56:18] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-12-27:23:56:18] Runtime Installer end with exit code 0
    [2011-12-27:23:56:19] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-27:23:56:19] Commandline is: -installupdatecheck
    [2011-12-27:23:56:19] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:56:19] Performing pingback request
    [2011-12-27:23:56:23] Pingback request completed with HTTP status 200
    [2011-12-27:23:56:23] Starting runtime background update check
    [2011-12-27:23:56:23] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update
    [2011-12-27:23:56:23] Unpackaging http://airdownload.adobe.com/air/3/background/windows6.0/x86/patch/3.1.0.4880/update to C:\Users\Owner\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-12-27:23:56:24] Runtime update not available
    [2011-12-27:23:56:24] Unpackaging cancelled
    [2011-12-27:23:56:24] Runtime Installer end with exit code 0
    [2011-12-27:23:56:54] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-27:23:56:54] Commandline is: "C:\My Download Files\pandora_2_0_5(2).air"
    [2011-12-27:23:56:54] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:56:55] Unpackaging file:///C:/My%20Download%20Files/pandora_2_0_5(2).air to C:\Users\Owner\AppData\Local\Temp\fla22CC.tmp
    [2011-12-27:23:56:56] Application signature verified
    [2011-12-27:23:56:56] Unpackaging/validation complete
    [2011-12-27:23:56:56] No app located for appID 'com.pandora.desktop' and pubID 'FB9956FD96E03239939108614098AD95535EE674.1'
    [2011-12-27:23:57:23] Converting unpackaged application to a native installation package in C:\Users\Owner\AppData\Local\Temp\fla8F45.tmp
    [2011-12-27:23:57:24] Native installation package creation succeeded
    [2011-12-27:23:57:24] Starting app installation to C:\Program Files (x86). Installing app com.pandora.desktop.FB9956FD96E03239939108614098AD95535EE674.1 version 2.0.5 using the source file at file:///C:/My%20Download%20Files/pandora_2_0_5(2).air
    [2011-12-27:23:57:24] Got an unexpected fatal error while in stateInstalling: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: Directory can't be written to" errorID=5006]
    [2011-12-27:23:57:24] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)" -desktopShortcut -programMenu file:///C:/My%20Download%20Files/pandora_2_0_5(2).air
    [2011-12-27:23:57:24] Relaunching with elevation
    [2011-12-27:23:57:27] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-27:23:57:27] Commandline is: -stdio \\.\pipe\AIR_4772_0 -runtime "c:\Program Files (x86)\Common Files" -silent -logToStdout -url -location "C:\Program Files (x86)" -desktopShortcut -programMenu file:///C:/My%20Download%20Files/pandora_2_0_5(2).air
    [2011-12-27:23:57:27] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:57:28] Unpackaging file:///C:/My%20Download%20Files/pandora_2_0_5(2).air to C:\Users\Owner\AppData\Local\Temp\flaA1CA.tmp
    [2011-12-27:23:57:28] Application signature verified
    [2011-12-27:23:57:28] Unpackaging/validation complete
    [2011-12-27:23:57:28] No app located for appID 'com.pandora.desktop' and pubID 'FB9956FD96E03239939108614098AD95535EE674.1'
    [2011-12-27:23:57:28] Converting unpackaged application to a native installation package in C:\Users\Owner\AppData\Local\Temp\flaA45B.tmp
    [2011-12-27:23:57:29] Native installation package creation succeeded
    [2011-12-27:23:57:29] Starting silent app installation to C:\Program Files (x86). Installing app com.pandora.desktop.FB9956FD96E03239939108614098AD95535EE674.1 version 2.0.5 using the source file at file:///C:/My%20Download%20Files/pandora_2_0_5(2).air
    [2011-12-27:23:57:29] Installing msi at C:\Users\Owner\AppData\Local\Temp\flaA45B.tmp\setup.msi with guid {D51FD609-2385-695F-3D93-BD2C435A5EA2}
    [2011-12-27:23:57:30] Application Installer end with exit code 0
    [2011-12-27:23:57:31] Elevated install completed
    [2011-12-27:23:57:31] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-27:23:57:33] Application Installer end with exit code 0
    [2011-12-27:23:57:43] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-27:23:57:43] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-27:23:57:43] Commandline is: -eula
    [2011-12-27:23:57:43] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:57:44] Starting eula display
    [2011-12-27:23:57:47] Finished eula display
    [2011-12-27:23:57:47] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-27:23:57:47] Runtime Installer end with exit code 0
    [2011-12-27:23:57:47] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-27:23:58:27] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-27:23:58:28] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-27:23:58:28] Commandline is: -eula
    [2011-12-27:23:58:28] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-27:23:58:28] Starting eula display
    [2011-12-27:23:58:36] Finished eula display
    [2011-12-27:23:58:36] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-27:23:58:36] Runtime Installer end with exit code 0
    [2011-12-27:23:58:36] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:00:04:40] Launching subprocess with commandline c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:00:04:40] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:04:40] Commandline is: -eula
    [2011-12-28:00:04:40] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:04:41] Starting eula display
    [2011-12-28:00:04:43] Finished eula display
    [2011-12-28:00:04:43] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:00:04:43] Runtime Installer end with exit code 0
    [2011-12-28:00:04:43] Subprocess c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:00:10:17] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:10:17] Commandline is: -arp:uninstall
    [2011-12-28:00:10:17] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:10:21] Relaunching with elevation
    [2011-12-28:00:10:21] Launching subprocess with commandline c:\program files (x86)\common files\adobe air\versions\1.0\resources\adobe air updater.exe -eu
    [2011-12-28:00:10:22] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:10:22] Commandline is: -stdio \\.\pipe\AIR_5116_0 -eu
    [2011-12-28:00:10:22] Installed runtime (3.1.0.4880) located at c:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:10:22] Starting runtime uninstall. Uninstalling runtime version 3.1.0.4880
    [2011-12-28:00:10:22] Uninstalling product with GUID {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-28:00:10:27] Runtime Installer end with exit code 0
    [2011-12-28:00:10:28] Elevated install completed
    [2011-12-28:00:10:28] Runtime Installer end with exit code 0
    [2011-12-28:00:11:24] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:11:24] Commandline is: -playerVersion=11,1,102,55 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=false -- -x1 http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2011-12-28:00:11:24] No installed runtime detected
    [2011-12-28:00:11:24] Invoking Application Installer for combined install
    [2011-12-28:00:11:24] Launching subprocess with commandline C:\Users\Owner\AppData\Local\Temp\AIR5495.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Owner\AppData\Local\Temp\AIR5495.tmp -playerVersion=11,1,102,55 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2011-12-28:00:11:24] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:11:24] Commandline is: -runtime C:\Users\Owner\AppData\Local\Temp\AIR5495.tmp -playerVersion=11,1,102,55 -sandboxType=remote -securityDomain=airdownload.adobe.com -https=false -fromUserEvent=true -- -withRuntime -url http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2011-12-28:00:11:24] No installed runtime detected
    [2011-12-28:00:11:25] Unpackaging http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air to C:\Users\Owner\AppData\Local\Temp\fla68C1.tmp
    [2011-12-28:00:11:38] Application signature verified
    [2011-12-28:00:11:38] Unpackaging/validation complete
    [2011-12-28:00:11:58] Converting unpackaged application to a native installation package in C:\Users\Owner\AppData\Local\Temp\flaEA40.tmp
    [2011-12-28:00:11:59] Native installation package creation succeeded
    [2011-12-28:00:11:59] Launching subprocess with commandline C:\Users\Owner\AppData\Local\Temp\AIR5495.tmp\Adobe AIR\Versions\1.0\Adobe AIR Application Installer -runtime C:\Users\Owner\AppData\Local\Temp\AIR5495.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)" -desktopShortcut -programMenu http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2011-12-28:00:11:59] Relaunching with elevation
    [2011-12-28:00:12:01] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:12:01] Commandline is: -stdio \\.\pipe\AIR_4972_0 -runtime C:\Users\Owner\AppData\Local\Temp\AIR5495.tmp -silent -logToStdout -withRuntime -url -location "C:\Program Files (x86)" -desktopShortcut -programMenu http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2011-12-28:00:12:01] No installed runtime detected
    [2011-12-28:00:12:02] Unpackaging http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air to C:\Users\Owner\AppData\Local\Temp\flaF9E8.tmp
    [2011-12-28:00:12:03] Application signature verified
    [2011-12-28:00:12:03] Unpackaging/validation complete
    [2011-12-28:00:12:03] Converting unpackaged application to a native installation package in C:\Users\Owner\AppData\Local\Temp\flaFDDF.tmp
    [2011-12-28:00:12:04] Native installation package creation succeeded
    [2011-12-28:00:12:04] Starting silent combined runtime and app install.
    Installing runtime version 3.1.0.4880.
    Installing app com.pandora.desktop.FB9956FD96E03239939108614098AD95535EE674.1 version 2.0.5 to C:\Program Files (x86) using the source file at http://www.pandora.com/radio/static/desktop_app/pandora_2_0_5.air
    [2011-12-28:00:12:04] Installing msi at C:\Users\Owner\AppData\Local\Temp\AIR5495.tmp\setup.msi with guid {FE23D063-934D-4829-A0D8-00634CE79B4A}
    [2011-12-28:00:12:06] Installing msi at C:\Users\Owner\AppData\Local\Temp\flaFDDF.tmp\setup.msi with guid {D51FD609-2385-695F-3D93-BD2C435A5EA2}
    [2011-12-28:00:12:09] Application Installer end with exit code 0
    [2011-12-28:00:12:09] Elevated install completed
    [2011-12-28:00:12:09] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:00:12:10] Launching subprocess with commandline C:\Program Files (x86)\Pandora\Pandora.exe
    [2011-12-28:00:12:10] Application Installer end with exit code 0
    [2011-12-28:00:12:10] Subprocess app installer succeeded
    [2011-12-28:00:12:10] Runtime Installer end with exit code 0
    [2011-12-28:00:12:11] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:00:12:11] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:12:11] Commandline is: -eula
    [2011-12-28:00:12:11] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:12:12] Starting eula display
    [2011-12-28:00:12:17] Finished eula display
    [2011-12-28:00:12:17] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:00:12:17] Runtime Installer end with exit code 0
    [2011-12-28:00:12:17] Subprocess C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:00:13:56] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:00:13:56] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:13:56] Commandline is: -eula
    [2011-12-28:00:13:56] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:13:57] Starting eula display
    [2011-12-28:00:14:00] Finished eula display
    [2011-12-28:00:14:00] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:00:14:00] Runtime Installer end with exit code 0
    [2011-12-28:00:14:00] Subprocess C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:00:14:16] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:00:14:16] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:14:16] Commandline is: -eula
    [2011-12-28:00:14:16] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:14:17] Starting eula display
    [2011-12-28:00:14:20] Finished eula display
    [2011-12-28:00:14:20] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:00:14:20] Runtime Installer end with exit code 0
    [2011-12-28:00:14:20] Subprocess C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:00:14:57] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:00:14:57] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:14:57] Commandline is: -eula
    [2011-12-28:00:14:57] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:14:58] Starting eula display
    [2011-12-28:00:15:01] Finished eula display
    [2011-12-28:00:15:01] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:00:15:01] Runtime Installer end with exit code 0
    [2011-12-28:00:15:01] Subprocess C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:00:25:09] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:25:09] Commandline is:
    [2011-12-28:00:25:09] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:25:18] Cancel request received
    [2011-12-28:00:25:18] Application Installer end with exit code 6
    [2011-12-28:00:25:48] Application Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:00:25:48] Commandline is:
    [2011-12-28:00:25:48] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:00:25:54] Cancel request received
    [2011-12-28:00:25:54] Application Installer end with exit code 6
    [2011-12-28:02:35:29] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:02:35:29] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:02:35:29] Commandline is: -eula
    [2011-12-28:02:35:29] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:02:35:33] Starting eula display
    [2011-12-28:02:35:54] Finished eula display
    [2011-12-28:02:35:54] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:02:35:54] Runtime Installer end with exit code 0
    [2011-12-28:02:35:54] Subprocess C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:02:37:00] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:02:37:00] Runtime Installer begin with version 3.1.0.4880 on Windows Vista x86
    [2011-12-28:02:37:00] Commandline is: -eula
    [2011-12-28:02:37:00] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:02:37:00] Starting eula display
    [2011-12-28:02:37:03] Finished eula display
    [2011-12-28:02:37:03] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:02:37:03] Runtime Installer end with exit code 0
    [2011-12-28:02:37:03] Subprocess C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)
    [2011-12-28:02:38:59] Launching subprocess with commandline C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -eula
    [2011-12-28:02:38:59] Runtime Installer begin with version 3.1.0.4880 on Windows XP x86
    [2011-12-28:02:38:59] Commandline is: -eula
    [2011-12-28:02:38:59] Installed runtime (3.1.0.4880) located at C:\Program Files (x86)\Common Files\Adobe AIR
    [2011-12-28:02:39:01] Starting eula display
    [2011-12-28:02:39:04] Finished eula display
    [2011-12-28:02:39:04] Could not create a file at C:\Users\Owner\AppData\Roaming\Adobe\AIR\eulaAccepted, ignoring
    [2011-12-28:02:39:04] Runtime Installer end with exit code 0
    [2011-12-28:02:39:04] Subprocess C:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater failed (1)

    I just fixed it myself. I uninstalled the updated AIR (3.0) and the Pandora app.  I then installed the earlier version of AIR (2.7) with the Pandora app and it ran fine. SO, I then installed the AIR settings manager, which allows you to disable automatic updates. 
    See this page and follow the directions.
    kb2.adobe.com/cps/853/cpsid_85304.html

  • Cannot login to Creative Cloud, "Unable to reach Adobe servers," error message, but other people in the office can login.

    All Adobe apps have the "Sync Settings" button grayed out, and in the Creative Cloud app the prefs are grayed out. I think all these problems started with the last Yosemite 10.10.2 update. That was the same time my palates stopped working on dual monitors with any Adobe app. Help? Please? I already tried deleting the OOBE folder.

    Yosemite sometimes has problems, often related to "default" permissions needing to be changed
    -one person's solution https://forums.adobe.com/thread/1689788
    -http://blogs.adobe.com/creativecloud/creative-cloud-and-yosemite/
    -https://helpx.adobe.com/x-productkb/global/mac-os-yosemite-compatability.html

  • The Object cannot not be processed due to a transport problem

    We are trying to delete a standard web template 0ADHOC_TABLE (modified by our coworker before and transported) and reinstall a new one or totally standard one, but when clicking the "X" icon to delete this web template, get the following error:
    "The Object cannot not be processed due to a transport problem"
    What could be the reason?
    Thanks

    Hi Kevin,
    This message coms up because as you mention, the template has been transported. Since it is in the target system, if you delete form the dev system, the system needs to ensure that it is also removed from the system it has been transported too.
    You can check the dev package assigned to the template, assign a new request against this dev class (RSA1 > Transport Connection > Bex Truck icon). Log out and log back into WAD and try to delete it, and then send this transport. Or you can simply reinstall it as Roberto suggests.
    Hope this helps...

  • Certificate issues Active Directory Certificate Services could not process request 3699 due to an error: The revocation function was unable to check revocation because the revocation server was offline. 0x80092013

    Hi,
    We have some problems with our Root CA. I can se a lot of failed requests. with the event id 22: in the logs. The description is: Active Directory Certificate Services could not process request 3686 due to an error: The revocation function was unable to
    check revocation because the revocation server was offline. 0x80092013 (-2146885613).  The request was for CN=xxxxx.ourdomain.com.  Additional information: Error Verifying Request Signature or Signing Certificate
    A couple of months ago we decomissioned one of our old 2003 DCs and it looks like this server might have had something to do with the CA structure but I am not sure whether this was in use or not since I could find the role but I wasn't able to see any existing
    configuration.
    Let's say that this server was previously responsible for the certificates and was the server that should have revoked the old certs, what can I do know to try and correct the problem?
    Thank you for your help
    //Cris

    hello,
    let me recap first:
    you see these errors on a ROOT CA. so it seems like the ROOT CA is also operating as an ISSUING CA. Some clients try to issue a new certificate from the ROOT CA and this fails with your error mentioned.
    do you say that you had a PREVIOUS CA which you decomissioned, and you now have a brand NEW CA, that was built as a clean install? When you decommissioned the PREVIOUS CA, that was your design decision to don't bother with the current certificates that it
    issued and which are still valid, right?
    The error says, that the REQUEST signature cannot be validated. REQUESTs are signed either by itself (self-signed) or if they are renewal requests, they would be signed with the previous certificate which the client tries to renew. The self-signed REQUESTs
    do not contain CRL paths at all.
    So this implies to me as these requests that are failing are renewal requests. Renewal requests would contain CRL paths of the previous certificates that are nearing their expiration.
    As there are many such REQUEST and failures, it probably means that the clients use AUTOENROLLMENT, which tries to renew their current, but shortly expiring, certificates during (by default) their last 6 weeks of lifetime.
    As you decommissioned your PREVIOUS CA, it does not issue CRL anymore and the current certificates cannot be checked for validity.
    Thus, if the renewal tries to renew them by using the NEW CA, your NEW CA cannot validate CRL of the PREVIOUS CA and will not issue new certificates.
    But it would not issue new certificates anyway even if it was able to verify the PREVIOUS CA's CRL, as it seems your NEW CA is completely brand new, without being restored from the PREVIOUS CA's database. Right?
    So simply don't bother :-) As long as it was your design to decommission the PREVIOUS CA without bothering with its already issued certificates.
    The current certificates which autoenrollment tries to renew cannot be checked for validity. They will also slowly expire over the next 6 weeks or so. After that, autoenrollment will ask your NEW CA to issue a brand new certificate without trying to renew.
    Just a clean self-signed REQUEST.
    That will succeed.
    You can also verify this by trying to issue a certificate on an affected machine manually from Certificates MMC.
    ondrej.

Maybe you are looking for

  • Creative Cloud Leaks Thread Handles

    I have Creative Cloud version 1.8.0.447 running on windows 7, and I notice that it leaks a Thread Handle, about 4 times, or so, per minute.  Since I leave my computer on most of the time, after a few days, the number of leaked Thread Handles is up in

  • EXPORT to text or CSV format from a form

    Dear all, Could you please help me to export the data from my form to a text file or to a csv format. I am very new to forms. i need to export the data from the oracle form to a text file or CSV file format. I had created form named as form1. In form

  • "Edit in Adobe Photoshop CS6" no longer works in Lightroom 5.3

    I have LR5.3 and PS CS6. Since I've updated camera Raw (8.3 it think), my files won't open when I want to edit them in Photoshop from the "Edit in-" feature of Lightroom. I don't see the window saying "Open in PS with Lightroom edits" that would give

  • Random selections of mp4 videos won't sync, convert for iPhone option in iTunes comes up with unknown error 2002, help please!

    I've been having massive issues copying mp4 video files onto my iPhone 4 from my windows 7 (64 bit) pc. I converted a large number of avi files into mp4 using aiseesoft movie converter and most of them work just fine. However about a quarter of the f

  • PeopleSoft XMLP and Query problem

    Hello, I have defined a query to fetch multiple rows for an XMLP report, I also have define Burst field on XMLP report, I have written App. Engine to run this XMLP report. When I run app. eng. program I only get 1 row, instead of multiple rows. When