Remove VLAN and IP configuration in Windows 2019 Core

in this example I will remove VLAN 419 and associated IP addressing using Powershell This is a follow on from http://www.jordansphere.co.uk/add-lacp-interface-and-vlan-via-cli-in-windows-2019-core/ Remove IP addressing: Remove-NetIPAddress -IPAddress 10.9.34.196 -PrefixLength 26 -InterfaceAlias “Storage – VLAN 419” Remove VLAN: Remove-NetLbfoTeamNic -Team “Storage” -vlanid 419

Promote Secondary Domain Controller via Powershell

In this environment there is a Windows Core 2019 DC installation. To promote a server to a domain controller use the following steps: Run sconfig to give the server a Name, IP address and DNS servers in Powershell Install-WindowsFeature AD-Domain-Services -IncludeManagementTools Install-ADDSDomainController -InstallDns -Credential (Get-Credential jordansphere\administrator) -DomainName jordansphere.co.uk Note: You will then be prompted for Read More…

Allow COM+ to Windows Firewall Core 2019

I got the following error when trying to manage Server Core from another machine. COM+ Network Access (DCOM-In) All rules in the Remote Event Log Management Group Resolution PS C:\Users\Administrator> Set-NetFirewallRule -Name “RemoteEventLogSvc-In-TCP” -Enabled True -Profile DomainPS C:\Users\Administrator> Set-NetFirewallRule -Name “RemoteEventLogSvc-NP-In-TCP” -Enabled True -Profile DomainPS C:\Users\Administrator> Set-NetFirewallRule -Name “RemoteEventLogSvc-RPCSS-In-TCP” -Enabled True -Profile DomainPS C:\Users\Administrator> Set-NetFirewallRule Read More…

Install Child Domain on Windows 2019 Core

In this example I will be adding a child domain called mgmt.jordansphere.co.uk to the main domain jordansphere.co.uk Install Windows (not desktop experience) From the CLI prompt run sconfig You should then be able to rename the computer and give it an IP address. Exit to CLi prompt Go into powershell Install-WindowsFeature AD-domain-services Install-ADDSDomain -ParentDomainName jordansphere.co.uk Read More…

Zabbix Agent Not Starting with Error 1067

Problem A newly installed zabbix agent (4.4.x) was installed on a Windows 2016 server using an automated script. The error was showing   Windows could not start the Zabbix Agent service on Local Computer Error 1067: The process terminated unexpectedly   Troubleshooting i tried to run the command in the foreground    "C:\Progra~1\Zabbix-Agent\zabbix_agentd.exe" -f –config "C:\Progra~1\Zabbix-Agent\zabbix_agentd.conf" And Read More…