hi
thank for your help. Where can I get Active Directory PowerShell module? Rsat is currently installed, but I don't know how to manage it via powershel.Do you have detailed information about this? Can you help me?
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello dear friends There is an important question for me. The server we use in the company I currently work for is samba active directory. We installed the rsat tool on our windows computers to manage this system. but we can only manage users and groups. My goal is to be able to access this system with Powershell. Interfering with the server using Powershell I need your help for this, is it possible to connect to the server and perform transactions with powershel?
thanks :)
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
hi
thank for your help. Where can I get Active Directory PowerShell module? Rsat is currently installed, but I don't know how to manage it via powershel.Do you have detailed information about this? Can you help me?
hi
thanks for your help. ı do this poweshell command, but rsat has already been was installed. My goal is to manage samba dc with powershel.
Hi FURKAN KURT,
Thank you for reaching out to the Microsoft Community Forum.
I'm here to help with your problems.
Can you try to execute the following command in administrator mode?
You can see the list of available functions.
Get-WindowsCapability -Name RSAT* -Online | Select-Object -Property DisplayName, State DisplayName
To install them all together, use the following command.
Get-WindowsCapability -Name RSAT* -Online | Add-WindowsCapability –Online
If you want to install the required tools, execute the following command like that.
Get-WindowsCapability -Name RSAT* -Online | where State -EQ NotPresent | Add-WindowsCapability –Online
If you have any questions, feel free to ask me.
Best regards,
Yu
Hi FURKAN KURT,
Thank you for posting in the Microsoft Community Forum.
Yes, it's possible to manage a Samba Active Directory domain using PowerShell. You can utilize the Active Directory PowerShell module to perform various administrative tasks on your Samba AD domain.
Best regards
Neuvi Jiang