Running a Task Sequence within a Task Sequence

We are running an SCCM 2012 R2 setup for OSD, WSUS, App Deployment and Endpoint Protection.
To simplify the management of drivers across several OSD task sequences, I'd like to have one "master" task sequence containing only Apply Device Drivers with model specific targeting that is referenced from the OSD task sequences.
Why would I want this? With every new computer model that is being added to the environment (We are currently supporting 20 different computer models, and the list keeps growing), I have to update one task sequence with model specific targeting for a driver
package, then copy all the changes to several other task sequences. To try to simplify the administration and reduce the chance of human error and ensure consistency across the board, this would probably be the best way to ensure this.

Out-of-the-box you can't start one task sequence within another task sequence. A few workarounds:
You can make your task sequence put your computer object in a new collection which has a new task sequence targeted, but that probably won't perform that well;
You can target multiple task sequences to the same collection and try to use PowerShell to trigger a new task sequence. For example something like this (I have never tried to use this from a task sequence):
http://powersheller.wordpress.com/2012/05/24/sccm-2012-execute-task-sequence-with-powershell/
You can try to merge your current task sequences.
My Blog: http://www.petervanderwoude.nl/
Follow me on twitter: pvanderwoude
Since what I'd like to do is to "pause" the current task sequence until the second task sequence has run and then resume the current task sequence (Just the apply drivers step) I don't think either would be great options. I guess the copy paste
option is what is left for me.
Thanks for replying and your suggestions

