Able to build, but failed to run

Hi All,  I am developing an iPhone app. I need to run MyApp.xcodeproj(along with fonemonkey files) from the   command line. I am able to build successfully by using the following command but I am not able to   launch iPhone simulator.  xcodebuild -project

there is a developer forum on the apple support communities

Similar Messages

  • Report data shows up in Builder but not when run on web

    I have a report that pulls up the data just fine when run in Builder but when I run it on the web, it shows up, no errors, with no data...just blank.
    I am using a global temp table to do this.
    Any ideas on what might cause this to happen?
    Thank you for ANY suggestions!!
    --KWien                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    Are you sure you are using all the parameters (that work in Builder) in the URL?
    Gicu

  • Unit test runs perfectly fine with NUnit but fails when run from TestExplorer

    Hello all,
    I have a TestProject, Harmony.Tests. In there, I have a method AddApplicationEvent()
    which calls another method Send(InvokeRequestMessage requestMessage) which calls a webservice (OperationHandlerBrokerWebService). 
    The code snippet looks like this. This is not the complete code but a part where we are calling the web service. It fails on the underlined Italic line of code.
    OperationHandlerBrokerWebService brokerService = new OperationHandlerBrokerWebService();
    brokerService.UseDefaultCredentials = true;
    brokerService.Url = address;
    brokerService.Timeout = timeoutInMilliseconds;
    byte[] serializedResponseMessage = brokerService.InvokeOperationHandler(serializedRequestMessage);
    The same test works and passed fine when I ran it with NUnit, but failed with following exception when I tried to run it from TestExplorer. 
    Test Name: AddApplicationEvent
    Test FullName: N4S.Harmony.Tests.CaseManagement.HarmonyFacadeTests.AddApplicationEvent
    Test Source: d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\CaseManagement\HarmonyFacadeTests.cs : line 665
    Test Outcome: Failed
    Test Duration: 0:00:00.296
    Result Message:
    SetUp : Message returned System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.ArgumentException: Invalid token for impersonation - it cannot be duplicated.
    at System.Security.Principal.WindowsIdentity.CreateFromToken(IntPtr userToken)
    at System.Security.Principal.WindowsIdentity..ctor(SerializationInfo info)
    at System.Security.Principal.WindowsIdentity..ctor(SerializationInfo info, StreamingContext context)
    --- End of inner exception stack trace ---
    at System.RuntimeMethodHandle._SerializationInvoke(Object target, SignatureStruct& declaringTypeSig, SerializationInfo info, StreamingContext context)
    at System.Reflection.RuntimeConstructorInfo.SerializationInvoke(Object target, SerializationInfo info, StreamingContext context)
    at System.Runtime.Serialization.ObjectManager.CompleteISerializableObject(Object obj, SerializationInfo info, StreamingContext context)
    at System.Runtime.Serialization.ObjectManager.FixupSpecialObject(ObjectHolder holder)
    at System.Runtime.Serialization.ObjectManager.DoFixups()
    at System.Runtime.Serialization.Formatters.Binary.ObjectReader.Deserialize(HeaderHandler handler, __BinaryParser serParser, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)
    at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(Stream serializationStream, HeaderHandler handler, Boolean fCheck, Boolean isCrossAppDomain, IMethodCallMessage methodCallMessage)
    at System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Deserialize(Stream serializationStream)
    at N4S.Forms.OperationHandlerBroker.AMessage.DeserializeMessage(Byte[] serializedMessage)
    at N4S.Forms.OperationHandlerBroker.WebServiceServer.BrokerService.InvokeOperationHandler(Byte[] serializedInvokeRequestMessage)
    --- End of inner exception stack trace ---
    expected: <0>
    but was: <1>
    Result StackTrace:
    at N4S.Harmony.Tests.TestHelper.InvokeOperation(OperationHandler handler, OperationHandlerInput input, Boolean expectedToWork) in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 136
    at N4S.Harmony.Tests.TestHelper.LoginAsUser(String username, String password) in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 394
    at N4S.Harmony.Tests.TestHelper.Login(TestUserName requestedUser) in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 377
    at N4S.Harmony.Tests.TestHelper.LoginAsAdvisor() in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\TestHelper.cs:line 230
    at N4S.Harmony.Tests.CaseManagement.HarmonyFacadeTests.Login() in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\CaseManagement\HarmonyFacadeTests.cs:line 76
    at N4S.Harmony.Tests.CaseManagement.HarmonyFacadeTests.SetupTest() in d:\TFS\TMW\Dev\TMWOnline\Harmony\N4S.Harmony.Tests\CaseManagement\HarmonyFacadeTests.cs:line 67
    I am not sure what causing the issue. I checked the Credentials, Windows Identity during both the test run and there is no difference. Please advise !!
    Thanks,
    Deepak

    Hi Tina,
    Thanks for your reply. 
    I do have NUnit adapter installed. I even noticed that the test runs fine with NUnit GUI and also if I run it through Resharper Test Explorer window. 
    As you can see in the image above the same test is passed when I ran it from Resharper Unit Test Explorer window but fails when I ran it from Test Explorer window. I also captured the information on fiddler. 
    There was a significant difference in the Header Content length. Also under the User-Agent property the protocol versions are different. 
    Not sure why VSTest ExecutionEngine is picking a different version.
    The UnitTest in question is calling a webservice method which in turn calls a method from another referenced project. 
    Web Service class
    using System;
    using System.Web.Services;
    using N4S.Forms.OperationHandlerBroker.Server;
    using NLog;
    namespace N4S.Forms.OperationHandlerBroker.WebServiceServer
    /// <summary>
    /// The operaton-handler broker service.
    /// </summary>
    [WebService(Description = "The N4S Forms Operation-Handler Broker Web-Service.", Name = "OperationHandlerBrokerWebService",
    Namespace = "N4S.Forms.OperationHandlerBroker.WebServiceServer")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    public class BrokerService : WebService
    { /// <summary>
    /// Calls <see cref="HandleRequest"/>. Updates performance-counters.
    /// </summary>
    /// <param name="serializedInvokeRequestMessage">the binary-serialized <see cref="InvokeRequestMessage"/></param>
    /// <returns>the binary-serialized response message</returns>
    [WebMethod(BufferResponse = true, CacheDuration = 0, Description = "Invokes the requested operation-handler and returns a binary-serialized response-message.", EnableSession = false)]
    public byte[] InvokeOperationHandler(byte[] serializedInvokeRequestMessage)
    logger.Trace(Strings.TraceMethodEntered);
    PerformanceMonitor.RecordRequestStarted();
    InvokeRequestMessage requestMessage = (InvokeRequestMessage) AMessage.DeserializeMessage(serializedInvokeRequestMessage);
    InvokeResponseMessage responseMessage;
    try
    responseMessage = HandleRequest(requestMessage);
    PerformanceMonitor.RecordSuccessfulRequest();
    catch (Exception)
    PerformanceMonitor.RecordFailedRequest();
    throw;
    finally
    PerformanceMonitor.RecordRequestEnded();
    logger.Trace(Strings.TraceMethodExiting);
    return AMessage.SerializeMessage(responseMessage);
    UnitTest snippet
    OperationHandlerBrokerWebService brokerService = new OperationHandlerBrokerWebService();
    brokerService.UseDefaultCredentials = true;
    byte[] serializedResponseMessage = brokerService.InvokeOperationHandler(serializedRequestMessage);
    Please advise.
    Thanks,
    Deepak

  • Itunes 9 Upgrade. Installs OK, but fails to run with 'Unknown Error(-50)'

    Been running Itunes versions 7/8 very happily. Upgraded to 9.0 today. After installing, which reported no problems, Itunes failed to run, reporting a missing reference in CoreFoundation.dll. I tried a re-install, but with no improvement. I the un-installed Itunes, re-imported the Itunes 9 setup file (88Mbytes), re-installed the product, and still it does not run, reporting a -50 Unknown Error.
    Not exactly impressive! I'd be grateful for any ideas, including how to revert to version 8. Thanks, ju

    Thanks for the pointer to the KB article. Error 1 is missing from the list provided by iTunes (more information), but I was afraid it means hardware. Will try on another computer, but I'm afraid the phone is sick.
    Thanks,
    Manfred

  • SSIS Package compiled successful, in SQL Server Integration Service package executed sucessful, But fail to run in MS SQL Job Scheduler

    Hi Everyone,
    I having a problem to transfer data from MS SQL 2005 to IBMAS400. Previously my SSIS was running perfectly but there is some changes I need to be done in order for the system to work well. Considers my changes are minimal & just for upgrades (but I did
    include DELETE statements to truncate AS400 table before I insert fresh data from MS SQL table to the same AS400 table), so I compile my SSIS package & it run successfully & I passed it into MS SQL Integrated Service as 1 of the packages & manually
    executed the package & the result is the same, that mean it was successful again but when I try to run it in a MS SQL Job Scheduler, the job failed with these message shown below as extracted from the job View history. 
    Date today
    Log Job History (MSSQLToAS400)
    Step ID 1
    Server MSSQLServer
    Job Name MSSQLToAS400
    Step Name pumptoAS400
    Duration 00:00:36
    Sql Severity 0
    Sql Message ID 0
    Operator Emailed
    Operator Net sent
    Operator Paged
    Retries Attempted 0
    Message
    Executed as user: MSSQLServer\SYSTEM. ... 9.00.4035.00 for 32-bit  Copyright (C) Microsoft Corp 1984-2005. All rights reserved.    
    Started:  today time  
    Error: on today time     
    Code: 0xC0202009     Source: SSISMSSQLToAS400 Connection manager "SourceToDestinationOLEDB"     
    Description: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. 
    Error code: 0x80004005.  An OLE DB record is available.  
    Source: "IBMDA400 Session"  
    Hresult: 0x80004005  
    Description: "CWBSY0002 - Password for user AS400ADMIN on system AS400SYSTEM is not correct ".  End Error  
    Error: today     
    Code: 0xC020801C     
    Source: Data Flow Task OLE DB Destination [5160]     
    Description: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "DestinationClearData" failed with error code 0xC0202009.  There may be error messages posted before
    this with more information on why the AcquireConnection method ca...  The package execution fa...  The step failed.
    So I hope somebody can shed some hints or tips for me to overcome time problem of mine. Thanks for your help in advance. As I had scoured thoroughout MSDN forums & found none solution for my problem yet. 
    PS: In the SQL Integrated Services when I deployed the package I set the security of the packages to Rely on server... 
    Hope this will help.

    Hi Ironmaidenroxz,
    From the message “Executed as user: MSSQLServer\SYSTEM”, we can see that the SQL Server Agent job ran under the Local System account. However, a Local System account doesn’t have the network rights natively, therefore, the job failed to communicate with
    the remote IBMAS400 server.
    To address this issue, you need to create a proxy account for SQL Server Agent to run the job. When creating the credentials for the proxy account, you can use the Windows domain account under which you executed the package manually.
    References:
    How to: Create a Credential
    How to: Create a Proxy
    Regards,
    Mike Yin
    TechNet Community Support

  • Desname parameter works fine in Report builder but fails in Forms builder

    Hi,
    I need some help with my current task. Here is my problem.
    I am working on Oracle 10g. My reports and Forms builder version is 10.1.2.3.0.
    My objective is to use Forms builder to call a report which will direct the output directly to the printer without preview.
    First , in report builder , I use the Parameter Form builder and set Report parameter DESTYPE = PRINTER and the DESNAME automatically changes to PCL6 ( which is the network printer name I am using).
    When I run the report , the output is directed to the printer and it works just fine.
    But in Forms builder , when I call the same report, set the DESTYPE as Printer and DESNAME as 'PCL6' , it gives an error Invalid printer name 'PCL6' specified by parameter DESNAME.
    I tried searching in this forum, it says the error is due to an invalid printer name specified in the DESNAME. But if my printer name is invalid, I wonder how the same printer name works well in Report builder?
    My coding in Forms as below :
    SET_REPORT_OBJECT_PROPERTY( repid, REPORT_DESTYPE,PRINTER);
    SET_REPORT_OBJECT_PROPERTY( repid, REPORT_DESNAME,'PCL6');
    Appreciate if anyone can help. Thanks
    Regards
    Shiva

    Hi Puppethead,
    I have tried with your suggestions.
    the following condition -- did not work
    ( (mgr_name = :manager name)
    OR (mgr_name LIKE DECODE(:manager name, 'ALL', '%', NULL)))
    but for the other condition ---
    ( (mgr_name = :manager name)
    OR (mgr_name LIKE DECODE(nvl(:manager name, 'ALL'), 'ALL', '%', NULL)))
    is wrong because, :manager name cud be null, when it is null, it takes 'ALL' i.e. '%' which shud not be the case.
    if the user enters null, it has to display records with null only but with the above condition it takes '%'
    The main issue which i dont understand is, the report works fine for the first time. for the second time, the report takes null values . why is it taking null values for the second time.
    Thanks

  • Ccmsetup.exe Client install Pushes to end users PC's but fails to run installer

    We recently aquired a new company and have several PC's there on-site that we have been working with to get onboard our SCCM system. A push requested to install the client was initiated and after a while a windows\ccmsetup folder was created along with all
    the install files. However the client is not installed. We have around 500 computers working in our SCCM environment across 10 different sites across the US. This is the first time we have had issues with the client install push.
    I have also tried to install the client manually and it yields no results. in the command prompt it after running that command it just goes to the next line and the configuration manager never shows up.
    The command I am running for a manual install
    c:\Users\XXXXXX\Desktop\Client> CCMSetup.exe /MP:Server.domain.local SMSITECODE=123 FSP=Server.domain.local
    The event viewer has very little or nothing to say about this either which is weird. So far i have tested the push method and the manually install on three different PC's at that site and all experience the same thing.
    I have included the log from the client PC. I don't know how to read it that well but all seems fine until the last few lines and then i start getting errors and error codes
    which i habe made bold.
    Any help would be super awesome.
    <![LOG[==========[ ccmsetup started in process 3396 ]==========]LOG]!><time="14:20:14.381+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="4160" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="14:20:14.381+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="4160" file="util.cpp:1837">
    <![LOG[Launch from folder C:\Windows\ccmsetup\]LOG]!><time="14:20:14.381+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="4160" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="14:20:14.381+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="4160" file="ccmsetup.cpp:727">
    <![LOG[In ServiceMain]LOG]!><time="14:20:14.381+300" date="04-13-2015" component="ccmsetup" context="" type="0" thread="3360" file="ccmsetup.cpp:3365">
    <![LOG[Running on 'Microsoft Windows 7 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1"
    thread="3360" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /ForceInstall /config:MobileClient.tcf]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context=""
    type="1" thread="3360" file="ccmsetup.cpp:3590">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context=""
    type="1" thread="3360" file="ccmsetup.cpp:3775">
    <![LOG[Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /ForceInstall /config:MobileClient.tcf]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1"
    thread="3360" file="ccmsetup.cpp:3776">
    <![LOG[SslState value: 224]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="0" thread="3360" file="ccmsetup.cpp:4425">
    <![LOG[CCMHTTPPORT:    80]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:8617">
    <![LOG[CCMHTTPSPORT:    443]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:8632">
    <![LOG[CCMHTTPSSTATE:    224]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:8650">
    <![LOG[CCMHTTPSCERTNAME:    ]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:8668">
    <![LOG[FSP:    ]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:8720">
    <![LOG[CCMFIRSTCERT:    1]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:8778">
    <![LOG[Config file:      C:\Windows\ccmsetup\MobileClientUnicode.tcf]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360"
    file="ccmsetup.cpp:4539">
    <![LOG[Retry time:       10 minute(s)]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:4540">
    <![LOG[MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:4541">
    <![LOG[MSI properties:    INSTALL="ALL" SMSSITECODE="HDT" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="14:20:14.428+300" date="04-13-2015"
    component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:4542">
    <![LOG[Source List:]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:4550">
    <![LOG[                  \\SOL-SCCM.hunter.local\SMSClient]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1"
    thread="3360" file="ccmsetup.cpp:4557">
    <![LOG[                  \\SOL-SCCM.HUNTER.LOCAL\SMSClient]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1"
    thread="3360" file="ccmsetup.cpp:4566">
    <![LOG[MPs:]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:4569">
    <![LOG[                  SOL-SCCM.hunter.local]LOG]!><time="14:20:14.428+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360"
    file="ccmsetup.cpp:4584">
    <![LOG[No version of the client is currently detected.]LOG]!><time="14:20:14.444+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:2748">
    <![LOG[Folder 'Microsoft\Configuration Manager' not found. Task does not exist.]LOG]!><time="14:20:14.444+300" date="04-13-2015" component="ccmsetup" context="" type="0" thread="3360"
    file="wintask.cpp:622">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="14:20:14.444+300" date="04-13-2015" component="ccmsetup" context="" type="0" thread="3360" file="ccmsetup.cpp:9281">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.]LOG]!><time="14:20:14.444+300" date="04-13-2015" component="ccmsetup" context="" type="1"
    thread="3360" file="ccmsetup.cpp:9763">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="14:20:14.444+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="3360" file="ccmsetup.cpp:1995">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='328' will not be sent.]LOG]!><time="14:20:14.444+300" date="04-13-2015" component="ccmsetup" context="" type="1"
    thread="3360" file="ccmsetup.cpp:9763">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="14:20:14.444+300" date="04-13-2015" component="ccmsetup" context="" type="1" thread="4160" file="ccmsetup.cpp:10879">
    <![LOG[==========[ ccmsetup started in process 7524 ]==========]LOG]!><time="09:43:33.168+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="09:43:33.168+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="util.cpp:1837">
    <![LOG[Updated security on object C:\Windows\ccmsetup\cache\.]LOG]!><time="09:43:33.168+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9281">
    <![LOG[Launch from folder c:\Users\admin.tarbox\Desktop\Client\]LOG]!><time="09:43:33.168+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="09:43:33.168+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:727">
    <![LOG[Running on 'Microsoft Windows 7 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="1"
    thread="1988" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: CCMSetup.exe  /MP:SOL-SCCM.Huner.local SMSSITECODE=HDT FSP=SOL-SCCM.hunter.local]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="1"
    thread="1988" file="ccmsetup.cpp:3590">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context=""
    type="1" thread="1988" file="ccmsetup.cpp:3775">
    <![LOG[Command line: CCMSetup.exe  /MP:SOL-SCCM.Huner.local SMSSITECODE=HDT FSP=SOL-SCCM.hunter.local]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="1"
    thread="1988" file="ccmsetup.cpp:3776">
    <![LOG[SslState value: 224]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:4425">
    <![LOG[No version of the client is currently detected.]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:2748">
    <![LOG[Folder 'Microsoft\Configuration Manager' not found. Task does not exist.]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988"
    file="wintask.cpp:622">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9281">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="1"
    thread="1988" file="ccmsetup.cpp:9763">
    <![LOG[ccmsetup service is stopped.]LOG]!><time="09:43:33.231+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:3301">
    <![LOG[Successfully deleted the ccmsetup service]LOG]!><time="09:43:38.238+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:3345">
    <![LOG[Successfully deleted existing ccmsetup.exe]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:2917">
    <![LOG[Downloading file c:\Users\admin.tarbox\Desktop\Client\ccmsetup.exe]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:5685">
    <![LOG[Downloading c:\Users\admin.tarbox\Desktop\Client\ccmsetup.exe to C:\Windows\ccmsetup\ccmsetup.exe]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="1"
    thread="1988" file="ccmsetup.cpp:5769">
    <![LOG[File download 16% complete (262144 of 1614520 bytes).]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9185">
    <![LOG[File download 32% complete (524288 of 1614520 bytes).]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9185">
    <![LOG[File download 48% complete (786432 of 1614520 bytes).]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9185">
    <![LOG[File download 64% complete (1048576 of 1614520 bytes).]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9185">
    <![LOG[File download 81% complete (1310720 of 1614520 bytes).]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9185">
    <![LOG[File download 97% complete (1572864 of 1614520 bytes).]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9185">
    <![LOG[File download 100% complete (1614520 of 1614520 bytes).]LOG]!><time="09:43:39.252+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988" file="ccmsetup.cpp:9185">
    <![LOG[Download complete.]LOG]!><time="09:43:39.283+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:5867">
    <![LOG[Successfully created the ccmsetup service]LOG]!><time="09:43:39.299+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:3260">
    <![LOG[==========[ ccmsetup started in process 4604 ]==========]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6744" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6744" file="util.cpp:1837">
    <![LOG[Updated security on object C:\Windows\ccmsetup\cache\.]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="6744" file="ccmsetup.cpp:9281">
    <![LOG[Launch from folder C:\Windows\ccmsetup\]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6744" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6744" file="ccmsetup.cpp:727">
    <![LOG[Successfully started the ccmsetup service]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:3271">
    <![LOG[In ServiceMain]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="6156" file="ccmsetup.cpp:3365">
    <![LOG[Deleted file C:\Windows\ccmsetup\ccmsetup.exe.download]LOG]!><time="09:43:39.346+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:9493">
    <![LOG[Folder 'Microsoft\Configuration Manager' not found. Task does not exist.]LOG]!><time="09:43:39.361+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="1988"
    file="wintask.cpp:622">
    <![LOG[CcmSetup is exiting with return code 0]LOG]!><time="09:43:39.361+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="1988" file="ccmsetup.cpp:10875">
    <![LOG[Running on 'Microsoft Windows 7 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1"
    thread="6156" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/MP:SOL-SCCM.Huner.local" "SMSSITECODE=HDT" "FSP=SOL-SCCM.hunter.local"]LOG]!><time="09:43:39.393+300" date="04-14-2015"
    component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:3590">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context=""
    type="1" thread="6156" file="ccmsetup.cpp:3775">
    <![LOG[Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/MP:SOL-SCCM.Huner.local" "SMSSITECODE=HDT" "FSP=SOL-SCCM.hunter.local"]LOG]!><time="09:43:39.393+300" date="04-14-2015"
    component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:3776">
    <![LOG[SslState value: 224]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="6156" file="ccmsetup.cpp:4425">
    <![LOG[CCMHTTPPORT:    80]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:8617">
    <![LOG[CCMHTTPSPORT:    443]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:8632">
    <![LOG[CCMHTTPSSTATE:    224]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:8650">
    <![LOG[CCMHTTPSCERTNAME:    ]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:8668">
    <![LOG[FSP:    SOL-SCCM.hunter.local]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:8720">
    <![LOG[CCMFIRSTCERT:    1]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:8778">
    <![LOG[Config file:      ]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:4539">
    <![LOG[Retry time:       10 minute(s)]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:4540">
    <![LOG[MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:4541">
    <![LOG[MSI properties:    SMSSITECODE="HDT" FSP="SOL-SCCM.hunter.local" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="09:43:39.393+300"
    date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:4542">
    <![LOG[Source List:]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:4550">
    <![LOG[MPs:]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:4569">
    <![LOG[                  SOL-SCCM.Huner.local]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156"
    file="ccmsetup.cpp:4584">
    <![LOG[No version of the client is currently detected.]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:2748">
    <![LOG[Folder 'Microsoft\Configuration Manager' not found. Task does not exist.]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="6156"
    file="wintask.cpp:622">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="6156" file="ccmsetup.cpp:9281">
    <![LOG[Sending Fallback Status Point message to 'SOL-SCCM.hunter.local', STATEID='100'.]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156"
    file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x8004100e]LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="2" thread="6156"
    file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment ']LOG]!><time="09:43:39.393+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="6156" file="ccmsetup.cpp:9887">
    <![LOG[Request failed: 404 Not Found
    ]LOG]!><time="09:43:39.673+300" date="04-14-2015" component="FSPStateMessage" context="" type="3" thread="6156" file="fsputillib.cpp:1347">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="09:43:39.689+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156" file="ccmsetup.cpp:1995">
    <![LOG[Sending Fallback Status Point message to 'SOL-SCCM.hunter.local', STATEID='328'.]LOG]!><time="09:43:39.689+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6156"
    file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x8004100e]LOG]!><time="09:43:39.689+300" date="04-14-2015" component="ccmsetup" context="" type="2" thread="6156"
    file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment Error 0x80004005']LOG]!><time="09:43:39.689+300" date="04-14-2015" component="ccmsetup" context="" type="0" thread="6156"
    file="ccmsetup.cpp:9887">
    <![LOG[Request failed: 404 Not Found
    ]LOG]!><time="09:43:39.751+300" date="04-14-2015" component="FSPStateMessage" context="" type="3" thread="6156" file="fsputillib.cpp:1347">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="09:43:39.751+300" date="04-14-2015" component="ccmsetup" context="" type="1" thread="6744" file="ccmsetup.cpp:10879">

    HAHA, yes typo here but not in the command i am running.
    I stated above that when i was running the command it did not appear to be doing anything, I retract that now. This morning i went into the ccmlog file and deleted all the txt in it and ran the command again. I went back into the log to find all sorts of
    stuff. However it does not appear to be installing still just errors towards the end.
    <![LOG[==========[ ccmsetup started in process 9376 ]==========]LOG]!><time="07:33:09.192+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="07:33:09.192+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="util.cpp:1837">
    <![LOG[Updated security on object C:\Windows\ccmsetup\cache\.]LOG]!><time="07:33:09.192+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9281">
    <![LOG[Launch from folder c:\Users\admin.oberg\Desktop\Client\]LOG]!><time="07:33:09.192+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="07:33:09.192+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:727">
    <![LOG[Running on 'Microsoft Windows 7 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="1"
    thread="7164" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: CCMSetup.exe  /MP:SOL-SCCM.hunter.local SMSSitecode=HDT FSP=SOL-SCCM.hunter.local]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="1"
    thread="7164" file="ccmsetup.cpp:3590">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context=""
    type="1" thread="7164" file="ccmsetup.cpp:3775">
    <![LOG[Command line: CCMSetup.exe  /MP:SOL-SCCM.hunter.local SMSSitecode=HDT FSP=SOL-SCCM.hunter.local]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="1"
    thread="7164" file="ccmsetup.cpp:3776">
    <![LOG[SslState value: 224]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:4425">
    <![LOG[No version of the client is currently detected.]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:2748">
    <![LOG[Folder 'Microsoft\Configuration Manager' not found. Task does not exist.]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164"
    file="wintask.cpp:622">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9281">
    <![LOG[A Fallback Status Point has not been specified.  Message with STATEID='100' will not be sent.]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="1"
    thread="7164" file="ccmsetup.cpp:9763">
    <![LOG[ccmsetup service is stopped.]LOG]!><time="07:33:09.270+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:3301">
    <![LOG[Successfully deleted the ccmsetup service]LOG]!><time="07:33:14.277+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:3345">
    <![LOG[Successfully deleted existing ccmsetup.exe]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:2917">
    <![LOG[Downloading file c:\Users\admin.oberg\Desktop\Client\ccmsetup.exe]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:5685">
    <![LOG[Downloading c:\Users\admin.oberg\Desktop\Client\ccmsetup.exe to C:\Windows\ccmsetup\ccmsetup.exe]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="1"
    thread="7164" file="ccmsetup.cpp:5769">
    <![LOG[File download 16% complete (262144 of 1614520 bytes).]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9185">
    <![LOG[File download 32% complete (524288 of 1614520 bytes).]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9185">
    <![LOG[File download 48% complete (786432 of 1614520 bytes).]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9185">
    <![LOG[File download 64% complete (1048576 of 1614520 bytes).]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9185">
    <![LOG[File download 81% complete (1310720 of 1614520 bytes).]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9185">
    <![LOG[File download 97% complete (1572864 of 1614520 bytes).]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9185">
    <![LOG[File download 100% complete (1614520 of 1614520 bytes).]LOG]!><time="07:33:15.291+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164" file="ccmsetup.cpp:9185">
    <![LOG[Download complete.]LOG]!><time="07:33:15.323+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:5867">
    <![LOG[Successfully created the ccmsetup service]LOG]!><time="07:33:15.338+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:3260">
    <![LOG[==========[ ccmsetup started in process 9096 ]==========]LOG]!><time="07:33:15.385+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="5240" file="ccmsetup.cpp:9437">
    <![LOG[Running on platform X64]LOG]!><time="07:33:15.385+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="5240" file="util.cpp:1837">
    <![LOG[Updated security on object C:\Windows\ccmsetup\cache\.]LOG]!><time="07:33:15.385+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="5240" file="ccmsetup.cpp:9281">
    <![LOG[Launch from folder C:\Windows\ccmsetup\]LOG]!><time="07:33:15.385+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="5240" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7958.1000]LOG]!><time="07:33:15.385+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="5240" file="ccmsetup.cpp:727">
    <![LOG[Successfully started the ccmsetup service]LOG]!><time="07:33:15.401+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:3271">
    <![LOG[In ServiceMain]LOG]!><time="07:33:15.401+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="10172" file="ccmsetup.cpp:3365">
    <![LOG[Deleted file C:\Windows\ccmsetup\ccmsetup.exe.download]LOG]!><time="07:33:15.401+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:9493">
    <![LOG[Folder 'Microsoft\Configuration Manager' not found. Task does not exist.]LOG]!><time="07:33:15.401+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="7164"
    file="wintask.cpp:622">
    <![LOG[CcmSetup is exiting with return code 0]LOG]!><time="07:33:15.401+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="7164" file="ccmsetup.cpp:10875">
    <![LOG[Running on 'Microsoft Windows 7 Enterprise ' (6.1.7601). Service Pack (1.0). SuiteMask = 272. Product Type = 18]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1"
    thread="10172" file="util.cpp:1919">
    <![LOG[Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/MP:SOL-SCCM.hunter.local" "SMSSitecode=HDT" "FSP=SOL-SCCM.hunter.local"]LOG]!><time="07:33:15.432+300" date="04-15-2015"
    component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:3590">
    <![LOG[Command line parameters for ccmsetup have been specified.  No registry lookup for command line parameters is required.]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context=""
    type="1" thread="10172" file="ccmsetup.cpp:3775">
    <![LOG[Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice "/MP:SOL-SCCM.hunter.local" "SMSSitecode=HDT" "FSP=SOL-SCCM.hunter.local"]LOG]!><time="07:33:15.432+300" date="04-15-2015"
    component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:3776">
    <![LOG[SslState value: 224]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="10172" file="ccmsetup.cpp:4425">
    <![LOG[CCMHTTPPORT:    80]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:8617">
    <![LOG[CCMHTTPSPORT:    443]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:8632">
    <![LOG[CCMHTTPSSTATE:    224]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:8650">
    <![LOG[CCMHTTPSCERTNAME:    ]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:8668">
    <![LOG[FSP:    SOL-SCCM.hunter.local]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:8720">
    <![LOG[CCMFIRSTCERT:    1]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:8778">
    <![LOG[Config file:      ]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:4539">
    <![LOG[Retry time:       10 minute(s)]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:4540">
    <![LOG[MSI log file:     C:\Windows\ccmsetup\Logs\client.msi.log]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:4541">
    <![LOG[MSI properties:    SMSSITECODE="HDT" FSP="SOL-SCCM.hunter.local" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="07:33:15.432+300"
    date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:4542">
    <![LOG[Source List:]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:4550">
    <![LOG[MPs:]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:4569">
    <![LOG[                  SOL-SCCM.hunter.local]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172"
    file="ccmsetup.cpp:4584">
    <![LOG[No version of the client is currently detected.]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:2748">
    <![LOG[Folder 'Microsoft\Configuration Manager' not found. Task does not exist.]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="10172"
    file="wintask.cpp:622">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="10172" file="ccmsetup.cpp:9281">
    <![LOG[Sending Fallback Status Point message to 'SOL-SCCM.hunter.local', STATEID='100'.]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172"
    file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x8004100e]LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="2" thread="10172"
    file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment ']LOG]!><time="07:33:15.432+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="10172" file="ccmsetup.cpp:9887">
    <![LOG[Request failed: 404 Not Found
    ]LOG]!><time="07:33:15.822+300" date="04-15-2015" component="FSPStateMessage" context="" type="3" thread="10172" file="fsputillib.cpp:1347">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="07:33:15.837+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172" file="ccmsetup.cpp:1995">
    <![LOG[Sending Fallback Status Point message to 'SOL-SCCM.hunter.local', STATEID='328'.]LOG]!><time="07:33:15.837+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="10172"
    file="ccmsetup.cpp:9756">
    <![LOG[Failed to get client version for sending messages to FSP. Error 0x8004100e]LOG]!><time="07:33:15.837+300" date="04-15-2015" component="ccmsetup" context="" type="2" thread="10172"
    file="ccmsetup.cpp:9838">
    <![LOG[Params to send FSP message '5.0.7958.1000 Deployment Error 0x80004005']LOG]!><time="07:33:15.837+300" date="04-15-2015" component="ccmsetup" context="" type="0" thread="10172"
    file="ccmsetup.cpp:9887">
    <![LOG[Request failed: 404 Not Found
    ]LOG]!><time="07:33:15.900+300" date="04-15-2015" component="FSPStateMessage" context="" type="3" thread="10172" file="fsputillib.cpp:1347">
    <![LOG[CcmSetup failed with error code 0x80004005]LOG]!><time="07:33:15.900+300" date="04-15-2015" component="ccmsetup" context="" type="1" thread="5240" file="ccmsetup.cpp:10879">

  • AUR/caffeine builds but doesn't run on x86_64

    It runs on my i686 box but when I build/install caffiene on my x86_64 box, I get the following error when I try running it:
    $ caffeine
    Traceback (most recent call last):
    File "/usr/bin/caffeine", line 40, in <module>
    import caffeine
    File "/usr/lib/python2.7/site-packages/caffeine/__init__.py", line 25, in <module>
    from xdg.BaseDirectory import xdg_config_home
    ImportError: No module named xdg.BaseDirectory
    Thoughts are welcomed

    It runs on my i686 box but when I build/install caffiene on my x86_64 box, I get the following error when I try running it:
    $ caffeine
    Traceback (most recent call last):
    File "/usr/bin/caffeine", line 40, in <module>
    import caffeine
    File "/usr/lib/python2.7/site-packages/caffeine/__init__.py", line 25, in <module>
    from xdg.BaseDirectory import xdg_config_home
    ImportError: No module named xdg.BaseDirectory
    Thoughts are welcomed

  • Able to deploy but can not run

    Hi,
    I have created Enterprise project using netbeans for testing purpose.
    I have added index.jsp in web module.
    then i added 1 of ejb module.
    I have not modified any file of both.
    then i build the project, it created .ear file
    I use this ear to deploy on Application PE9 it has no error.
    When I try to run the project from netbeans by right click the project
    It can not be run with error
    C:\TEST\nbproject\build-impl.xml:179: Deployment error:
    I click to this error link
    It bring me to this line of build-impl.xml
    <target name="-run-deploy-nb" if="netbeans.home">
    <nbdeploy debugmode="false" forceRedeploy="${forceRedeploy}" clientUrlPart="${client.urlPart}" clientModuleUri="${client.module.uri}"/>
    </target>
    What's wrong?
    Thanks in advance

    we'd probably need some more information to help with this.  if you could provide a more verbose description of your problem, the ipconfig /all of the devices using the router if they're having problems, and the router's ip address & subnet settings.  in your subject line you say you CAN browse, but can't access 192.168.1.1 which leaves me a little confused.

  • Package works w/ batch as admin but fails to run w/ Marimba (system acct)

    Hi.
    I created a package using NWSapSetupAdmin.exe with no problems.  I compressed the package to a self extractor install EXE.
    The package works great on any client when start the batch manually under my admin ID.
    If I use Marimba (BMC Bladelogic Configuration manager) to deploy the batch file it runs and fails trying to save various files to E:/Program Files instead of C:/Program Files  (E: drive is the dvd on most PC in our company).
    It should be pointing to c:\Program Files.   We can find no reason why the batch behaves differently in Marimba.
    Anyone ever hear of the package incorrectly pointing to the E: drive for program files?
    Thanks,
    Jim

    Why not try the latest version *1.6 update 13* ?

  • Jar file runs on windows but fails to run on macbook

    hi, i developed this app using netbeans on windows and the .jar is runing fine, but when i transfered the jar file to a macbook and double clicked the jar file, it dint run, then i tried to run it from the terminal i got the following exception. please what could be the problem
    mustapha-mohammed-kutas-macbook:~ mustaphamohammedkuta$ cd desktop
    mustapha-mohammed-kutas-macbook:desktop mustaphamohammedkuta$ cd mustee
    mustapha-mohammed-kutas-macbook:mustee mustaphamohammedkuta$ java -jar PayrollProject.jar
    Exception in thread "main" java.lang.UnsupportedClassVersionError: Bad version number in .class file
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:675)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:316)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:280)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:374)
         at java.lang.ClassLoader.defineClass2(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:774)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:160)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:254)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:316)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:280)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:374)
         at payrollproject.Main.main(Main.java:34)
    mustapha-mohammed-kutas-macbook:mustee mustaphamohammedkuta$

    This means the version of Java you're using on the Mac is older than the one you made your jar file with. I believe the default Java on Mac is Java 5. Perhaps you built your classes and jar with Java 6?

  • Java program compiles but failes to run

    WHAT IS WRONG WITH THIS PROGRAM? It compiles;
    however, when I try to run it, I get the message"
    static void main not define in class car. Please help!
    class Car {
    int passanger;
    int mpg;
    int gas;
    void range() {
    System.out.println("Distance of =:" + mpg*gas);
    class Models {
    public static void main(String args[]) {
    Car Toyata=new Car();
    Car Mazada=new Car();
    Toyata.passanger=8;
    Mazada.passanger=6;
    Toyata.mpg=30;
    Mazada.mpg=25;
    Toyata.gas=16;
    Mazada.gas=17;
    System.out.println("Toyata can carry" +Toyata.passanger);
    Toyata.range();

    The program gets compiled into two classes: Car.class & Models.class.
    class Car {
    int passanger;
    int mpg;
    int gas;
    void range() {
    System.out.println("Distance of =:" + mpg*gas);
    class Models {
    public static void main(String args[]) {
    Car Toyata=new Car();
    Car Mazada=new Car();
    Toyata.passanger=8;
    Mazada.passanger=6;
    Toyata.mpg=30;
    Mazada.mpg=25;
    Toyata.gas=16;
    Mazada.gas=17;
    System.out.println("Toyata can carry" +Toyata.passanger);
    Toyata.range();
    java Car does not produce output because the main method is in the Models.class.
    java Modelsproduces output
    Toyaota can carry 8
    Distance of :=480

  • Native Process running from Flash Builder but not from the installed exe

    I have created an AIR application to launch a native process. The   application works fine when tested in Flash Builder but doesn't runs   when I create and AIR  installer and run the installed exe. Any idea  what might be wrong?

    Have you created a native installer instead of just an AIR file.
    -ted

  • I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build.  The same call works fine when running on the device

    I have a production mobile Flex app that uses RemoteObject calls for all data access, and it's working well, except for a new remote call I just added that only fails when running with a release build. The same call works fine when running on the device (iPhone) using debug build. When running with a release build, the result handler is never called (nor is the fault handler called). Viewing the BlazeDS logs in debug mode, the call is received and send back with data. I've narrowed it down to what seems to be a data size issue.
    I have targeted one specific data call that returns in the String value a string length of 44kb, which fails in the release build (result or fault handler never called), but the result handler is called as expected in debug build. When I do not populate the String value (in server side Java code) on the object (just set it empty string), the result handler is then called, and the object is returned (release build).
    The custom object being returned in the call is a very a simple object, with getters/setters for simple types boolean, int, String, and one org.23c.dom.Document type. This same object type is used on other other RemoteObject calls (different data) and works fine (release and debug builds). I originally was returning as a Document, but, just to make sure this wasn't the problem, changed the value to be returned to a String, just to rule out XML/Dom issues in serialization.
    I don't understand 1) why the release build vs. debug build behavior is different for a RemoteObject call, 2) why the calls work in debug build when sending over a somewhat large (but, not unreasonable) amount of data in a String object, but not in release build.
    I have't tried to find out exactly where the failure point in size is, but, not sure that's even relevant, since 44kb isn't an unreasonable size to expect.
    By turning on the Debug mode in BlazeDS, I can see the object and it's attributes being serialized and everything looks good there. The calls are received and processed appropriately in BlazeDS for both debug and release build testing.
    Anyone have an idea on other things to try to debug/resolve this?
    Platform testing is BlazeDS 4, Flashbuilder 4.7, Websphere 8 server, iPhone (iOS 7.1.2). Tried using multiple Flex SDK's 4.12 to the latest 4.13, with no change in behavior.
    Thanks!

    After a week's worth of debugging, I found the issue.
    The Java type returned from the call was defined as ArrayList.  Changing it to List resolved the problem.
    I'm not sure why ArrayList isn't a valid return type, I've been looking at the Adobe docs, and still can't see why this isn't valid.  And, why it works in Debug mode and not in Release build is even stranger.  Maybe someone can shed some light on the logic here to me.

  • Premiere elements 12, new installation, serial no. accepted, installation completed and new started, but does not run. I get following msg-box: "LoadLibrary failed with error 126: Das angegebene Modul wurde nicht gefunden."

    premiere elements 12, new installation, serial no. accepted, installation completed and new started, but does not run. I get following msg-box: "LoadLibrary failed with error 126: Das angegebene Modul wurde nicht gefunden."   Installation in German Language on WIN7 professional 64bit, Samsung SSD. What can I do to run that program?

    Jurgen Freund
    Premiere Elements 12 on Window 7 64 bit. What video card/graphics card does your computer use - AMD Radeon?
    I have found this YouTube video on the subject of Error 126 with details for resolving the problem.
    How to fix the ERROR 126 when you open OpenGL programs - YouTube
    The link was contributed in an old 2013 thread here by the ID danneomarre (see post 6 of the following thread)
    LoadLibrary failed with error 126: cant find the required
    Please let us know if that worked for you.
    Thank you.
    ATR
    Add On...When all is OK and working, please update 12 to 12.1 Update using an opened project's Help Menu/Update.

Maybe you are looking for

  • How do I determine whether the current page in Forms is the last page.

    I have a requirement of printing amount in words using SPELL_AMOUNT Funtion Module, in SAP Scripts. When I have only one Item Line, I am able to successfully, print the amount. The moment i have line items pouring to the next page, I see that the I a

  • Ipod 5 can't upload or play some of my video podcasts

    I have been watching Photoshop TV and loving it. Now i want to watch TheInDesigner video podcasts but I can't get them to upload to my ipod. I can listen to audio podcasts of this show but all the video versions are a no go. I have them loaded up on

  • Connecting to Remote EJB from Servlet in same application

    Please help! I was able to connect to SessionBeans and EJB from my sample java client in OCJ4 but when I try to do same thing from my web application using servlets, I get the below NullPointerException error. The JNDI lookup works fine using java cl

  • How can I do to insert a 1D array in a line of a table or a 2D array ?

    I have some vectors I concatenate in a 1D array when I pushed a button. Furthermore, when I pushed the same button, I would like to insert this 1D array in a line of a 2D array or in a line of a table. How can I do ? Thanks. Cyril.

  • Video effects in iMovie 10.0.3 for Macbook Air?

    I recently purchased a Macbook Air which has iMovie 10.0.3, but I can't figure out how to add effects to my video clips, like the bokeh effect, I have seen tutorials on the internet but they are all for the older version of iMovie! Can someone tell m