Most of the cases it would also be a new domain controller for a new forest. In most cases, you would need to update the flag as below.
Open Regedit
Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Netlogon\Parameters
Set SysVolReady from 0 to 1
Close Regedit
This will create the SYSVOL share. If the NETLOGON share is not created you would need to create the folder scripts in C:\Windows\SYSVOL\domain. When this is done, restart the NETLOGON service.
This is the easy part. In some cases, although the NETLOGON and SYSVOL shares are working, no group policies or scripts are being replicated using the DFS or DFRS.
We can verify the replication by running the following command.
For /f %i IN ('dsquery server -o rdn') do @Echo %i && @wmic /node:"%i" /namespace:\root\microsoftdfs path dfsrreplicatedfolderinfo WHERE replicatedfoldername='SYSVOL share' get replicationgroupname,replicatedfoldername,state
The states should translate as below
reference: http://www.noelpulis.com/fix-missing-sysvol-and-netlogon-after-domain-controller-promotion/
Hope this information can help you
Best wishes
Vicky