SCCM System Center Configuration Manager CB 2016

Course

Online

£ 15 VAT inc.

Description

  • Type

    Course

  • Methodology

    Online

  • Start date

    Different dates available

El curso también ayuda a profesionales de TI a alcanzar la calificación de profesional certificado de Microsoft® en Configuration Manager CURRENT BRANCH (Última versión liberada). Aprenderás SCCM de una forma entretenida, practica y eficaz.Tras completar el curso de Configuration manager CURRENT BRANCH (Última versión), necesario para la preparación de la certificación oficial de Microsoft.

Facilities

Location

Start date

Online

Start date

Different dates availableEnrolment now open

About this course

Instalación y configuración del entorno para poder desplegar Configuration manager CB
Instalación de SCCM
Configuración y gestión de instalación de sistemas operativos de manera desatendida
Despliegue de aplicaciones de manera desatendida
Poder interpretar logs para aumentar tu capacidad y skills en troubleshooting
Desplegar una jeraquía de SCCM como Central Administration Site, Primary Site o Sencundary Site
Configuración y gestión de instalación de aplicaciones y paquetes de manera desatendida
Configuración y gestión de instalación de actualizaciones de software de manera desatendida
Administración de drivers y paquetes de drivers
Configuración de configuraciones y requisitos de seguridad mediante la creación de Baselines
Administración de Endpoint protection
Generación de reportes
Inventariado de Hardware y software centralizado
Medición del uso de software en tu infrastructura
Administrar los accesos y permisos en SCCM
Administrar una jerarquía de SCCM
Muchas cosas más!!

Questions & Answers

Add your question

Our advisors and other users will be able to reply to you

Who would you like to address this question to?

Fill in your details to get a reply

We will only publish your name and question

Reviews

This centre's achievements

2021

All courses are up to date

The average rating is higher than 3.7

More than 50 reviews in the last 12 months

This centre has featured on Emagister for 4 years

Subjects

  • Install
  • TCP
  • IP
  • CGI
  • Web Server
  • Web
  • ASP
  • Browsing
  • Firewall
  • Protocol
  • Database training
  • SQL
  • Database
  • ASP training
  • Server
  • Windows
  • ASP net training

Course programme

