sysinternals suite

8. May 2009

Long time ago i was collecting sysinternals tools one-by-one but yesterday i was looking for BgInfo util to install it on a server and i saw that they now have a complete package of all the suite here

Bookmark and Share DotnetKicks dotnetshoutout

Windows , ,

Build automatically all projects in path

8. May 2009

For a long time i was searching a tool that it would build all my projects when i get latest version from sourcesafe/svn without opening solutions one-by-one so i create one to fit my needs. It's very simple get-things-done program, the whole class goes like that

        private void addProjectsToList()
{
desProjectsFound.Items.Clear();
foreach (string strFileTypes in desProjectTypes.Items)
{
foreach (string item in Directory.GetFiles(
desPathToProjects.Text,
string.Format("*.{0}", strFileTypes),
SearchOption.AllDirectories))
{
desProjectsFound.Items.Add(item, false);
}
}
desProjectsFound.Sorted = true;
}

public static string GetVSExeLocation()
{
return string.Format("{0}\\devenv.exe",
ConfigurationManager.AppSettings["DevEnvLocation"]);
}

private void btnBuild_Click(object sender, EventArgs e)
{
ExecuteAction(" /Build");
}

private void btnRebuild_Click(object sender, EventArgs e)
{
ExecuteAction(" /Rebuild");
}

private void ExecuteAction(string action)
{
for (int i = 0; i < desProjectsFound.Items.Count; i++)
{
if (desProjectsFound.GetItemChecked(i))
{
Process.Start(GetVSExeLocation(),
desProjectsFound.Items[i] + action);
}
}

}


As you will see in download i use Krypton Toolkit

Below is the compiled version of the program, don't forget to modify the VS path in the config file to match the destination of your visual studio installation

 

ProjectBuilder.zip (697,82 kb)

Hope this helps someone besides me!

Bookmark and Share DotnetKicks dotnetshoutout

Programming, C#, Visual Studio

All links to Office 2007 SP2 products

1. May 2009

I have followed all the Office SP2 product updates so far and i want to share with you in one single post, so here they are

  1. Windows SharePoint Services 3.0 SP2, x86 & x64. http://www.microsoft.com/downloads/details.aspx?FamilyId=79BADA82-C13F-44C1-BDC1-D0447337051B&displaylang=en
  2. Office SharePoint Server 2007 SP2, x86 & x64. http://www.microsoft.com/downloads/details.aspx?FamilyId=B7816D90-5FC6-4347-89B0-A80DEB27A082&displaylang=en
  3. Windows SharePoint Services 3.0 with SP2 slipstream version, x64 http://www.microsoft.com/downloads/details.aspx?FamilyId=9FB41E51-CB03-4B47-B89A-396786492CBA&displaylang=en
  4. Windows SharePoint Services 3.0 with SP2 slipstream version, x86 http://www.microsoft.com/downloads/details.aspx?FamilyId=EF93E453-75F1-45DF-8C6F-4565E8549C2A&displaylang=en
  5. Office 2007 SP2 http://www.microsoft.com/downloads/details.aspx?FamilyID=b444bf18-79ea-46c6-8a81-9db49b4ab6e5&displaylang=en

If you want a more detailed explanation of these downloads refer to Sharepoint Team blog and for the office update in KB968774

Bookmark and Share DotnetKicks dotnetshoutout

General