BlackBerry Enterprise Server Express for Free SBS2008

BlackBerry Enterprise Server Express for Free

http://na.blackberry.com/eng/services/business/server/express/

Connect two people via BlackBerry® Smartphone’s and ideas get bigger.
Progress happens faster. Answers get smarter. So imagine what happens when
you give a business the freedom to connect all its employees.
BlackBerry® Enterprise Server Express enables businesses of any size to
quickly and easily get started with the BlackBerry solution. It provides
advanced BlackBerry Smartphone features with no additional software or user
license fees, and works with any Internet-enabled BlackBerry data plan or a
BlackBerry enterprise data plan.

System Requirements
http://na.blackberry.com/eng/services/business/server/express/RIM707_System_Requirements.pdf

Can’t see Drive mapings in SBS2008 on XP Systems

I don’t know if this a duplicat post of mine
However if you’ve set up SBS2008 for Drive mapping in the login scripts
and you still can’t get drive mappings.

It’s probably because the client side extentions are not installed on the XP system and it needs “ALL” the Updates
First go to updates.microsoft.com and update the System

and then

Group Policy Preference Client Side Extensions for Windows XP (KB943729)
http://download.microsoft.com/download/f/e/b/feb2da1e-3611-452a-b134-1ddbe5567e5f/Windows-KB943729-x86-ENU.exe

Posted in SBS2008, XP. 1 Comment »

Cannot See \\Server when VPN into a SBS2008 Server

From http://nicholas.piasecki.name/blog/2009/06/getting-wins-like-computer-name-resolution-over-vpn-in-sbs-2008/

Getting WINS-like computer name resolution over VPN in SBS 2008
by Nicholas Piasecki on June 13th, 2009
So this week concluded several sleepless nights and much heartburn as I migrated Skiviez’s SBS 2003 machine (running as our domain controller and our mail server) to SBS 2008. As far as things go, it went relatively smoothly, and the remainder of the week was dealing with lots of small niceties that I had forgotten that I had set up on the 2003 server that I now needed to set up once again.

One of these was something that I used for my convenience over a VPN connection from home. You see, the internal order processing application that I wrote uses some shared folders to store some temporary data, such as e-mails that are generated but not yet released to Exchange, or a local copy of images that are available on the Web site. This software–and our users–are used to referring to Windows file shares as \\COMPUTER-NAME\SHARE-NAME; for example, \\CYRUS\Pickup Holding, because for some reason some of the older servers are named after my boss’s dead cats.

When connecting through VPN to SBS 2008, however, that “suffix-less” name resolution was not working. So when \\CYRUS\Pickup Holding failed to resolve to anything, \\cyrus.skiviez.com\Pickup Holding would work fine. This was super annoying.

The reason this worked previously with our SBS 2003 installation is that it was acting as a WINS server, which provided this type of computer name resolution for us. SBS 2008 finally retires this ancient technology by default, however, so I had two choices: I could either install the WINS server role on SBS 2008, or I could just figure out how to get the 015 DNS Domain Name option from DHCP to relay through the VPN connection.

I chose the latter option, since it’s certainly less confusing to be able to say to someone in the future “we don’t use WINS, DNS does everything.” So here’s how to do it:

1.On the SBS 2008 server, click Start > Administrative Tools > Routing and Remote Access.
2.In the tree view, drill down past the server name to IPV4 > General. Right-click the General option and choose “New Routing Protocol” and choose DHCP Relay Agent.
3.Now right-click the newly appended “DHCP Relay Agent” node and choose Properties. Add the IP address of your DHCP server (which is probably your SBS server itself), and click OK. Then click it again and choose “New Interface” and add the “Internal” interface.
4.Now if you connect through VPN, an ipconfig /all should show your domain name as a “Connection-specific DNS suffix” and pinging machines by their suffix-less computer names should work. (If it doesn’t, make sure your DHCP server is using that 015 DNS Domain Name option, which the SBS 2008 wizards set up by default.)

How to install Exchange SP2 on SBS2008 (Exchange 2007)

Microsoft Exchange Server 2007 SP2 Installation Tool for Windows SBS 2008
http://www.microsoft.com/downloads/details.aspx?FamilyID=ffd2fe61-9278-489e-9b96-3816394c9cb6&displayLang=en

