Difference between revisions of "Server 2016 Core Print Services"
Jump to navigation
Jump to search
Michael.mast (talk | contribs) (Created page with "==Purpose== To configure a print server using minimal resources. Something that is Windows friendly. ==Install services== <ref>https://4sysops.com/archives/install-and-manage-...") |
Michael.mast (talk | contribs) |
||
Line 8: | Line 8: | ||
<ref>https://kb.iu.edu/d/awso</ref> | <ref>https://kb.iu.edu/d/awso</ref> | ||
<pre> | <pre> | ||
+ | Rename-Computer -NewName "PRINTSERVER" | ||
+ | Restart-Computer | ||
+ | Add-Computer -DomainName "MyDomainName.hr" | ||
+ | Restart-Computer | ||
+ | Install-WindowsFeature -Name Print-Server | ||
+ | set-service -name spooler -startuptype automatic | ||
+ | start-service -name spooler | ||
+ | Restart-Computer | ||
+ | </pre> | ||
+ | |||
==1== | ==1== |
Latest revision as of 13:29, 16 November 2018
Purpose
To configure a print server using minimal resources. Something that is Windows friendly.
Install services
[1] This didn't work for me, trying something else.
Install-WindowsFeature Print-Services
Rename-Computer -NewName "PRINTSERVER" Restart-Computer Add-Computer -DomainName "MyDomainName.hr" Restart-Computer Install-WindowsFeature -Name Print-Server set-service -name spooler -startuptype automatic start-service -name spooler Restart-Computer