0% found this document useful (0 votes)
61 views

Preparing The MIM 2016 Servers: Jeff Adkin

The document provides instructions for preparing MIM 2016 servers, including: 1. Creating required MIM and Active Directory accounts and groups using both the Active Directory Users and Computers interface and PowerShell commands. 2. Installing necessary MIM prerequisites like IIS, .NET Framework, and Windows features using PowerShell commands to add server roles and features. 3. Installing required SQL Server prerequisites like .NET Framework 3.5 and 4.5 using PowerShell commands to install server features. 4. Instructions to install SQL Server after ensuring prerequisites are met.

Uploaded by

Max
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views

Preparing The MIM 2016 Servers: Jeff Adkin

The document provides instructions for preparing MIM 2016 servers, including: 1. Creating required MIM and Active Directory accounts and groups using both the Active Directory Users and Computers interface and PowerShell commands. 2. Installing necessary MIM prerequisites like IIS, .NET Framework, and Windows features using PowerShell commands to add server roles and features. 3. Installing required SQL Server prerequisites like .NET Framework 3.5 and 4.5 using PowerShell commands to install server features. 4. Instructions to install SQL Server after ensuring prerequisites are met.

Uploaded by

Max
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 27

Preparing the MIM 2016 Servers

Jeff Adkin
PLURALSIGHT AUTHOR

@JeffAdkin www.JAdkin.com
Summary Creating MIM Accounts
Creating MIM Groups
Installing MIM Prerequisites
Installing SQL Prerequisites
Install SQL Server
Creating MIM Accounts
MIM Accounts
MIMMAgent
- MIM Management Agent

MIMSync
- Management IM Sync Service

MIMService
- Common Services

MIMSPRegAP
- Password Registration Application Pool

MIMSPResetAP
- Password Reset Application Pool
Creating Active Directory Accounts

Active Directory Users PowerShell with AD


and Computers Module
Allows Automation of
Quick UI for creation
accounts
Demo
Create AD account via ADUC (Active
Directory Users and Computers)
$pwd = ConvertTo-SecureString "Pass@word1" –asplaintext –
force
New-ADUser –SamAccountName MIMMA –name MIMMA
Set-ADAccountPassword –identity MIMMA –NewPassword $pwd
Set-ADUser –identity MIMMA –Enabled 1 –PasswordNeverExpires
1

Creating account with PowerShell


There are 4 things we have to do to create an account in PowerShell.
Have a password; create an account, set password on account; enable
account.
Demo

Create AD account via PowerShell


Creating MIM Groups
MIM Groups
MIMSyncAdmins
- Admins

MIMSyncOperators
- Operators

MIMSyncJoiners
- Joiners

MIMSyncBrowse
- Connector Browse

MIMSyncPasswordReset
- WMI Password Management
Creating Active Directory Groups

Active Directory Users PowerShell with AD


and Computers Module
Allows Automation of
Quick UI for creation
accounts
Demo
Create AD group via ADUC (Active
Directory Users and Computers)
New-ADGroup –name MIMSyncAdmins –GroupCategory Security –
GroupScope Global –SamAccountName MIMSyncAdmins
Add-ADGroupMember -identity MIMSyncAdmins -Members
Administrator

Creating groups with PowerShell


Creating groups in PowerShell are fairly straightforward, and so is
adding a member.
Demo

Create AD group via PowerShell


Installing MIM Pre-requirements
MIM 2016 Prerequisites

Application Server Web Server (IIS) .NET 3.5

AD Module for
Local Security
Windows
PowerShell Policy
Demo
Add in Roles and Features in Server
Manager required by MIM
Import-module ServerManager
Install-WindowsFeature Web-WebServer, Net-Framework-
Features,rsat-ad-powershell,Web-Mgmt-Tools,Application-
Server,Windows-Identity-Foundation,Server-Media-
Foundation,Xps-Viewer –includeallsubfeature -restart -
source d:\sources\SxS

Install PreRequisites via PowerShell


Using PowerShell we can go script our way through the Server
Manager roles and features.
Demo
Add in Roles and Features in PowerShell
required by MIM
Demo
Add MIM accounts to Local Security
Policy
Installing SQL Pre-requirements
SQL Prerequisites

SQL Admin
.Net 3.5 .NET 4.5
Account
3.5 by default is not While 4.5 might already
installed and to install it be installed on your This is the SQL admin
you need to add the server always make account to be used
source location. sure. during installation of
SQL
Demo

Create SQL Admin account


Import-Module ServerManager
Install-WindowsFeature NET-Framework-Core,NET-Framework-45-
Core

Install .Net 3.5 and 4.5


To install SQL we need to make sure we install .Net 3.5 on the SQL
server.
Demo

Install in the server features


Install SQL Server
Demo

Install the SQL Server

You might also like