Client Management Suite

 View Only
  • 1.  job/task status is showing start pending

    Posted Feb 26, 2014 08:20 AM

    Hi Support,

    I am creating one task for workgroup to domain joining and apply one machine but the task in not come on machine i was seen in the console its showing task status is start pending.



  • 2.  RE: job/task status is showing start pending
    Best Answer

    Posted Mar 02, 2014 10:15 AM

    check below mention Script.....

     

    Const JOIN_DOMAIN = 1
    Const ACCT_CREATE = 2
    Const ACCT_DELETE = 4
    Const WIN9X_UPGRADE = 16
    Const DOMAIN_JOIN_IF_JOINED = 32
    Const JOIN_UNSECURE = 64
    Const MACHINE_PASSWORD_PASSED = 128
    Const DEFERRED_SPN_SET = 256
    Const INSTALL_INVOCATION = 262144
     
    strDomain = "domain name"
    strPassword = "password"
    strUser = "fmdesktopadmin"
     
    Set objNetwork = CreateObject("WScript.Network")
    strComputer = objNetwork.ComputerName
    wscript.echo strcomputer 
    Set objComputer = GetObject("winmgmts:{impersonationLevel=Impersonate}!\\" & strComputer & "\root\cimv2:Win32_ComputerSystem.Name='" & strComputer & "'")
    ReturnValue = objComputer.JoinDomainOrWorkGroup(strDomain,strPassword, strDomain & "\" & strUser, NULL,JOIN_DOMAIN + ACCT_CREATE)
     


  • 3.  RE: job/task status is showing start pending

    Broadcom Employee
    Posted Mar 04, 2014 02:24 AM

    Please verify:

    1. Client you are trying to work with has the Task Server in the Symantec Management Agent UI (dbl-click to SMA icon and select the Task Status tab: task server name should be displayed. If task server name is empty then client is not registered with the TS by some reason, in most cases because of communication issues between the NS, TS and SMA or because of not properly configured IIS on a TS.

    2. If client has Task Server, then please check status of "Altiris Client Task Data Loader" and "Altiris Object HostService" services on a Task Server - both should be started.

    Thank you,

    Alex.



  • 4.  RE: job/task status is showing start pending

    Posted Mar 05, 2014 02:52 AM

    Hi Santosh,

     

    I will check and revert back to you.



  • 5.  RE: job/task status is showing start pending

    Posted Mar 06, 2014 01:09 AM

    Thanx santosh your Script is working fine. i using your script and its good.