Category: Servers

SQL Server 2008 internal backup
article #272, updated 4805 days ago

In SQL Studio for SQL 2008, under a database object, go to Management, then Maintenance Plans. If you double-click on an item under there, you’ll see a Visio-like flowchart; double-clicking on any of the items will permit reconfiguration.

Categories:      

==============

Remote Web Workplace (RWW) Ports
article #260, updated 4829 days ago

RWW uses ports 4125 and 443.

Categories:      

==============

Reinitialize Offline Files
article #250, updated 4850 days ago

Microsoft has a way:

http://support.microsoft.com/kb/230738#LetMeFixItMyselfAlways

Categories:      

==============

LSI RAID parameters and policies
article #233, updated 4875 days ago

Here is a document from LSI which specifies best settings for LSI RAID:

http://www.lsi.com/DistributionSystem/AssetDocument/6Gbs_LSI_LRb.pdf

Categories:      

==============

Move an SQL Server transaction log
article #224, updated 4921 days ago

A very good series of steps, actually one command-line and one GUI, are here:

http://www.mssqltips.com/tip.asp?tip=1774

Categories:      

==============

Updating drivers and admin apps on a Dell server
article #174, updated 5040 days ago

We have three stages so far.

  1. Go to support.dell.com, and hunt around for the SUU with items for your particular server model.  “SUU” is what Dell is calling it, it stands for “Server Update Utility”.  You’ll be able to build a complete ISO of a DVD.
  2. The “Dell OpenManage Server Administrator” is often the only source of chipset drivers, and it is sometimes not visible on the drivers page for the server.  At this writing, the best method to find the current version appears to be this Google search.
  3. Check the individual downloads for your server, too.

A bit out of date, but still quite useful to help us figure out what to do, is this page:

http://www.delltechcenter.com/page/2%2F8%2F2008+-+OpenManage+Download+-+Comments

Categories:      

==============

Delete Windows share by script
article #172, updated 5046 days ago

Put the below in a VBS file and run it (from a batch file perhaps) with ‘wscript filename.vbs’.

' The name of the share.
strShareName = "SHARE"

' SERVERNAME has to be the hostname of the machine containing the sahre
Set objfServer = GetObject("WinNT://SERVERNAME/lanmanserver")
objfServer.Delete "Fileshare", strShareName
Set objfServer= Nothing

Categories:      

==============

Control memory usage of various bits in SBS
article #151, updated 5119 days ago

A very good article is here:

http://forums.techarena.in/small-business-server/866950.htm

Categories:      

==============

Blackberry Controller won't run
article #94, updated 5427 days ago

If the Blackberry Controller service won’t run, try restarting the DNS server, and then try to start the Blackberry Controller. If that works, you are seeing a TCP/UDP port conflict between Microsoft DNS and the Blackberry server. You need to reserve these ports:

3101
3200
4101

using this registry edit:

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

Categories:      

==============

Install PHP on IIS 6
article #88, updated 5467 days ago

Good instructions are here:

http://peterguy.com/php/install_IIS6.html

Categories: