这篇文章向您介绍了一个脚本,该脚本可帮助您使用 PowerShell 脚本安装 SCCM 分发点。 几天以来,我一直在编写这个脚本。 最后,我得到了它的工作,并很高兴与大家分享。
创建 分发点 并不是一项艰巨的任务,您可以使用向导来完成。 但是使用 PowerShell 脚本,这可以更轻松、更安静地完成。 此外,此脚本允许您启用 PXE、指定密码以及在分发点上启用多播。
我将解释此脚本的作用,该脚本可在 此处 。 除此之外,我还粘贴了下面的脚本,您也可以复制并保存它。 确保您正在运行 SCCM 2012 R2 SP1 及更高版本以使该脚本正常工作。 我已经在 Configuration Manager 当前分支版本 1511 、 1606 、 1610 。
当我运行旧脚本时,当前分支的最新版本显示以下警告。 我已更新脚本,您不应看到以下警告消息。
警告:使用 Set-CMDistributionPoint cmdlet 创建或修改多播服务点角色已被弃用,可能会在未来版本中删除。 Set-CMM 应改为使用
使用 PowerShell 脚本安装 SCCM 分发点
以下脚本允许您使用 PowerShell cmdlet 安装 SCCM 分发点。 还要确保 更新 。 虽然这不是一个复杂的脚本,但让我强调一下重要的命令。
最值得注意的是,在使用此脚本之前,您需要指定以下值:-
- $SiteCode – 提供站点代码(3 个字母数字字符)。
- $DistributionPoint – 指定要安装 DP 角色的服务器 FQDN。
- $PXEpass – 指定 PXE 密码。
.SYNOPSIS
Install Distribution Point role using PowerShell Script
.DESCRIPTION
This scripts lets you install the Distribution Point role on a server, Enable PXE, PXE password and Multicast options.
.PARAMETER DistributionPoint
This the server name where you would be installing Distribution Point role.
.PARAMETER SiteCode
This is the 3 letter site code.
.PARAMETER PXEpass
This is the PXE password.
.NOTES
Version: 2.0
Published Date: 08-December-2016
Updated Date: 18-August-2019
Author: Prajwal Desai
Website: https://www.prajwaldesai.com
Post Link: https://www.prajwaldesai.com/install-sccm-distribution-point-using-powershell-script/
#>
#Load the Configuration Manager Module
import-module ($Env:SMS_ADMIN_UI_PATH.Substring(0,$Env:SMS_ADMIN_UI_PATH.Length-5) + 'ConfigurationManager.psd1')
$Drive = Get-PSDrive -PSProvider CMSite
CD "$($Drive):"
#Site Code and Distribution Point Server Information
$SiteCode = 'IND'
$DistributionPoint = 'CORPSCCM.PRAJWAL.LOCAL'
#Install Site System Server
New-CMSiteSystemServer -ServerName $DistributionPoint -SiteCode $SiteCode
#Optional - Install SCCM IIS Base components
#dism.exe /online /norestart /enable-feature /ignorecheck /featurename:"IIS-WebServerRole" /featurename:"IIS-WebServer" /featurename:"IIS-CommonHttpFeatures" /featurename:"IIS-StaticContent" /featurename:"IIS-DefaultDocument" /featurename:"IIS-DirectoryBrowsing" /featurename:"IIS-HttpErrors" /featurename:"IIS-HttpRedirect" /featurename:"IIS-WebServerManagementTools" /featurename:"IIS-IIS6ManagementCompatibility" /featurename:"IIS-Metabase" /featurename:"IIS-WindowsAuthentication" /featurename:"IIS-WMICompatibility" /featurename:"IIS-ISAPIExtensions" /featurename:"IIS-ManagementScriptingTools" /featurename:"MSRDC-Infrastructure" /featurename:"IIS-ManagementService"
#Install Distribution Point Role
write-host "The Distribution Point Role is being Installed on $DistributionPoint"
Add-CMDistributionPoint -CertificateExpirationTimeUtc "October 10, 2025 10:10:00 PM" -SiteCode $SiteCode -SiteSystemServerName $DistributionPoint -MinimumFreeSpaceMB 1024 -ClientConnectionType 'Intranet' -PrimaryContentLibraryLocation Automatic -PrimaryPackageShareLocation Automatic -SecondaryContentLibraryLocation Automatic -SecondaryPackageShareLocation Automatic
#Define PXE Password
$PXEpass = convertto-securestring -string "password" -asplaintext -force
#Enable PXE, Unknown Computer Support, Client Communication Method
Set-CMDistributionPoint -SiteSystemServerName $DistributionPoint -SiteCode $SiteCode -EnablePxe $True -PXEpassword $PXEpass -PxeServerResponseDelaySeconds 0 -AllowPxeResponse $True -EnableUnknownComputerSupport $True -UserDeviceAffinity "AllowWithAutomaticApproval" -EnableContentValidation $True -ClientCommunicationType HTTP
#Enable Multicast Feature
Add-CMMulticastServicePoint -SiteSystemServerName $DistributionPoint -SiteCode $SiteCode
脚本说明
首先我们导入配置管理器模块。 要导入配置管理器模块,您必须指定配置管理器模块的路径。 这是使用 import-module 命令完成的。
在第二步中,我们安装站点系统服务器。 在安装分发点角色之前,需要执行此步骤。 要添加新的站点系统服务器,我们使用 New-CMSiteSystemServer 命令。
下一步是可选的。 该命令使用 dism 方法安装 DP 所需的 IIS 基本组件。 由于这是可选的,您可以选择跳过它,因为它是由 SCCM 完成的。
在下一步中,我们使用 Add-CMDistributionPoint cmdlet 安装 DP 角色。 此 cmdlet 在站点系统服务器上创建分发点。 然而,这个 cmdlet 有很多我们可以提供的 参数 。 因此,我们使用此 cmdlet 指定的参数是:-
- CertificateExpirationTimeUtc – 证书过期的日期和时间。
- ClientConnectionType – Internet / InternetandIntranet / Intranet。
- PrimaryContentLibraryLocation、PrimaryPackageShareLocation – 设置为自动。
- SecondaryContentLibraryLocation、SecondaryPackageShareLocation – 设置为自动。
- MinimumFreeSpaceMB – 在 SCCM 选择不同的驱动器并继续复制到该驱动器之前,驱动器上的可用大小(以 MB 为单位)。
在下一步中,我们指定 PXE 密码。 我们使用 convertto-secure string 将纯文本转换为安全字符串,而不是保持纯文本。 启用 PXE、未知计算机支持、客户端通信方法 Set-CMDistributionPoint cmdlet
的最后一步中 Add-CMMulticastServicePoint ,我们在分发点上启用多播功能。
最后要运行此脚本,请启动 Windows PowerShell ISE。 单击文件 > 打开 > 浏览并找到脚本。 还要指定站点代码、DP、PXE 通行证,您就可以安装 DP。
声明:所有白马号原创内容,未经允许禁止任何网站及个人转载、采集等一切非法引用。本站已启用原创保护,有法律保护作用,否则白马号保留一切追究的权利。发布者:白马号,转转请注明出处:https://www.bmhysw.com/article/5929.html