Archive for June, 2009

06.05.09

Windows 2008 Performance Tuning Guide

Posted in OS, SBS2003 at 12:41 am by webmaster

While we are in the era of Windows 2008 (and SBS 2008) we need to consider new operating system tuning guidelines.

For example most partitions are aligned on 1 MByte boundries.  To see what your boundries are use:

 wmic partition get Index, Name, StartingOffset

 

06.04.09

Moving Public Folders

Posted in OS, win2003, powershell at 11:01 am by webmaster

I have come accross the need to move public folder content from one machine to another (This is not a SBS environment.)

There are generally two ways in the Exchange 2007 era you can do this.  If both machines are in the same forest you can use Powershell.  If the machines are not in the same forest (not connected - migration scenerio) you can use Outlook.

Powershell

MoveAllReplicas.ps1 -Server -NewServer

How to Move Public Folder Content from one Public Folder Database to Another Public Folder Database

 

Outlook Method

  1. Use an account on Office Outlook 2003 or 2007 client computer that has administrative rights to log on to a mailbox on the Exchange Server 2007.
  2. In Outlook, on the File menu, click Import And Export. If the menu item is not available, hover your pointer over the chevrons at the bottom of the menu, and then click Import and Export.
  3. Click Export To File, and then click Next.
  4. Click Personal Folder File (.pst) , and then click Next. Click the public folder, check the option “Include Subfolders” and then click Next.
  5. Click the Browse button, and then select the location to save the .pst file.
  6. In the File Name box, type a descriptive file name for the .pst file, and then click OK.
  7. Click Finish.
  8. Log off the Outlook client.
  9. From the Outlook client, use an account that has administrative rights to log on to a mailbox that is homed on the Exchange 2003 computer.
  10. In Outlook, on the File menu, click “Data File Management”
  11. Click Add button, choose “Office Outlook Personal Folder File (.pst)” and click Ok
  12. On the open window, navigate to the PST we just exported.
  13. Choose it and click OK
  14. Then, check the added folder in Outlook.
  15. Drag the folders from the Personal Folders folder to All Public Folders in the Outlook folder list.

06.03.09

Microsoft resources on Antivirus Scanning on SBS2008

Posted in OS, sbs2008 at 12:58 pm by webmaster

This is a collection of links that describe Microsoft’s information on AntiVirus scanning in the SBS2008 era.

For Windows 2008, DNS, DHCP

Virus scanning recommendations for computers that are running Windows Server 2008, Windows Server 2003, Windows 2000, Windows XP, or Windows Vista

http://support.microsoft.com/?id=822158
 
 

For Exchange 2007

File-Level Antivirus Scanning on Exchange 2007

http://technet.microsoft.com/en-us/library/bb332342.aspx
 

For SQL 2005

Guidelines for choosing antivirus software to run on the computers that are running SQL Server

http://support.microsoft.com/kb/309422
 

For SharePoint 3.0

Microsoft’s Position on Antivirus Solutions for Microsoft SharePoint Portal Server

http://support.microsoft.com/kb/322941
 

For IIS 7 server, exclude the following folders:
 

  1. %systemroot%\system32\inetsrv folder
  2. Files that have the .log extension

 Antivirus software may cause IIS to stop unexpectedly

http://support.microsoft.com/kb/821749
 

For WSUS Server
Drive:\MSSQL$WSUS

Drive:\WSUS

(where Drive: is the drive letter where you installed Windows Software Update Services)

06.02.09

BackupExec 10D and above on SBS 2003

Posted in OS, sbs2008 at 5:58 pm by webmaster

At all my Backup Exec 10D and above installs on SBS 2003 I am now creating two separate backup jobs to work around the issue of a compatibility problem when backuping up Exchange and System State at the same time.

  1. The first backup job with AOFO which backs up everything but exchange
  2. The second backup job without the AOFO on scheduled 30 minutes later, set to append to the tape that backs up Exchange

Note the following version is the most recent version of BackupExec available both released may 15, 2009:

 

BEWS_12.5.2213A_32BIT_VERSION.zip    12.5.2213A  557,764,568
BEWS_12.5.2213A_64BIT_VERSION.zip    12.5.2213A  597,707,883

Symatec article on the issue.

Consult the Administrators Guide and all the Best Practices Guides for all of the gory details.  I found the Advanced Open File Option Best Practice Guide especially helpfull.

 

06.01.09

Isolated Sharepoint site on SBS2008

Posted in OS, sbs2008 at 7:30 pm by webmaster

There are many applications that call for having the ability to have users share information in Sharepoint both internally and externally to organizations.  It is very easy to setup this ability within Small Business Server 2008 and to provide isolation from the rest of the network resources as well.  (The same concept can also be done in SBS2003 but it is done a bit differently)

The first step is to ensure you are currently licensed for the number of users you are going to be using. 

The second step is create your users and to tweak them so they do not have access to your other resources:

  1. Create new user using SBS Console
    1. Users and Groups
    2. Add a new User
      1. First name
      2. Last name
      3. Username
      4. Email Address (I add an external contact and forward later on)
      5. Standard User
    3. Type Strong Password
    4. Add User
    5. Do not allocate a computer just click finish
  2. Edit Account Properties
    1. Highlight User
    2. Edit User Account Properties
    3. Remove “Disable User can access RWW” on Remote Access menu
      1. Groups
      2. Remove “Sharepoint Membership Group” on Groups menu
      3. Remove OWA from websites menu

         The third step is to create a new Sharepoint site with unique permissions.

        1. Login as Administrator

        2. Navigate to companyweb in browser

        3. Create a new Sharepoint Site with limited rights

          1. Companyweb  –> Site Actions –> Create
          2. Sites and Workspace
            1. Name                                    mysite
            2. Description                           Mysite Description

            3. URL                                        https://remote.DN:987/mysite

            4. Document Workspace

            5. Permissions                          Use Unique Permmisions

            6. Nav                                        No        

            7.                                               Yes

            8. Nav inheritance                     No

          3. I prefer to create a seperate visitors groups so the site can be totally independant of all other sites/settings
            1. Visitors                                  Mysite Visitors
            2. Members                               MysiteMembers
            3. Owners                                 MysiteOwners
          4. Access the site https://remote.DN:987/mysite

        That should do it.