Presentación del curso 3 lectures 25:59 Presentación del curso Introducción Introducción PPT Presentación del curso 3 lectures 25:59 Presentación del curso Introducción Introducción PPT Presentación del curso Presentación del curso Presentación del curso Presentación del curso Introducción Introducción Introducción Introducción Introducción PPT Introducción PPT Introducción PPT Introducción PPT Instalación 10 lectures 01:28:47 Preparación del Entorno Preparación de la infrastructura Pre-Requisitos Instalando el entorno Script Instalación de roles y características #Guardarlo con extensión .ps1 y ejecutadlo con privilegios de administrador en PowerShell o copiad y pegadlo en powershell # #Carlos Melantuche Get-Module servermanager Install-WindowsFeature BITS,BITS-IIS-Ext,BITS-Compact-Server, Web-Server, Web-WebServer, Web-Common-Http, Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors, Web-Static-Content, Web-Http-Redirect,Web-App-Dev,Web-Net-Ext,Web-Net-Ext45,Web-ASP,Web-Asp-Net,Web-Asp-Net45,Web-CGI,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Custom-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http-Tracing,Web-Performance,Web-Stat-Compression,Web-Security,Web-Filtering,Web-Basic-Auth,Web-IP-Security,Web-Url-Auth,Web-Windows-Auth,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase,Web-Lgcy-Mgmt-Console,Web-Lgcy-Scripting,Web-WMI,Web-Scripting-Tools,Web-Mgmt-Service, RDC, web-dyn-compression, NET-Framework-Core, NET-Framework-45-Features, NET-WCF-TCP-PortSharing45, NET-WCF-Services45, RSAT-Bits-Server Install-WindowsFeature -Name WDS -ComputerName SCCM -IncludeManagementTools #En la línea de abajo, d es mi unidad de CD, cambiadlo por la unidad que os corresponda Install-WindowsFeature NET-Framework-Features -source d:\sources\sxs Script para habilitar los puertos en el Firewall #Guardad este archivo con el nombre que deséis y con extensión .BAT # #Carlos Melantuche @echo ========= Puertos SQL =================== @echo Enabling SQLServer default instance port 1433 netsh advfirewall firewall add rule name="SQL Server" dir=in action=allow protocol=TCP localport=1433 @echo Enabling Dedicated Admin Connection port 1434 netsh advfirewall firewall add rule name="SQL Admin Connection" dir=in action=allow protocol=TCP localport=1434 @echo Enabling conventional SQL Server Service Broker port 4022 netsh advfirewall firewall add rule name="SQL Service Broker" dir=in action=allow protocol=TCP localport=4022 @echo Enabling Transact-SQL Debugger/RPC port 135 netsh advfirewall firewall add rule name="SQL Debugger/RPC" dir=in action=allow protocol=TCP localport=135 @echo ========= Puertos Análisis de servicios ============== @echo Enabling SSAS Default Instance port 2383 netsh advfirewall firewall add rule name="Analysis Services" dir=in action=allow protocol=TCP localport=2383 @echo Enabling SQL Server Browser Service port 2382 netsh advfirewall firewall add rule name="SQL Browser" dir=in action=allow protocol=TCP localport=2382 @echo ========= Misc Applicaciones ============== @echo Enabling HTTP port 80 netsh advfirewall firewall add rule name="HTTP" dir=in action=allow protocol=TCP localport=80 @echo Enabling SSL port 443 netsh advfirewall firewall add rule name="SSL" dir=in action=allow protocol=TCP localport=443 @echo Enabling port for SQL Server Browser Service's 'Browse' Button netsh advfirewall firewall add rule name="SQL Browser" dir=in action=allow protocol=TCP localport=1434 @echo Allowing Ping command netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow Instalación de SQL Server Script Creación de la Base de datos # #Carlos Melantuche #Script para crear la base de datos en SQL Server USE master CREATE DATABASE CM_XXX ON ( NAME = CM_XXX_1,FILENAME = 'Y:\SCCMDB\CM_XXX_1.mdf',SIZE = 7560, MAXSIZE = Unlimited, FILEGROWTH = 2495) LOG ON ( NAME = XXX_log, FILENAME = 'W:\SCCMLogs\CM_XXX.ldf', SIZE = 4990, MAXSIZE = 4990, FILEGROWTH = 512) ALTER DATABASE CM_XXX ADD FILE ( NAME = CM_XXX_2, FILENAME = 'Y:\SCCMDB\CM_XXX_2.mdf', SIZE = 7560, MAXSIZE = Unlimited, FILEGROWTH = 2495) #Nota1: Sustituid los valores XXX por el código de vuestro sitio de SCCM #Nota2: Sustituid el valor de Y por la unidad de disco en el que hayáis definido para alojar la Base de Datos #Nota3: Sustituid el valor de W por la unidad de dosco en el que hayáis definido para alojar los logs Base de Datos Instalación SCCM Consola de administración de SCCM Instalación 10 lectures 01:28:47 Preparación del Entorno Preparación de la infrastructura Pre-Requisitos Instalando el entorno Script Instalación de roles y características #Guardarlo con extensión .ps1 y ejecutadlo con privilegios de administrador en PowerShell o copiad y pegadlo en powershell # #Carlos Melantuche Get-Module servermanager Install-WindowsFeature BITS,BITS-IIS-Ext,BITS-Compact-Server, Web-Server, Web-WebServer, Web-Common-Http, Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors, Web-Static-Content, Web-Http-Redirect,Web-App-Dev,Web-Net-Ext,Web-Net-Ext45,Web-ASP,Web-Asp-Net,Web-Asp-Net45,Web-CGI,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Custom-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http-Tracing,Web-Performance,Web-Stat-Compression,Web-Security,Web-Filtering,Web-Basic-Auth,Web-IP-Security,Web-Url-Auth,Web-Windows-Auth,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase,Web-Lgcy-Mgmt-Console,Web-Lgcy-Scripting,Web-WMI,Web-Scripting-Tools,Web-Mgmt-Service, RDC, web-dyn-compression, NET-Framework-Core, NET-Framework-45-Features, NET-WCF-TCP-PortSharing45, NET-WCF-Services45, RSAT-Bits-Server Install-WindowsFeature -Name WDS -ComputerName SCCM -IncludeManagementTools #En la línea de abajo, d es mi unidad de CD, cambiadlo por la unidad que os corresponda Install-WindowsFeature NET-Framework-Features -source d:\sources\sxs Script para habilitar los puertos en el Firewall #Guardad este archivo con el nombre que deséis y con extensión .BAT # #Carlos Melantuche @echo ========= Puertos SQL =================== @echo Enabling SQLServer default instance port 1433 netsh advfirewall firewall add rule name="SQL Server" dir=in action=allow protocol=TCP localport=1433 @echo Enabling Dedicated Admin Connection port 1434 netsh advfirewall firewall add rule name="SQL Admin Connection" dir=in action=allow protocol=TCP localport=1434 @echo Enabling conventional SQL Server Service Broker port 4022 netsh advfirewall firewall add rule name="SQL Service Broker" dir=in action=allow protocol=TCP localport=4022 @echo Enabling Transact-SQL Debugger/RPC port 135 netsh advfirewall firewall add rule name="SQL Debugger/RPC" dir=in action=allow protocol=TCP localport=135 @echo ========= Puertos Análisis de servicios ============== @echo Enabling SSAS Default Instance port 2383 netsh advfirewall firewall add rule name="Analysis Services" dir=in action=allow protocol=TCP localport=2383 @echo Enabling SQL Server Browser Service port 2382 netsh advfirewall firewall add rule name="SQL Browser" dir=in action=allow protocol=TCP localport=2382 @echo ========= Misc Applicaciones ============== @echo Enabling HTTP port 80 netsh advfirewall firewall add rule name="HTTP" dir=in action=allow protocol=TCP localport=80 @echo Enabling SSL port 443 netsh advfirewall firewall add rule name="SSL" dir=in action=allow protocol=TCP localport=443 @echo Enabling port for SQL Server Browser Service's 'Browse' Button netsh advfirewall firewall add rule name="SQL Browser" dir=in action=allow protocol=TCP localport=1434 @echo Allowing Ping command netsh advfirewall firewall add rule name="ICMP Allow incoming V4 echo request" protocol=icmpv4:8,any dir=in action=allow Instalación de SQL Server Script Creación de la Base de datos # #Carlos Melantuche #Script para crear la base de datos en SQL Server USE master CREATE DATABASE CM_XXX ON ( NAME = CM_XXX_1,FILENAME = 'Y:\SCCMDB\CM_XXX_1.mdf',SIZE = 7560, MAXSIZE = Unlimited, FILEGROWTH = 2495) LOG ON ( NAME = XXX_log, FILENAME = 'W:\SCCMLogs\CM_XXX.ldf', SIZE = 4990, MAXSIZE = 4990, FILEGROWTH = 512) ALTER DATABASE CM_XXX ADD FILE ( NAME = CM_XXX_2, FILENAME = 'Y:\SCCMDB\CM_XXX_2.mdf', SIZE = 7560, MAXSIZE = Unlimited, FILEGROWTH = 2495) #Nota1: Sustituid los valores XXX por el código de vuestro sitio de SCCM #Nota2: Sustituid el valor de Y por la unidad de disco en el que hayáis definido para alojar la Base de Datos #Nota3: Sustituid el valor de W por la unidad de dosco en el que hayáis definido para alojar los logs Base de Datos Instalación SCCM Consola de administración de SCCM Preparación del Entorno Preparación del Entorno Preparación del Entorno Preparación del Entorno Preparación de la infrastructura Preparación de la infrastructura Preparación de la infrastructura Preparación de la infrastructura Pre-Requisitos Pre-Requisitos Pre-Requisitos Pre-Requisitos Instalando el entorno Instalando el entorno Instalando el entorno Instalando el entorno Script Instalación de roles y características #Guardarlo con extensión .ps1 y ejecutadlo con privilegios de administrador en PowerShell o copiad y pegadlo en powershell # #Carlos Melantuche Get-Module servermanager Install-WindowsFeature BITS,BITS-IIS-Ext,BITS-Compact-Server, Web-Server, Web-WebServer, Web-Common-Http, Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors, Web-Static-Content, Web-Http-Redirect,Web-App-Dev,Web-Net-Ext,Web-Net-Ext45,Web-ASP,Web-Asp-Net,Web-Asp-Net45,Web-CGI,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Custom-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http-Tracing,Web-Performance,Web-Stat-Compression,Web-Security,Web-Filtering,Web-Basic-Auth,Web-IP-Security,Web-Url-Auth,Web-Windows-Auth,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase,Web-Lgcy-Mgmt-Console,Web-Lgcy-Scripting,Web-WMI,Web-Scripting-Tools,Web-Mgmt-Service, RDC, web-dyn-compression, NET-Framework-Core, NET-Framework-45-Features, NET-WCF-TCP-PortSharing45, NET-WCF-Services45, RSAT-Bits-Server Install-WindowsFeature -Name WDS -ComputerName SCCM -IncludeManagementTools #En la línea de abajo, d es mi unidad de CD, cambiadlo por la unidad que os corresponda Install-WindowsFeature NET-Framework-Features -source d:\sources\sxs Script Instalación de roles y características #Guardarlo con extensión .ps1 y ejecutadlo con privilegios de administrador en PowerShell o copiad y pegadlo en powershell # #Carlos Melantuche Get-Module servermanager Install-WindowsFeature BITS,BITS-IIS-Ext,BITS-Compact-Server, Web-Server, Web-WebServer, Web-Common-Http, Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors, Web-Static-Content, Web-Http-Redirect,Web-App-Dev,Web-Net-Ext,Web-Net-Ext45,Web-ASP,Web-Asp-Net,Web-Asp-Net45,Web-CGI,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Custom-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http-Tracing,Web-Performance,Web-Stat-Compression,Web-Security,Web-Filtering,Web-Basic-Auth,Web-IP-Security,Web-Url-Auth,Web-Windows-Auth,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase,Web-Lgcy-Mgmt-Console,Web-Lgcy-Scripting,Web-WMI,Web-Scripting-Tools,Web-Mgmt-Service, RDC, web-dyn-compression, NET-Framework-Core, NET-Framework-45-Features, NET-WCF-TCP-PortSharing45, NET-WCF-Services45, RSAT-Bits-Server Install-WindowsFeature -Name WDS -ComputerName SCCM -IncludeManagementTools #En la línea de abajo, d es mi unidad de CD, cambiadlo por la unidad que os corresponda Install-WindowsFeature NET-Framework-Features -source d:\sources\sxs Script Instalación de roles y características #Guardarlo con extensión .ps1 y ejecutadlo con privilegios de administrador en PowerShell o copiad y pegadlo en powershell # #Carlos Melantuche Get-Module servermanager Install-WindowsFeature BITS,BITS-IIS-Ext,BITS-Compact-Server, Web-Server, Web-WebServer, Web-Common-Http, Web-Default-Doc,Web-Dir-Browsing,Web-Http-Errors, Web-Static-Content, Web-Http-Redirect,Web-App-Dev,Web-Net-Ext,Web-Net-Ext45,Web-ASP,Web-Asp-Net,Web-Asp-Net45,Web-CGI,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Health,Web-Http-Logging,Web-Custom-Logging,Web-Log-Libraries,Web-Request-Monitor,Web-Http-Tracing,Web-Performance,Web-Stat-Compression,Web-Security,Web-Filtering,Web-Basic-Auth,Web-IP-Security,Web-Url-Auth,Web-Windows-Auth,Web-Mgmt-Tools,Web-Mgmt-Console,Web-Mgmt-Compat,Web-Metabase,Web-Lgcy-Mgmt-Console,Web-Lgcy-Scripting,Web-WMI,Web-Scripting-Tools,Web-Mgmt-Service, RDC, web-dyn-compression, NET-Framework-Core, NET-Framework-45-Features, NET-WCF-TCP-PortSharing45, NET-WCF-Services45, RSAT-Bits-Server Install-WindowsFeature -Name WDS -ComputerName SCCM -IncludeManagementTools #En la línea de abajo, d es mi unidad de CD, cambiadlo por la unidad que os corresponda Install-WindowsFeature NET-Framework-Features -source d:\sources\sxs Script Instalación de roles y características #Guardarlo con extensión .ps1 y ejecutadlo con privilegios de administrador en PowerShell o copiad y pegadlo en powershell # #Carlos Melantuche Get-Module servermanager .ldf', SIZE = 4990, MAXSIZE = 4990, FILEGROWTH = 512) ALTER DATABASE CM_XXX ADD FILE ( NAME = CM_XXX_2, FILENAME = 'Y:\SCCMDB\CM_XXX_2.mdf', SIZE = 7560, MAXSIZE = Unlimited, FILEGROWTH = 2495) #Nota1: Sustituid los valores XXX por el código de vuestro sitio de SCCM #Nota2: Sustituid el valor de Y por la unidad de disco en el que hayáis definido para alojar la Base de Datos #Nota3: Sustituid el valor de W por la unidad de dosco en el que hayáis definido para alojar los logs Base de Datos # #Carlos Melantuche #Script para crear la base de datos en SQL Server USE master CREATE DATABASE CM_XXX ON ( NAME = CM_XXX_1,FILENAME = 'Y:\SCCMDB\CM_XXX_1.mdf',SIZE = 7560, MAXSIZE = Unlimited, FILEGROWTH = 2495) LOG ON (...

Additional information

No se necesita conocimiento previo ya que en este curso cubrimos todos los aspectos de la instalación, configuración y mantenimiento de una infrastructura de SCCM

SCCM System Center Configuration Manager CB 2016

£ 15 VAT inc.