使用 PowerShell 脚本安装 SCCM 分发点

这篇文章向您介绍了一个脚本,该脚本可帮助您使用 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。

使用 PowerShell 脚本安装 SCCM 分发点

声明:所有白马号原创内容,未经允许禁止任何网站及个人转载、采集等一切非法引用。本站已启用原创保护,有法律保护作用,否则白马号保留一切追究的权利。发布者:白马号,转转请注明出处:https://www.bmhysw.com/article/5929.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
白马号白马号

相关推荐

  • 电脑一般用几年换一次(办公用电脑6 7年了该换了吗)

    大纲: 介绍电脑寿命的概念 影响电脑寿命的因素 建议的电脑更新周期 如何延长电脑使用寿命 办公用电脑的更新周期建议 结论 介绍电脑寿命的概念 电脑寿命是指电脑使用过程中可以正常工作的时间。不同的电脑品牌和型号、使用场景和使用方式都会影响电脑的寿命。 影响电脑寿命的因素 影响电脑寿命的因素包括: 使用环境:温度、湿度、灰尘等环境因素都会影响电脑的寿命。 使用频…

    2023-05-06
    00
  • Linux系统如何删除gnome panel上的图标?

    Linux系统如何删除gnome panel上的图标? 了解gnome panel 删除gnome panel上的图标 总结 了解gnome panel 在Linux系统中,gnome panel是一个常见的桌面管理器,它可以让用户方便地访问和管理应用程序、文件夹等。gnome panel通常位于屏幕的顶部或底部,包含了一些默认的应用程序图标,例如浏览器、文…

    2023-06-29
    00
  • win7或win10电脑上没有usb驱动怎么安装(怎么安装usb驱动程序)

    win7安装原生USB3.0驱动方法 原生Win7系统不包含USB3.0的驱动,所以无法使用USB3.0的U盘在USB3.0的设备上引导,且安装完系统后还需要重新安装USB3.0驱动。 解决方案: 请注意:请选择对应系统的文件下载运行。 Win7-USB3.0-creator-V3.zip – 用于 Admin Windows8.1 或 Wind…

    2022-04-01 投稿
    00
  • Win10修改通知消息显示时间的方法

    Win10修改通知消息显示时间的方法 为什么要修改通知消息显示时间? 如何修改通知消息显示时间? 修改后的效果如何? 为什么要修改通知消息显示时间? 在Win10中,每当有新的通知消息出现时,它们会在屏幕的右下角以气泡形式弹出。通常情况下,这些通知消息会在几秒钟后自动消失,但有时这个时间太短,导致用户无法及时查看通知内容。因此,为了方便用户查看通知内容,有时…

    2023-07-24
    00
  • Win10系统笔记本电脑卡住不动怎么办?Win10电脑桌面卡死了怎么解决?

    Win10系统笔记本电脑卡住不动怎么办?Win10电脑桌面卡死了怎么解决? 可能的原因 解决方法 预防措施 可能的原因 Win10笔记本电脑系统卡住不动或桌面卡死可能有以下几个原因: 电脑配置低,无法承载过多的任务和程序。 电脑中毒或受到恶意软件的攻击。 电脑系统文件损坏。 电脑硬件故障。 解决方法 针对不同的原因,可以采取以下解决方法: 电脑配置低: 关闭…

    2023-08-30
    00

联系我们

QQ:183718318

在线咨询: QQ交谈

邮件:183718318@qq.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信