Book Image

Microsoft System Center Configuration Manager Cookbook - Second Edition

By : Samir Hammoudi, Matthew Hudson, Greg Ramsey, Brian Mason, Chuluunsuren Damdinsuren
Book Image

Microsoft System Center Configuration Manager Cookbook - Second Edition

By: Samir Hammoudi, Matthew Hudson, Greg Ramsey, Brian Mason, Chuluunsuren Damdinsuren

Overview of this book

This practical cookbook is based on the 1602 current branch of System Center Configuration Manager (SCCM). It shows you how to administer SCCM, giving you an essential toolbox of techniques to solve real-world scenarios. Packed with over 60 task-based and instantly usable recipes, you’ll discover how design a SCCM Infrastructure, and dive into topics such as the recommended SQL configuration for SCCM and how to deploy Windows 10 with Operating System Deployment (OSD). You will learn to easily manage Windows 10 devices by deploying applications, software updates, and feature upgrades, andl be able to leverage Mobile Device Management (MDM) using SCCM and Microsoft Intune. Finally, you see how to gather the inventory of all your PC park and create reports based on it. By the end of the book, you will have learned the best practices when working with SCCM and have a handy reference guide for troubleshooting.
Table of Contents (15 chapters)
Microsoft System Center Configuration Manager Cookbook - Second Edition
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface

Customizing the build process with prestart hooks


Prestart hooks (previously known in CM07 as pre-execution hooks) are used to allow the admin to perform additional steps prior to the start of the TS, such as capturing the username and prompting the user to input data. Prestart hooks can be used at the beginning of the TS to prompt the user for information, or programmatically determine information that applies to the OS deployment process. For example, you could prompt the user to select a location, or additional components to install during the TS. You could also query a web service or a database to determine the role of a server to deploy.

CM07 enables you to create prestart hooks by mounting a boot image, and add a .ini file with instructions to launch the desired script or executable. While that process is still available, CM provides two additional methods to configure prestart hooks from the admin console:

  • On the boot image properties

  • During the media (USB or ISO) creation process

Prestart...