Closed adembarut closed 1 year ago
The idea is - you don't have to run Testimo on DC but on JUMP SERVER in Tier 0. Testimo doesn't require and even discourages using it on DC. Bu replacing it with something more on AD side would help us drop DHCP requirement I guess.
Hi,
In our environment Domain Controllers does not installed DHCP Role so DHCP powershell modules not installed. Get-WinADDHCP gives CommandNotFoundException.
We write another powershell function to do that. So we don't need to install the Features> Remote Server Administration Tools > DHCP Server Tools in order to run testimo. Here is the code, add in the ADEssentials.psm1 file
function Get-DhcpServer{ [cmdletBinding()] param(
The domain controller to use for the search. If not provided, the function will use the Get-ADDomainController cmdlet to find the domain controller in the closest site.
}
function Get-WinADDHCP { [cmdletBinding()] param(
}