Beyond Web Logs

Discuss technology, web development, networks and more ...

Recent posts

Tags

First time here? At BeyondWebLogs we discuss technology, web development, personal development, networks and more. You can subscribe to the RSS feed so that you keep up to date with the latest content. Now, on with the regular content...

Work is like that

There are 2 people always next to you:

1 - The (Manager), smiling pleasantly to hide evil intentions!

2 - The (Team Leader), busy figuring out what work to dump on you next.....

And, there's YOU, who struggles with it all!


The perfect picture is given below

     Team leader                              YOU                        Manager

Currently rated 5.0 by 2 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Fun
Posted by Waqas on Saturday, December 22, 2007 5:03 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Get a second chance to pass your Microsoft Certification exam—free!

For a limited time, you can get a free, second shot at any IT professional, developer, or Microsoft Dynamics certification exam. Just register for this offer before your first exam, and you will get two chances to pass. But this offer won't last forever.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Naveed on Tuesday, December 18, 2007 1:25 AM
Permalink | Comments (0) | Post RSSRSS comment feed

TechNet Flash: It's SP1 Time for Vista and 2007 Office

Note from the Editor
 
Greetings naveed,
Happy holidays, and it seems our gift to you this season is service packs...lots of service packs. If you are one of the people who have been waiting for Windows Vista Service Pack 1, you can now incorporate SP1 code into your testing, piloting, and deployment planning activity. The Release Candidate of Windows Vista SP1 is now available for download. We have also created a special site within TechNet, the Windows Vista Springboard, to aid you through the entire adoption process. Note that if you do take advantage of the pre-release code program, do remember that the code will likely change before its final release. In this case, we strongly recommend that you also plan to install the final version of Windows Vista SP1 when it is released in the first quarter of 2008.

For the 2007 Office Servers and Office suite, we've rolled the updates into a single service pack for servers and another one for the suite. Download the 2007 Microsoft Office Servers Service Pack 1 and the 2007 Microsoft Office suite Service Pack 1 to get all of the updates released for the 2007 Microsoft Office System servers prior to December of 2007, plus important customer-requested stability and performance improvements and further enhancements to user security.

You can get a more complete description of the 2007 Office Servers SP1 and 2007 Office suite SP1, including a list of issues that were fixed, in the Microsoft Knowledge Base articles 936984: Description of the 2007 Microsoft Office Servers Service Pack 1 and 936982: Description of the 2007 Microsoft Office suite Service Pack 1.

While Windows Vista and 2007 Office Servers are getting their first service pack updates, Windows XP is getting its last. For TechNet subscribers, Windows XP Service Pack 3 Release Candidate 1 is now available for download. Windows XP SP3 will be a rollup that includes all previously released updates for Windows XP, including security updates, out-of-band releases, and hotfixes. It contains a small number of new updates, but should not significantly change the Windows XP experience.

Holiday break: This is your last TechNet Flash of 2007. The next newsletter is scheduled to hit your inbox on January 9, 2008. Have a great holiday and a happy New Year.

Thanks for reading,

Mitch Irsfeld
Editor, TechNet Flash

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Naveed on Thursday, December 13, 2007 6:06 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Microsoft TechNet Flash: December First Edition

Welcome to TechNet Flash,

On November 30, you will be able to download Exchange Server 2007 with Service Pack 1. The list of new features in SP1 is long, including new deployment options, new features and improvements for each server role, improved integration with other applications, and even a new, third type of continuous replication. There are also general updates to almost all of the high availability topics for SP1, as well as significant updates in other content areas, such as those related to the Mailbox, Client Access, Hub Transport and Edge Transport, and the Unified Messaging server roles. You can find documentation on the new features by browsing or searching the Exchange Server TechCenter Library. If you're in evaluation mode, you can now download the Exchange Server 2007 with Service Pack 1 trial software and see how secure, anywhere access can enhance operational efficiency.

And once you've deployed Exchange Server 2007 Edge Transport servers to control spam and other unwanted e-mail messages, you'll want to implement logging and tracing and configure Edge Transport agents to perform the tasks you need. Check out the November issue of TechNet Magazine to see how to analyze Edge Transport agents in action by using the standard agent logging and tracing features of Exchange Server 2007.

The 2007 Microsoft Office release includes hundreds of security and privacy settings. Download the 2007 Microsoft Office Security Guide for best practices and automated tools to help strengthen the security of computers that run either Windows Vista or Windows XP SP2 and applications in the 2007 Microsoft Office suite.

Windows Vista is the first PC operating system designed with infrastructure management as a core focus, and Microsoft has launched a new resource for IT pros to make the adoption process smoother and better guided. The Springboard Series for Windows Vista is now available on a new TechNet destination. This offers monthly articles based on community feedback and helps answer key questions around how and why to get going with Windows Vista adoption. The Springboard Series itself is designed to more simply guide you through the entire adoption process, from early exploration of new management capabilities through piloting and finally rolling out through your organization.

Thanks for reading,

Editor, TechNet Flash Our site is listed at Firewall.com

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Naveed on Saturday, December 08, 2007 9:47 AM
Permalink | Comments (0) | Post RSSRSS comment feed

Visual Studio 2008 and .NET Framework 3.5 Training Kit

The Visual Studio 2008 and .NET Framework 3.5 Training Kit includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2008 features and a variety of framework technologies including: LINQ, C# 3.0, Visual Basic 9, WCF, WF, WPF, ASP.NET AJAX, VSTO, CardSpace, SilverLight, Mobile and Application Lifecycle Management.

Get it here

Currently rated 5.0 by 2 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Naveed on Thursday, December 06, 2007 9:41 PM
Permalink | Comments (1) | Post RSSRSS comment feed

Using Path.Combine instead of String concatination

Many times there is a need to get an absolute file name from a given directory and a fileName. One way for developers to do this is simply string concatenation. A lot of devs do this because it appears so simple. But the problem is that when passing in the directory as a string, you often don't know if it will end with a final slash or not - i.e "C:\Temp" or "C:\Temp\". Merely doing string concat will screw it up, you could get a non-existent file like "C:\Temp\\MyFile.txt".

 

A much better approach is to use System.IO.Path.Combine. This allows you to have a directory (with or without the slash), and the combine method if smart enough to handle it:


    public static string GetFileName(string strDir, string strName)
    {
      //return strDir + @"\" + strName;   //BAD
      return System.IO.Path.Combine(strDir, strName); //GOOD
    }

What's funny is that both options are just 1 line of code and take essentially the exact same amount of time to write. However, the first is very brittle, and could likely cost you tons of time tracking down an error because someone passed in a directory with or without that extra slash. The second just works!

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Posted by Waqas on Thursday, December 06, 2007 5:26 PM
Permalink | Comments (0) | Post RSSRSS comment feed

Installing Visual Studio 2008 - Cannot open deffactory.dat

While installling VS 2008, you may encounter cannot open deffactory error. To solve this, just copy/paste following highlighted text in deffactory.dat file and setup will continue :)

[Version]
Signature = "$Windows NT$"
Provider="Microsoft Visual Studio 2005 Professional Edition - ENU"
Version=800.100.00
NullString=Null String
Lang=1033

 

[Scenario List]
vsscenario.dll

[Scenario Factory Information]
Default Scenario=11E4C8F3-425E-43b9-B689-8BFDF03342E2

Currently rated 5.0 by 4 people

  • Currently 5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Categories: Tips n Tricks
Posted by Waqas on Monday, December 03, 2007 6:09 PM
Permalink | Comments (2) | Post RSSRSS comment feed