Similar Messages

  • Can we change the tab sequence in UWL task - ep 7 ?

    Hi all:
         We are running ess/mss in ep7. Currently the UWL task display the 4 tabs ( alerts, task, notification, traces ).
         Can we change the sequence from alerts-task-notification-traces to task-alerts-notification-traces ?
         Thanks a lot.

    Hi Jianhong,
    U have a option at right side corner,right click and u go in personalization.Please see the below blog for more details.
    Customizing Default actions of items in UWL
    Universal Worklist - when you only need a single tab
    Thanks
    Regards
    Santosh
    Reward if helpful !!!

  • How to setup Compressor to create video from multiple sequences within FCP?

    I am wondering how I can set compressor up to create videos from multiple sequences within FCP. When I click file -> export - > compressor for a sequence and go into the program, it doesn't allow me to go back into FCP. I just get a spinning beach ball. Is there no way to set it up so I can prep a bunch of fcp sequences within compressor and then click submit and walk away? I have over 100 sequences that need to be exported so it would be a little difficult to do this one at a time. Thanks.

    Batch processing
    *Step one. Make sure everything in every sequence is rendered.*
    *Step two. Make a folder somewhere and name it something relevant.*
    *Step three. In FCP select all you sequences that you want to compress and right click (option), choose Batch Export from the contextual menu.*
    *Step three point one. In the batch export window click on settings and choose the folder you made in step two for the destination. Make sure Make Self-Contained is not check and include Audio and Video.*
    *Step four. Click export in the batch window.*
    Once that is done you can close FCP.
    Now in Compressor
    *Step five. Make a setting that will give you the output that you want (mpeg2, AC3, h.264, whatever). Make a destination for where you want to save the output.*
    *Step six. Make a droplet from the settings you made in step five.*
    You can quit Compressor now.
    *Step seven. Take the files that you batch exported from FCP in step three and four and drop them on the droplet you made in step six.*
    o| TOnyTOny |o

  • Unable to create a subtask within a task for cProjects

    Hi All,
    I am unable to create a subtask within a task using BAPI_BUS2175_CREATE. When I pass the GUID of the project definition and fill the corresponding task structures to the BAPI, a task gets created at the phase level. But when I pass the GUID of the task along with the task
    information, subtask does not get created. The BAPI returns the following error message:
    DPR_SHARED 051: You cannot create Task for (Task Name).
    Steps for recreating the error message are:
    1. GUID is found out using function module CONVERSION_EXIT_DPRCE_INPUT.
    2. GUID and task information is passed to BAPI_BUS2175_CREATE.
    3. Task is created if project definition GUID is passed, but if task GUID is passed, there is no subtask created. An error message is displayed:
    DPR_SHARED 051: You cannot create Task for (Task Name).
    Any help would be appreciated.
    Thanks,
    Tom

    Hi all,
    I have used the same and it works absolutely fine.
    here is a code sample
    CONSTANTS:
       lc_rfc_none        TYPE string VALUE 'NONE'.       " RFC on same server
    DATA:
      lv_header_task_guid TYPE bapi_ts_guid-parent_guid, " Header Task GUID
      ls_sub_task TYPE bapi_ts_task,
      ls_sub_task_upd TYPE bapi_ts_task_upd,
      lt_crtask_return TYPE TABLE OF bapiret2,
      ls_extension_in TYPE bapiparex,
      ls_extension_out TYPE bapiparex,
      lv_task_guid TYPE bapi_ts_guid-parent_guid. " Task GUID
    * Assign sub-task name. (Task Number is internally generated)
    ls_sub_task-task_name = 'ST 1.1'.
    ls_sub_task_upd-task_name = 'X'.
    * Assign Sort Number
    ls_sub_task-sort_number = '00010'.
    ls_sub_task_upd-sort_number = 'X'.
    * Assign Duration
    ls_sub_task-duration = 30.
    ls_sub_task_upd-duration = 'X'.
    * Assign Work.
    ls_sub_task-planned_work = 240.
    CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT'
      EXPORTING
        input          = 'H'
      IMPORTING
        output         = ls_sub_task-planned_work_unit
      EXCEPTIONS
        unit_not_found = 1
        OTHERS         = 2.
    IF sy-subrc <> 0.
    ENDIF.
    ls_sub_task_upd-planned_work = 'X'.
    ls_sub_task_upd-planned_work_unit = 'X'.
    CALL FUNCTION 'BAPI_BUS2175_CREATE'
         DESTINATION lc_rfc_none
         EXPORTING
             iv_parent_guid   = lv_header_task_guid
             is_task          = ls_sub_task
             is_task_upd      = ls_sub_task_upd
             is_extension_in  = ls_extension_in
          IMPORTING
             es_extension_out = ls_extension_out
         TABLES
             return           = lt_crtask_return.
    * If task is successfully created,
    READ TABLE lt_crtask_return WITH KEY type = lc_success number = '114'.
    IF sy-subrc = 0.
    * Get task GUID
    lv_task_guid = lt_crtask_return-message_v1.
    CALL FUNCTION 'BAPI_CPROJECTS_COMMIT_WORK'
      DESTINATION
        lc_rfc_none
      TABLES
        return = lt_bapiret2.
    endif.
    In order to find the GUID of the header task use function module:
    DPR_GET_GUID_BY_ID_FROM_DB
    with IV_Number  = task number for the header task and IV_OBJECT_TYPE = TTO
    Read the documentation for 'BAPI_BUS2175_CREATE' before using it.
    make sure you have maintained IS_TASK_UPDATE structure as well.
    Regards,
    Reema.

  • T410 (2522) - No battery symbol within the task bar

    Hello together,
    around 4 weeks ago i have bought a new T410 laptop. Everything works fine, but i have so problems with the battery symbol (big one) within the task bar. Within the lenove power manager the option to display the symbol is selected. Sometimes it is visible, sometimes not.
    Power Manager and Management driver are updated to the latest version (3.62 & 1.62). OS is a Windows 7 64 bit professional.
    Any ideas?
    Regards

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Embedded Form within a Task Definition

    Why would I ever want to use an embedded form within a task definition instead of calling a manual action within my workflow?
    What are the advantages/disadvantages?

    You may not be able to. In order for a font to be used with a form field, it has to allow at least editable embedding. Some fonts don't and Acrobat honors any restrictions that are specified in the font file.
    For more information, see: http://www.adobe.com/products/type/font-licensing/font-embedding-permissions.html

  • Variable Values mysteriously changed within my task workflow

    What can cause the values of my variables to read as displayed? These are not the values I assigned.
    Workflow was working great until customer noticed they could not create new tasks So I opened workflow and this what I discover. Any ideas how why this would happen?

    Hi Neoinbiz,
    The fields in the workflow actions becomes IDxxx.ReturnValue or null because the content type for this approval workflow has been deleted from the site where the workflow runs.
    So the fields cannot be rendered in the workflow.
    As the content type has been deleted, so I recommend to delete the Start Approval Process and then re-add the action. After that a new content type will be created and then you can use the new content type in the task list for creating tasks.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • BlackBerry 10 - how to view completed Tasks from within Calendar

    How to view completed Tasks entered in Remember, but viewing not just active tasks but completed tasks from within the Calendar? Thank you.

    Hi sandy1729,
    Welcome to Apple Discussions
    You don't say which iPod it is but I have a nano - to check the battery indicator when charging I turn the nano off, then the battery indicator fills the whole screen instead of just the bit at the top right.
    See the pictures here:
    http://docs.info.apple.com/article.html?artnum=60970
    Regards,
    Colin R.

  • Best practice for upgrading task definition without deleting task instances

    best practice for upgrading task definition in production system without deleting or terminating task instances
    If I try and update a task definition with task instances running I get the following error:
    Task definition 'My Task - Add User' may not be modified while there are active task instances
    Is there a best practice to handle this. I tried to force an update through the console but that didn't work. I tried editing the task from the debug page and got the same error.

    1) Rename the original task definition.
    2) Upload the new task definition with the original name.
    3) Later, after all the running tasks have timed out, delete the old definition.
    E.g., if your task definition is "myWorkflow":
    1) Rename "myWorkflow" to "myWorkflow-old-2009-07-28"
    2) Upload the new task definition as "myWorkflow".
    Existing tasks will stay linked to the original (renamed) workflow definition.
    New tasks will use the new definition.
    As the previous poster notes, depending on the changes you are making, letting the old task definitions stay active could have bad side-effects and might be better avoided.

  • Call function module in backgrouns task and in update task

    Hi Gurus,Pls crear me on the " <b>Call function module in backgrouns task and in update task</b>".
    how it works and waht is the link with LUW  releated to these .
    also heard that commit work statement aslo linked with this.
    Pls clarfiy me with expalnation of code.

    Hi sridhar,
    the explanation already given is correct and good. Small add-on:
    All functions called during one LUW with addition IN UPDATE TASK are stored together with their actual parameters in a temporary memory area. The moment a COMMIT WORK is issued, the functions are released to be executed by a so-called update task which is running in the background. This explains why functions called in update task never return anything, no SY-SUBRC and no export or table parameters If a function called in update task raises an exception or runs into an error the calling user will get an express message informing about this. Also, all database updates done by this update process are rolled back to keep consistency.
    This proceeding helps to keep database tables consistent and allows the user to keep on doing his work before all database updates are complete. You may have seen messages like "material will be changed" after saving. If you open the same material immediately, you'll get a message "object locked by...<yourself>". This means the update task is still running.
    Regards,
    Clemens

  • Can we call two task flow from another task flow

    Hi everyone,
    i have a issue. I have a tab(p1),under that tab i have created two tab(p1 and p2).i have to create task flow for p1 and p2 .In both ,p1 and p2, i am doing some operations. then i have to call both the task flow under another task flow(p1).what should be the steps i have to take to do that.
    My version is 11.1.1.6
    please respond as soon as possible.
    Thanks in advance....

    hi
    sorry to say this
    i have not much time to play 20-20 chat. please elaborate you usecase. you can get you answer within a post
    but we will use router when we have some condition.if you are using router. you should use some "condition" what is that?
    but in both the child tab,i just have to fill the form.ok. i hope that you are using af:table in parent TF. in child tab you are using af:form
    before commiting or at the time if commiting you should get the data's in af:form. if am right means you should have association/viewlink between those eo's/vo's
    if you have means while commiting the parent table iterate over the rows show in child tab - af:form
    it will show the both the child panel.go to panettab render poerpty rendered say as condition {yourparenttableiteratoecount ge 0 ? true : false}
    or else as you said, make router condition {yourparenttableiteratoecount ge 0} show the child TF.
    from the answer you may understood.(just a hope)

  • Applescript to make task note part of task name

    If I have a task say
    Do this
    Task Note - @work
    Is it possible for me to dump the task note @work to task name and name becomes
    Do this @work
    Can this be done for all my tasks.

    Your request is a bit vague, but see the script below. I suggest that you backup your iCal before running this in case you don't like the result. Change the calendar to the one you want.
    -- John Maisey -- www.nhoj.co.uk -- 29 Mar 2010
    -- This script gets all todos in the specified calendar and moves their notes that contain the requires text into the title.
    set calendarName to "Home"
    set theText to "@work"
    tell application "iCal"
    set myTodos to (todos of calendar calendarName)
    repeat with myTodo in myTodos
    if (description of myTodo) contains theText then
    set (myTodo's summary) to (myTodo's summary) & " " & theText
    end if
    end repeat
    end tell
    Best wishes
    John M

  • Active Task Notification for Rescheduled Tasks

    Active Task Notification for Rescheduled Tasks
    version 2007
    I'd like to setup a notification to the Performer when their rescheduled tasks become active again.  I've tested emails triggered by "Notify when activity starts:", but have had no success.  Ideas?

    Hi David,
    Go to the System Administration -> System Configuration -> Knowledge Management -> Content Management
    Then Global Services -> Scheduler Tasks -> Scheduler for Deadline Task
    When you edit the WFTaskSchedulerDeadline you have a property called Time Table.
    There you can define how often and when the task should run.
    Greetings, Marcel

  • Workflow task  TS00008267 ("generic decision task") not exist

    Dears,
        i could not find the task TS00008267 ("generic decision task") and then i can not activate the 'Classify Decision Task as General ' in SWU3.
       any method to restore the task 'TS00008267' in my client?
    BR.

    Hello,
    As Ketjil and Mikko have suggested if yuo cannot see the task then it is an authorization issue ot the task has been deleted or never delivered.
    If you find that all tasks are missing and not just TS00008267 then it is most likely an authorisation issue. Run transaction
    SU53 to see what authorisation objects your user is missing. It is related to Org Management authorisations.
    If you have to transport it try transaction SE01 (Transport Organiser) it is possible to transport from system to system. Just click on Create button and then select 'Transport of copies'. Then just enter you target system and save. You can then add the
    objects you wish to transport to your Target system.
    Example:=============================
    R3TR PDTS 00008267
    In SE01, click Create => Transport of copies
      => Name the request and save
           => Click 'Include Objects' button and choose 'Freely selected
              objects'.
                =>Enter the Development class SWD and click 'Selected
                  Objects'. F4 at the bottom of the list (Under the DTEL
                  entry) and select the entry "R3TR PDTS" and click OK.
                  Now enter the task ID 00008267 in the dialog box
                  opposite it and click the checkbox (See attached screen
                  shot) and then click the Execute button.
                    => Expland the list and goto the task
                         => Select 00008267 and click the "Save In Request"
                            button.
    You can do this with any standard tasks you want to transport to your system.
    Hope this helps.
    Regards,
    Eddie

  • When I close a .pdf file the program continues to use the CPU I have to go into Task Manager and End Task

    Hi
    When I close a .pdf file in Adobe Reader the program continues to run on the CPU until I go into the Task Manager and End Task.
    I am running Windows 8 with Adobe Reader Ver 11.0.07, I have uninstalled the reader and reinstalled also checked for updates and ask the program to check the installation, which it did with no change I still have the problem ?.
    Peter

    Hi Peter,
    Please check the performance by disabling the 'Protected mode' in Reader.
    Edit > Preferences > Security (Enhanced) > Enable Protected Mode at startup
    Uncheck this option. Click on Ok.
    Close and launch Reader and check.
    Ref.: http://helpx.adobe.com/acrobat/kb/protected-mode-troubleshooting-reader.html
    Regards,
    Rave

