Home > Microsoft, Server 2008, Uncategorized > Installing Windows Server 2008, as a Dedicated Print Server

Installing Windows Server 2008, as a Dedicated Print Server

October 7th, 2007

This is a quick and dirty run down of how to install Windows Server 2008 (longhorn) as a dedicated print server using the new Core Installation options.

Installion

  1. Insert the windows server 2008 and start the install process
  2. Follow the on screen instructions to complete the setup
  3. To set the administrative password run the following command in the console window:
    1. net user administrator *
  4. To set a static IP address run these command:
    1. netsh interface ipv4 show interfaces (make a note of the Idx number for the network adapter)
    2. netsh interface ipv4 set address name=”<idxnum>” source=static address=<staticip> mask=<subnetmask> gateway=<defaulgateway> (sets the IP, subnet, and default gateway),
  5. To make the IP address dynamic run this command instead:

    1. netsh interface ipv4 set address nam=”<idxnum>” source=DHCP
  6. Add DNS Servers:
    1. netsh interface ipv4 add dnsserver name=”<idxnum>” address=<dnsip> index=1 (sets DNS server)
    2. to add addition dns server redo step 3 incrementing the index= number each time
  7. To rename the computer:
    1. netdom renamecomputer <computername> /newname:<newcomputername>
  8. To join the server to the domain:
    1. netdom join <computername> /domain:<domainname> /userd:<username> /passwordd:*
  9. To activate the server:
    1. slmgr.vbs -ato
    2. to actiavte over phone, cscript windows\system32\slmgr.vbs <servername> <username> <password>:-ato
  10. Enable remote mmc management from anywhere:
    1. netsh advfirewall firewall set rule group=”Remote Administration” new enable=yes
  11. Manage the firewall remotely:
    1. netsh advfirewall set currentprofile settings remotemanagement enable
  12. Installing the print server role:
    1. start /w ocsetup Printing-ServerCore-Role
    2. start /w ocsetup Printing-LPDPrintService

This installs the print server role. To add printer you need to start a new MMC on a vista machine or another windows server 2008 which has a GUI, and add the printer management snap-in. From there you connect to the print server via IP address and install print drivers as you normally would.

One issue i found was that if the UAC was enabled on the management machine (vista) I was unable to install any printers or drivers. Disable this if you have issues.

Related Articles:

This posting is provided “AS IS” with no warranties, and confers no rights.

Blogged By Jason Neurohr

Share or Bookmark This Post
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • LinkedIn
  • Technorati
  • TwitThis
  • Live
  • Identi.ca
  • PDF
  • Ping.fm

Microsoft, Server 2008, Uncategorized

  1. No comments yet.
  1. No trackbacks yet.