Tuesday, February 9, 2010

A CodePlex project worth following.

A friend, Malthe Stougaard, tip me at the last SharePoint Dinner of a new CodePlex project worth following. The project exists of a group of SharePoint MVPs that create a collection of useful SharePoint 2010 Visual Studio 2010 Extensions. The project is still in an alpha release, but all ready now the project contains:

  • New item templates
    • Custom Action (basic)
    • Hide Custom Action (basic)
    • Custom Action Group (basic)
    • Delegate Control (basic)
  • Deployment
    • Restart IIS
    • Recycle app pools
    • Copy to SharePoint root
    • Auto GAC
    • Auto copy to root
    • Attach to worker process
  • Server Explorer extensions
    • Web part gallery listing
    • Import Content Type into current project (stub - full feature to come in beta)
    • Display Custom Action Groups (stub - full feature to come in beta)
    • Display Custom Actions (stub - full feature to come in beta)
    • Display Hide Custom Actions (stub - full feature to come in beta)

So time to play with some VS.net extensions :)

Thursday, February 4, 2010

SharePoint User Group Meeting

The 4th of March will the Danish SharePoint User Group (SPBG) organize a user group meeting, about business intelligence and SharePoint 2010 Insight. Read more here (in Danish)

Wednesday, January 6, 2010

Tuesday, January 5, 2010

Set developer dashboard level with PowerShell

To set the developer dashboard level with PoweShell, open the SharePoint 2010 Management Shell Console and run this lines.

#SPDeveloperDashboardLevel is On, Off or OnDemand
$contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$contentService.DeveloperDashboardSettings.DisplayLevel = ([Enum]::Parse([Microsoft.SharePoint.Administration.SPDeveloperDashboardLevel], 'OnDemand'))
$contentService.DeveloperDashboardSettings.Update()

Relate post “SharePoint 2010 - Developer dashboard

Monday, January 4, 2010

PowerShell Console shortcuts

Key

Action

(Alt)+(F7)

Deletes the current command history

(PgUp), (PgDn)

Display the first (PgUp) or last (PgDn) command you used in current session

(Enter)

Send the entered lines to PowerShell for execution

(End)

Moves the editing cursor to the end of the command line

(Del)

Deletes the character to the right of the insertion point

(Esc)

Deletes current command line

(F2)

Moves in current command line to the next character corresponding to specified character

(F4)

Deletes all characters to the right of the insertion point up to specified character

(F7)

Displays last entered commands in a dialog box

(F8)

Displays commands from command history beginning with the character that you already entered in the command line

(F9)

Opens a dialog box in which you can enter the number of a command from your command history to return the command. (F7) displays numbers of commands in command history

(Left arrow), (Right arrow)

Move one character to the left or right respectively

(Arrow up), (Arrow down), (F5), (F8)

Repeat the last previously entered command

(Home)

Moves editing cursor to beginning of command line

(Backspace)

Deletes character to the left of the insertion point

(Ctrl)+(C)

Cancels command execution

(Ctrl)+(End)

Deletes all characters from current position to end of command line

(Ctrl)+(Arrow left), (Ctrl)+(Arrow right)

Move insertion point one word to the left or right respectively

(Ctrl)+(Home)

Deletes all characters of current position up to beginning of command line

(Tab)

Automatically completes current entry, if possible