Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Microsoft Identity Manager 2016 Handbook

You're reading from  Microsoft Identity Manager 2016 Handbook

Product type Book
Published in Jul 2016
Publisher Packt
ISBN-13 9781785283925
Pages 692 pages
Edition 1st Edition
Languages
Authors (2):
David Steadman David Steadman
Profile icon David Steadman
Jeff Ingalls Jeff Ingalls
Profile icon Jeff Ingalls
View More author details

Table of Contents (22) Chapters

Microsoft Identity Manager 2016 Handbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Overview of Microsoft Identity Manager 2016 Installation MIM Sync Configuration MIM Service Configuration User Management Group Management Role-Based Access Control with BHOLD Reducing Threats with PAM Password Management Overview of Certificate Management Installation and the Client Side of Certificate Management Certificate Management Scenarios Reporting Troubleshooting Operations and Best Practices Index

Automating run profiles


Let's first talk about automating your run profiles. Organizations typically run their Management Agents using Task Scheduler or some other task scheduler. To set this up, click on a Management Agent and then click on Configure Run Profiles. Click on the Script button and save the file:

If you save it as a VB Script file, you can run the particular run profile by running cscript filename.vbs. As VB Script is making a simple call to WMI, you could use PowerShell too. Whether you want to run your imports, synchronizations, and exports using Task Scheduler or some other product is up to you; just know that you will need to start the run profiles with a WMI call.

If you save the run profile as a C# file, you can compile the file into an executable (.exe) with csc.exe from a Visual Studio command prompt. Here is an example of compiling C:\SourceCode\HRFullImport.cs into C:\Scripts\HR-FI.exe:

csc C:\SourceCode\HRFullImport.cs /out:C:\Scripts\HR-FI.exe

As we have mentioned...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}