ConfigMgr (SCCM) 2007 – Easy way to do Task Sequence Documentation
Documenting Your Task Sequences Automagically from DeploymentGuys
1. Copy the attached file at the bottom of the post to the same folder as your task sequence.
2. Open your task sequence in your favourite text editor.
3. After the first line which should look something like this:
<?xml version=”1.0″?> or <?xml version=”1.0″ encoding=”utf-8″?>
enter the following as the second line:
<?xml-stylesheet type=”text/xsl” href=”tsDocumentorv1.xsl”?>
4. Save your task sequence file and open it in Internet Explorer. Presto! The XSL takes care of formatting, indents and sizing.
You can even change the styles of groups and steps easily.
1. Open up the tsDocumentorv1.xsl file
2. Edit the following section:
<STYLE TYPE=”text/css”>
TD.group { background-color:teal;color:white }
TD.step { background-color:beige }
</STYLE>
Change the colours or any other css properties you choose!
The XSL should work with task sequences created with BDD 2007, MDT 2008 and SCCM 2007.