If you didn’t have this tool you’d have to do this.

Download Exchange 2007 SP2
http://www.microsoft.com/downloads/details.aspx?FamilyID=4C4BD2A3-5E50-42B0-8BBB-2CC9AFE3216A&displaylang=en

How to install Exchange 2007 SP2 on SBS2008 without tool
http://support.microsoft.com/default.aspx?scid=kb;EN-US;973862

Improve RWW Performance in SBS2008

SBS2008 RWW Has Changed the way RWW works
For one thing There is no Default Connect To Local Drives Option in RWW
Next it Automatically Enables the Background Image During a REMOTE RWW Session
(Which is Stupid IMO)

Below are some notes I’ve found across the web in speeding up RWW Experiance on SBS2008 *Use at your own perial

First thing I’d like to Address is NO Local Hard Drive Access Option in RWW
Let me guess You’d like to see this?

Where you Have the Option to Show Local drives and Ports.

To Enable this.
In Directory
C:\Program Files\Windows Small Business Server\Bin\webapp\Remote
Find tsweb.aspx
First thing make a backup Copy of this file
then open up Notepad in an elevated mode and then make the changes.

For Remote drives find!
MsRdpClient.AdvancedSettings2.RedirectDrives = FALSE
and set it to TRUE

If you want Remote Port Access Find
MsRdpClient.AdvancedSettings2.RedirectPorts = FALSE
And set it to TRUE

There are other things you can change but that will give you Remote Port and Drives.

Next is a way to Speed up RWW since RWW Defaults Allows the Background to display.
a. Again open notepad in elevated mode and open above file
b. Find the line “‘ Performance settings”
c. Insert this line below it
“MsRdpClient.AdvancedSettings2.PerformanceFlags = 111″

What this does: According to http://msdn.microsoft.com/en-us/library/aa381215(VS.85).aspx, you see it will disable Wallpaper, Full-window drag, Menu animations, Themes, Cursor shadow, Cursor blinking. So basically you can also change the value 111 to something else to just disable some of them.

2. Screen size:
Actually we have the logic to limit the TS window resolution to 1600*1200 as maximum. The reason is some low RDP version will not support the size larger than that. If you do want to use full screen size, and you don’t have an low RDP version that will be using on a large resolution monitor (local one) (say using RDP 5.x or 6.0 on a 1920*1080 resolution monitor), then you could do below things to remove the limitation.

Steps:
a. Open notepad in elevated mode and open file (C:\Program Files\Windows Small Business Server\Bin\webapp\Remote\tsweb.aspx)
b. Find below content
if ( screen.width > 1600 ) then
sresWidth = 1600
else
sresWidth = screen.width
end if
if ( screen.height > 1200 ) then
sresHeight = 1200
else
sresHeight = screen.height
end if
c. replace them to
sresWidth = screen.width
sresHeight = screen.height

Note: after change this, if you do remote from RDP 5.x on a 1920*1080 resolution monitor, then most likely it will be failed with errors.
And the RDP 5.x are shipping with Windows XP SP2, RDP 6.0 are shipping with Vista RTM

The edited ASP Can be found here
http://www.sbits.biz/rwwfix/

(This only includes the Drive, ports and Background mods does not contain the screen resolution mod.) Use at own risk! :)

SBS2008 not sending email out on a Dell PE2900

Issue with SBS2008 Sending email out on a Dell PE2900
Mail would receive just fine into the SBS2008 however sending email out would get stuck halfway and never get delivered.
No Return Bounce NO indication of any issues.

Found out that Broadcom NIC was the issue in the Dell PE2900
Even though it had Version 9 drivers Dell claimed that version 12 “Might”
I repeat “MIGHT” work.

Instead of dealing with it not working after new drivers, I disabled Onboard NICs
Purchased a DLINK 1GB Nic Card.

Installed and mail going out correctly now with no issues!
Information Courtesy of Lafayette Jefferson.

The Official SBS Blog : Outlook 2007 Out of Office Feature May Be Out of Office

Troubleshooting Out of Office

Troubleshooting Out of Office

Download details: Windows SBS 2003 to 2008 Migration Guide

Download details: Windows SBS 2003 to 2008 Migration Guide