Jun
18
2009
0

Logging thousands of errors, oerflib and sbsmonitoring

I’m receiving these two errors again and again:

 

Windows cannot load extensible counter DLL MSSQL$MSFW, the first DWORD in data section is the Windows error code.

 

Windows cannot load extensible counter DLL MSSQL$SBSMONITORING, the first DWORD in data section is the Windows error code.

 

What might be generating them and how can I cure it?

 

The system is SBS 2003 R2 Premium.

 

Thanks.

Answers

  • TrxAdmin Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers MedalsThursday, May 10, 2007 1:57 PM

    Answer

    According to the KB article below, it is a permissions issue:

    “To resolve this problem, you must grant the Read & Execute permission to the Network Service account on the performance counter DLL for SQL Server 2005 Analysis Services.

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

All Replies

  • mrdennyMVPUsers MedalsUsers MedalsUsers MedalsUsers MedalsUsers MedalsThursday, May 10, 2007 1:57 AM

    Where are you seeing these errors?
  • TrxAdmin Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers MedalsThursday, May 10, 2007 1:46 PM

    I am also getting thousands of these errors in the application log of 3 SBS machines.

    They are all running SBS 2k3 sp1, at least 1 of them is R2 version of 2k3.

  • TrxAdmin Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers MedalsThursday, May 10, 2007 1:57 PM

    Answer

    According to the KB article below, it is a permissions issue:

    “To resolve this problem, you must grant the Read & Execute permission to the Network Service account on the performance counter DLL for SQL Server 2005 Analysis Services.

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

  • Old Blind Dog Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers MedalsFriday, May 11, 2007 11:56 AM

    The 912399 article says:

    RESOLUTION

    To resolve this problem, you must grant the Read & Execute permission to the Network Service account on the performance counter DLL for SQL Server 2005 Analysis Services. The DLL is located in the following folder:

    C:\Program Files\Microsoft SQL Server\MSSQL.x\OLAP\Bin\Msmdctr90.dll

    Additionally, you must grant Read permissions to the Network Service account on the “bin” directory and the “bin\en” directory for SQL Server 2005 Analysis Services. For example:

    C:\Program Files\Microsoft SQL Server\MSSQL.x\OLAP\bin
    C:\Program Files\Microsoft SQL Server\MSSQL.x\OLAP\bin\en

     

    I didn’t have those specific directories, but I gave Network Service permissions for any similarly named directories and it fixed the problem. Thanks

    Any idea what created the problem to begin with?

  • Anonymousbhnmkjh Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers MedalsMonday, May 14, 2007 11:04 AM

    I have this problem for an earlier MSSQL server version which does not have the same structure.  does anyone know the method for this?

     

     

Need Help with Forums? (FAQ)

Statistics

  • Started: 5/4/2007
  • Last Reply: 5/11/2007
  • Helpful Votes: 0
  • Replies: 5
  • Views: 2,660
Written by admin in: Uncategorized | Tags: , ,
Jun
17
2009
0

How to redirect an HTTP connection to HTTPS for Outlook Web Access clients and how to redirect the Default Web Site to point to the Exchange virtual directory

This is a Microsoft solution! - Official Link: http://support.microsoft.com/kb/839357

This article describes how to automatically redirect an HTTP connection to an HTTPS connection in the Internet Information Services console (IIS) for Microsoft Office Outlook Web Access (OWA) users. This article also describes how to modify the IIS Default Web Site so that clients can access the Outlook Web Access logon page by typing only http://<server name> instead of typing http://<server name>/exchange.

We recommend that you require a Secure Sockets Layer (SSL) connection for your OWA users. An SSL connection encrypts the information that is sent to or received from the Microsoft Exchange Server computer. However, when you configure IIS to require SSL for all incoming OWA requests, OWA users who try to connect by using HTTP receive the following error message:

HTTP 403.4 - Forbidden:
SSL required
Internet Information Services

After the OWA user receives the error message, the user must manually type https:// at the start of the URL to connect to the Exchange Server computer. You may want to configure IIS to automatically redirect the OWA user’s HTTP request to HTTPS to minimize user interaction and to make sure that all incoming requests are enabled for SSL.

MORE INFORMATION

To configure IIS to automatically redirect HTTP requests as HTTPS requests, foll…

To configure IIS to automatically redirect HTTP requests as HTTPS requests, follow these steps.

Important If the following conditions are true, you must mount and start the mailbox store before you can successfully complete these steps:

  • Microsoft Exchange 2000 Server or Microsoft Exchange Server 2003 is installed on a front-end server.
  • The mailbox store has been dismounted.

Note Follow these steps on an Exchange front-end server that communicates with a clustered Exchange back-end server.

  1. Create an Active Server Pages (ASP) Web page that contains the following code:

     <%
    
    If Request.ServerVariables("HTTPS")  = "off" Then
    						Response.Redirect "https://" & Request.ServerVariables("HTTP_HOST") & "/Exchange"
    End If 
    
    	%>

  2. Name the Web page “Owahttps.asp.”
  3. In Windows Explorer, create the Inetpub\Wwwroot\CustomErrors folder, and then save the Owahttps.asp Web page file to that folder.
  4. Start the IIS console.
    • In Windows NT Server 4.0 (IIS 4.0)

      Note Follow these steps if you are running Microsoft Exchange Server 5.5 OWA on Windows NT 4.0 Server together with the Windows NT 4.0 Option Pack. If you have an Exchange Server 5.5 mailbox server, and if the OWA component is installed separately on a dedicated Web server, follow these steps on the Web server only.

      1. Click Start, point to Programs, point to Windows NT 4.0 Option Pack, point to Microsoft Internet Information Services, and then click Internet Services Manager.
      2. Expand Internet Information Server, expand Computer Name, and then expand the Web site that the OWA users use to access their Exchange server. By default, this Web site will be the Default Web Site.
      3. Go to step 5.
    • In Windows 2000 Server (IIS 5.0)

      Note Follow these steps if you are running Exchange Server 5.5, Exchange 2000, or Exchange 2003 OWA on Windows 2000 Server.

      1. Click Start, point to Programs, point to Administrative Tools, and then click Internet Services Manager.
      2. Double-click Computer Name to expand the computer object.
      3. Expand the Web site that the OWA users use to access their Exchange server. By default, this Web site will be the Default Web Site.
      4. Go to step 5.
    • In Windows Server 2003 (IIS 6.0)

      Note Follow these steps if you are running Exchange 2003 OWA on Windows Server 2003.

      1. Click Start, point to All Programs, point to Administrative Tools, and then click Internet Information Services (IIS) Manager.
      2. Expand Computer Name, and then expand Web Sites.
      3. Expand the Web site that your OWA users use to access their Exchange server. By default, this Web site will be the Default Web Site.
      4. Go to step 5.
  5. Right-click the CustomErrors folder, and then click Properties.
  6. Under the Application settings section, click Create.

    Make sure that CustomErrors is displayed in the Application name box.

    Note For Exchange 2003 running on IIS 6.0, click ExchangeApplicationPool in the Application Pool list.

  7. Click the Documents tab, and then add the Owahttps.asp file to the Enable default content page. Move the Owahttps.asp file to the top of the list.
  8. Click the Directory Security tab, and then click Edit under Authentication and access control.
  9. Click to select Enable anonymous access, and then click OK.
  10. Under Secure communications, click Edit.
  11. Click to clear the Require secure channel (SSL) check box, and then click OK two times.
  12. Right-click the Exchange virtual directory, and then click Properties.
  13. Click the Custom Errors tab, and then double-click 403.4.
  14. In the Message Type list, click URL.
  15. In the URL box, type /CustomErrors/Owahttps.asp, and then click OK.
  16. Click the Directory Security tab.
  17. Under Secure Communications, click Edit.
  18. Click to select the Require secure channel (SSL) check box.

    Note If you want to require 128-bit encryption, click to select the Require 128-bit encryption check box.

  19. Click OK two times.

    Note The Exchange virtual directory and the Public virtual directory are the only virtual directories that you have to configure to require SSL. If you have other virtual directories for which you want to require SSL, enable SSL on each virtual directory individually.

After you follow these steps, visit the http://<server_name>/exchange Web site. In this address, server_name is the name of the Microsoft Internet Information Service (IIS) server.

You should be automatically redirected to https://<server_name>/exchange and to the Logon.asp page.

