powershell Windows 1809 - 安装RSAT
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell Windows 1809 - 安装RSAT相关的知识,希望对你有一定的参考价值。
# Set variables
$registryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU\"
$name = "UseWUServer"
$value = "0"
$service = "wuauserv"
# Reset variables
$resetValue = Get-ItemPropertyValue -Name $name -Path $registryPath
# Set reg value and restart service
Set-ItemProperty -Path $registryPath -Name $name -Value $value -Force | Out-Null
Restart-Service -InputObject $service -Force
# Install RSAT
Get-WindowsCapability -Online | ? Name -like 'RSAT*'| where {$_.State -eq 'NotPresent'} | foreach {Add-WindowsCapability -Online -Name $_.Name}
# Reset reg value and restart service
Set-ItemProperty -Path $registryPath -Name $name -Value $resetValue -Force | Out-Null
Restart-Service -InputObject $service -Force
以上是关于powershell Windows 1809 - 安装RSAT的主要内容,如果未能解决你的问题,请参考以下文章
如何删除 Windows 10 版本 1809 剪贴板历史记录?
如何在 UWP 应用(C# 或 WinJS)中获取 Windows 10 版本(例如 1809、1903、1909、...)?
技巧Windows 10 1809无法接收1903解决方法
windows 10 1809 语言包/ADK/SDK/WDK ISO
Installing OpenSSH from the Settings UI on Windows Server 2019 or Windows 10 1809
Win7 Windows powershell