Skip to main content

Michael Blumenthal's BlumenthalIT.NET

Search BlumenthalIT.Net:  
Home
Blogging about SharePoint
Public Speaking
  

View blog authority

    follow me on Twitter
    This is my website for sharing my knowledge of SharePoint and other Microsoft technologies with the world.

     Most Recent 3 Posts - For All Posts, Click Here

    RTM, Launch, and GA dates announced for SharePoint 2010!

     

    SharePoint 2010 will RTM next month – April 2010!

    The launch event will be May 12th. http://sharepoint.microsoft.com/businessproductivity/proof/pages/2010-launch-events.aspx#fbid=387xf5ImGXJ 

    It will be generally available to everyone in June.

    Source: http://blogs.technet.com/office2010/archive/2010/03/04/get-office-today-or-tomorrow.aspx

    Michael


    # Comments: 0
    Modified: 3/5/2010 12:35 PM
    Permalink: http://blumenthalit.net/blog/Lists/Posts/Post.aspx?ID=147
    Why the silence?

     

    I haven’t blogged in a while, though I have tweeted a lot.

    Here’s why:

    End of November, my wife and I were blessed with our second child.

    Now my web hosting company is migrating my site to a “new platform” (which I think means new hardware).  It’s apparently a slow process, and I don’t want to add significant new content until it is done.

    So between those two things, it may be a bit quiet here for a few more weeks.

    What I haven’t blogged about is what I have been doing on SP2010.  More about that after the site migration is complete.

    --Michael


    # Comments: 0
    Modified: 2/19/2010 4:07 PM
    Permalink: http://blumenthalit.net/blog/Lists/Posts/Post.aspx?ID=146
    Modifying a web part’s unnamed view with POSH

     

    Here’s a little POSH script I wrote today, generalized a bit.

    The web part in question shows a list that has a column named “Title”, and one named “Percentage”, where it grouped them by a column called MarketType.

    It started out sorting ascending by title, and afterwards sorts descending by percentage.

     

    function global:Sort-WPBiggestPercentOnTop($SPViewUsedByWP)

    {

    $oldqu = $SPViewUsedByWP.Query

    if $oldqu -ne "<GroupBy Collapse=""FALSE"" GroupLimit=""100""><FieldRef Name=""Market_x0020_Type"" Ascending=""FALSE"" /></GroupBy><OrderBy><FieldRef Name=""Title"" /></OrderBy>"

    { write-error "View not as expected"}

    $newqu = $oldqu.Replace("<FieldRef Name=""Title"" />","<FieldRef Name=""Percentage"" Ascending=""FALSE"" />"

    $SPViewUsedByWP.Query = $newqu

    $SPViewUsedByWP.Update()

    write-host "Need to reset the state of the web part toolbar, it gets changed when the view gets edited."

    }


    # Comments: 0
    Modified: 11/6/2009 3:52 PM
    Permalink: http://blumenthalit.net/blog/Lists/Posts/Post.aspx?ID=145
     
     
    Microsoft Certified Technology Specialist: MOSS Configuration
    I also hold an MCSE, MCAD, MCDBA, and CAPM.

     What I'm working on now

    • Recently completed a MOSS Intranet for a political action committee.
    • Recently completed a MOSS Internet and Extranet site for a non-profit organization.
    • Ramping up on SharePoint 2010.
    • Public speaking on SharePoint topics.  For more information, click here.
    • Webmaster for the Chicago SharePoint User Group.  Visit CSPUG.org and come to our meetings!

     

     Recommended Books

    Recommended SharePoint Books
     

     MSDN and TechNet Articles I've Commented On

      HideCustomAction Element (Custom Action)
      How to Add Actions to the User Interface
      Solution Schema
      SPList SDK Object Model Refernce
      View Element (View)
      Welcome to the Windows SharePoint Services 3.0 SDK
      ContentType Element (ContentType)
      Configuring IntelliSense with CAML Files When Developing for WSS 3.0
      Features and solutions: Stsadm operations (Office SharePoint Server)
      PowerShell Pack for SharePoint
      SPWorkflow.CreateHistoryEvent Method
      http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spfieldurlvalue_properties.aspx
      Configure Kerberos authentication (Office SharePoint Server) (Updated: 2009-03-26)