Additionally, if you want to modify the IIS Default Web Site so that clients can access the OWA logon page by typing only http://<server name> instead of typing http://<server name>/exchange, follow these steps.

Note Because there are several versions of Microsoft Windows, the following steps may be different on your computer. If they are, see your product documentation to complete these steps.

  1. Start the Microsoft Management Console (MMC) IIS snap-in.
  2. Right-click Default Web Site, click Properties, and then click the Home Directory tab.
  3. Under When connecting to this resource, the content should come from, click A redirection to a URL.
  4. In the Redirect to box, type /exchange.
  5. Under The client will be sent to, click A directory below this one.
  6. Stop and start the Default Web Site.

For more information about how to simplify the OWA URL, visit the following Microsoft TechNet Web site:

http://go.microsoft.com/fwlink/?LinkId=130623 (http://go.microsoft.com/fwlink/?LinkId=130623)

APPLIES TO
  • Microsoft Exchange Server 2003 Enterprise Edition
  • Microsoft Exchange Server 2003 Standard Edition
  • Microsoft Exchange 2000 Enterprise Server
  • Microsoft Exchange 2000 Server Standard Edition
  • Microsoft Exchange Server 5.5 Standard Edition
Keywords: 
kbinfo KB839357

Written by admin in: Technology | Tags: , , , ,
Jun
17
2009
0

Outlook Quick Address Type

To fix this up, search for a .NK2 file, this is the file used to store quick contacts (suggested names) etc.

It will depend on your O/S as to where this file is, search will help you but if it is an XP machine you will find it here.
C:\Documents and Settings\%USER PROFILE%\Application Data\Microsoft\Outlook\

Note: this is a hidden file, so you may need to go into Folder options and change the setting to View hidden files.

Copy this file over to the same directory but on the new computer, and it should work!

Written by admin in: Technology | Tags: , , , , ,
Jun
01
2009
0

NDR Has Long Reply To Email Address

Maybe you have seen this or something similar: MicrosoftExchange329e71ec88ae4615bbc36ab6ce41109e@yourdomain.local

This has been confirmed by Microsoft as a problem with exchange 2007 update rollup 7, this is being resolved in next version.

Learn more here if you dont believe us: http://social.technet.microsoft.com/Forums/en-US/exchangesvrtransport/thread/166f6cbd-cb1f-494c-aff4-dee3c4b20714

Thanks

Written by admin in: Technology | Tags: , , , , , ,
May
29
2009
0

Move to Trend Micro Business Protection and get 20% OFF!!!

Still think Symantec is the safe choice?
 
Reduce Your Exposure to Viruses and Spam today and receive 20% off! May 29, 2009
 
 
It makes sense. Keeping your security solution constantly updated helps protect your business from the latest viruses, spam and other threats.
 
To accomplish this, most solutions require a continuous stream of security updates. Even then, the lag time between a threat and a security update frequently leaves your business unprotected and vulnerable.
 
Trend Micro offers Worry-Free™ Business Security, a better alternative based on the Trend Micro Smart Protection Network, which:
 
  •   Provides instant protection—with automatic updates that won’t interfere with PC operation or network performance
  •   Stops viruses, spam and threats from the Web—before they reach your business
  •   Performs dramatically faster—while using 33% less PC memory
 
Switch to Trend Micro today to get the immediate, up-to-the-minute protection you need—without interfering with your business.
 
Here's the proof
 
 
 
 
 
 

 

 

 

There’s never been a better time to make the switch to Trend Micro!

 

Customers who make the switch to Trend Micro prior to June 30th 2009 for a saving of between 20% to 35%!

Here’s how the promotion works:

·         New customer’s from any competitor product to a Trend Micro Worry Free product prior to June 30th, Trend Micro will give a 20% discount off the RRP!
 

·         The discount will increase to a massive 35% discount off the RRP for organisations running a current (or expired within 30 days) Symantec product!

 
 

Need more convincing to help your customers make the switch to Trend Micro Worry Free?

 

Trend Micro offers Worry-Free™ Business Security, a better alternative based on Trend Micro Smart Protection Network, which:

 

  •  

Stops spam and threats from the Web—before they reach your business
 

  •  

Performs dramatically faster—scans a 1GB directory 90% more rapidly
 

  •  

