Difference between revisions of "Initial configuration"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "<ref>https://blogs.technet.microsoft.com/chadcox/2016/10/25/chads-quick-notes-installing-a-domain-controller-with-server-2016-core</ref>") |
Michael.mast (talk | contribs) |
||
Line 1: | Line 1: | ||
+ | ==After installation== | ||
<ref>https://blogs.technet.microsoft.com/chadcox/2016/10/25/chads-quick-notes-installing-a-domain-controller-with-server-2016-core</ref> | <ref>https://blogs.technet.microsoft.com/chadcox/2016/10/25/chads-quick-notes-installing-a-domain-controller-with-server-2016-core</ref> | ||
+ | ==Copy Files for whatever reason== | ||
+ | <ref>https://msdn.microsoft.com/en-us/library/mt708806(v=vs.85).aspx</ref>Using WinRM and Powershell sessions seems to be the easiest method for this. | ||
+ | <pre> | ||
+ | $session=get-pssession | ||
+ | copy-item -tosession $session -path c:\local\path -destination c:\remote\path -recurse | ||
+ | </pre> | ||
+ | ==Configure Firewall== | ||
+ | <ref>https://technet.microsoft.com/library/hh831755.aspx</re> | ||
+ | <pre> | ||
+ | New-NetFirewallRule -DisplayName “Allow Inbound Telnet” -Direction Inbound -Program %SystemRoot%\System32\tlntsvr.exe -RemoteAddress LocalSubnet -Action Allow | ||
+ | </pre> |
Revision as of 13:51, 19 June 2017
After installation
Copy Files for whatever reason
[2]Using WinRM and Powershell sessions seems to be the easiest method for this.
$session=get-pssession copy-item -tosession $session -path c:\local\path -destination c:\remote\path -recurse
Configure Firewall
<ref>https://technet.microsoft.com/library/hh831755.aspx</re>
New-NetFirewallRule -DisplayName “Allow Inbound Telnet” -Direction Inbound -Program %SystemRoot%\System32\tlntsvr.exe -RemoteAddress LocalSubnet -Action Allow