Maybe you are looking for

  • Bootcamp help

    I have recently installed windows xp on my computer using bootcamp. i have no issue going back and forth between the two or anything like that, but when i'm in windows, i have no internet connection. i'm starting a new thread for this b/c even though

  • Syntax error in program "SAPLGLIN "

    Hi, After creating new client and made a copy from an existant one, when we try to create an accounting document from any module (SD,Fi,MM)this error occurs : Error in the ABAP Application Program Syntax error in program "SAPLGLIN " The current ABAP

  • Change of source system - any mass transaction?

    Hi, we have to transfer some programs and stuff from one system to another. Basis people will manually import a transport for this. In target system, I want to change the source system of  the transported objects. Because it is quite a big number, I

  • 9iAS Release2 on RedHat 8 - ORA-1503

    I'm attempting an install of Oracle 9iAS Release 2 (9.0.2.1) on RedHat 8. During install I initially received some linking errors, but was able to resolve them by performing the following actions: 1. Go into the $ORACLE_HOME/bin directory 2. Open the

  • TOC entries: is there a limit to how many links you can have to the same htm in TOC?

    TOC entries: is there a limit to how many links you can have to the same htm in TOC? I have an HTM that requires multiple links in the TOC. Now I can't compile a CHM. I have eliminated all other possible problems...