KBE Powershell Modules
Hi,
We are trying to use the latest version of the KBE Manipulator with Powershell.
Is there a way in which it is possible to inject modules into the KBE?
For example, we are trying to use the ActiveDirectory module so that it is possible to create new users etc.
Furthermore is there any available documentation for using Powershell within the KBE?
Thanks,
Phil
0 Comments
[ + ] Show comments
Answers (2)
Please log in to answer
Posted by:
cserrins
9 years ago
Posted by:
ronfalkoff
9 years ago
You may need to run:
Import-Module Activedirectory
This will add the Active Directory Module to the Local machine to run those commands to get it on that machine at the beginning of your PowerShell Script as it is a new machine.
The other option is to run it as a remote session on another machine by using:
Enter-PSSession -ComputerName (Domain Controller) or other system with the Active Directory PowerShell module loaded on it:
Hope that helps,
Ron