Jaromir Kaspar

Results 39 comments of Jaromir Kaspar

I can create a hash table for management settings. If there will not be any machine specified as management, all these settings can be configured using powershell direct against DC....

how about this? ```Powershell $LabConfig=@{ DomainAdminName='LabAdmin'; AdminPassword='LS1setup!'; Prefix = 'MSLab-' ; DCEdition='4'; Internet=$true ; AdditionalNetworksConfig=@(); VMs=@();mgmtVMs@()} $LabConfig.mgmtVMs+={VMName=DC;ExternalVnicStaticMACAddress=00000000;EnableRDP=$True;EnableIcmpResponse=$true} $LabConfig.mgmtVMs+={VMName=Management;ExternalVnicStaticMACAddress=00000001;EnableRDP=$True;EnableIcmpResponse=$true} ```

or since it's just one VM, we could enable all things like RDP and ping automagically (as I would guess you want to have both enabled) and just say in...

1) Yes, DC is always there 2) Only if internet=$true I would configure MgmtVm=DC; MgmtVmMAC=00000000 ... in case you want DC with custom MAC (and it can be configured -...

@machv well, it sounds better to separate net adapters config. It's true we have now too much happening - VLAN, static IP, vswitchname... You are right! As always :). Nice...

Can you also add optional Name? It's more or less cosmetic change. I never used it in real world... but it would help us identify network adapter from inside of...

@machv @cloudmadlab folks, how's the status? 🙂. Is PR from Vladimír OK?

Hey @Karl-WE, what you can do is to use DSC! It's by default installed on DC and here is an example of labconfig. In zip file you will find example...

I think we can add RDP and Ping options (the same way we do WinRM=$True). I would not add much thought, because idea of this project was to rapidly provide...

I noticed json s updated. @aaronparker would it be possible to release and update powershell module?