Consumes 33% less PC memory—than Symantec Endpoint Protection

 

 

 

 

Terms and Conditions

·         The 35% off RRP offer is a cross grade discount  for any new customer purchasing a Worry-Free Business Security licence (Standard or Advanced or Hosted) who has a current (or expired within 30 days) Symantec licence.

·         The cross grade discount offer is valid for new licence sales only (no box/OEM), additional licence increments do not qualify.

·         The cross grade discount offer can be combined with existing Edu, NFP & Gov discounts.  Ask your distributor for a quote.

·         The cross grade discount promotion is valid for new customer purchase orders dated up to June 30th. Trend will accept correct orders using these codes placed with us before close-of-business on Tuesday 14th July.

·         Trend Micro will require proof of Symantec licensing to obtain the 35% discount.

 

Call us now and you can recieve  25% off!. Visit us at www.fruitboxit.com.au to contact us.

 

 

Written by admin in: Business | Tags: , , , , , ,
May
28
2009
0

McAfee Purchases Secure Computing

Securecomputing is now Mcafee

Securecomputing is now Mcafee

McAfee, in a bid to decisively round out its network security product portto purchase San Jose, Calif.-based Secure Computing for about $465 million.

Vimal Solanki, vice president of worldwide solutions marketing at McAfee, says the Secure deal will help McAfee to offer a “complete network security offering,” a term that McAfee uses to describe the potpourri of intrusion prevention, firewall, Web security, email security, data protection, and network access control technologies.

Secure’s focus on Web and network security complements McAfee’s strong endpoint security technologies, and the fact that both companies do more than 90 percent of their business through channel partners is another area of common ground between the two vendors, according to Solanki.

The deal, if approved, will create a powerhouse with combined network security revenue of $500 million, and would add 2,000 solution providers to McAfee’s existing global channel partner base of 12,000, Solanki added.

Secure’s TrustedSource in-the-cloud security intelligence technology meshes well with McAfee’s Artemis technology, a cloud offering that provides realtime protection from threats, Solanki said.

Steven Palange, president of security solution provider TLIC Worldwide, Wakefield, R.I., sees the deal as a welcome boost to McAfee’s portfolio, one that will be most apparent in areas like Web filtering, firewall, and the Secure Mail (formerly Ironmail) line of email security appliances.

“They’re going to use Secure to plug some of their holes, and that’s likely to work out well, since Secure fits well into McAfee’s existing line of products with very little overlap,” Palange said.

However, one security solution provider wasn’t surprised by the news, and considers Secure to be a vendor of steadily diminishing importance in the security market.

“Secure was pretty much dead in the water and wasn’t going anywhere — we almost never come across Secure’s products,” said the source, who requested anonymity.

Written by admin in: Business | Tags: , , , , ,
May
28
2009
0

help us raise some money for charity!!!

Charity R Us

Charity R Us

We are donating all money we make from advertising to charity, please click these ads and encourage others to click these ads to help us raise some money…


Written by admin in: Business | Tags: , , ,
May
28
2009
0

Make Money From The Internet

Yep, you can do it, its really simple.

1. Make a good blog

2. Encourage people to sign up

3. Add advertisements

Written by admin in: Uncategorized | Tags: , ,
May
28
2009
0

Marketing and Communication

Marketing Your Business

Marketing Your Business

I read this somewhere, makes sense I guess.

Keep in contact with your clients and vendors by sending articles you have written or that would be of interest to them. Add a little “How are you?” note to these people and keep the lines of communication open. Include current information about any new value-added products or services, such as a newsletter, or tele-class you will be presenting.

Marketing doesn’t have to be expensive. You just have to do it.

Communication and relationship are the keys to marketing. Attending numerous networking meetings may be worthwhile to some, but that strategy doesn’t work for everyone because, as someone once told me, the people who love you will always refer business to you.

The people who are your advocates or supporters are the ones who require nurturing. Send them an e-mail, e-zine, note, or article at least once a month.

Written by admin in: Business | Tags: , ,
May
28
2009
0

Managers Love Their Buddhas

Yeah... we went there

Yeah... we went there

This is what happens, one minute you’re drinking in Hawaii, next minute your’re riding giant Buddha’s

Written by admin in: Uncategorized | Tags: ,

Powered by WordPress