Can K1000 deploy RSAT packages?
Specifically, I need to install "RSAT: Active Directory Domain Services and Lightweight Directory Services Tools" on a number of computers. Is there a way to do this with Kace now that it's part of the optional Windows features instead of an .exe?
Answers (1)
@TheITNoob is the bomb. I created an online kscript, calling the powershell script with the line he recommended. I think I'm in business!
Top Answer
Using this powershell command you can view the RSAT tools that can be installed & their install status
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property Name, StateTo install the "RSAT: Active Directory Domain Services and Lightweight Directory Services Tools" package using a powershell script on those selected computers,
use the following command:
Once the install is completed you should be able to access the tools, no restart needed.