Archive

Archive for March, 2010

WSP Developing SharePoint Solutions in Visual Studio


SharePoint Solution
http://greggalipeau.com/2008/05/18/developing-sharepoint-solutions-in-visual-studio/
http://www.zimmergren.net/archive/2009/04/08/wspbuilder-walkthrough-of-the-visual-studio-add-in.aspx

http://geekswithblogs.net/evgenyblog/archive/2008/01/27/118966.aspx
===========================================================================================
http://msdn.microsoft.com/en-us/library/ms442108.aspx

SharePoint Feature
http://msdn.microsoft.com/en-us/library/ms414322.aspx

SharePoint Content Type
http://msdn.microsoft.com/en-us/library/ms463449.aspx

SharePoint Custom Field Type
http://msdn.microsoft.com/en-us/library/ms415141.aspx

Common Coding Issues When Using the SharePoint Object Model
http://msdn.microsoft.com/library/bb687949.aspx

SharePoint Development Best Practices – Checklist
http://itfootprint.wordpress.com/2008/08/19/sharepoint-development-best-practices-checklist/

Digging into Server-Side State Management
https://msevents.microsoft.com/cui/WebCastEventDetails.aspx?culture=en-US&EventID=1032274890&EventCategory=3

SharePoint Dispose Checker Tool
http://code.msdn.microsoft.com/SPDisposeCheck

Sample code acceptance checklist for IT organizations
http://technet.microsoft.com/en-us/library/cc707802.aspx#Section2

Validating ASP.NET Server Controls
http://msdn.microsoft.com/library/aa479013.aspx

Improving Web Application Security: Threats and Countermeasures
http://msdn.microsoft.com/library/ms994921.aspx

Microsoft Anti-Cross Site Scripting Library V1.5: Protecting the Contoso Bookmark Page
http://msdn.microsoft.com/library/aa973813.aspx

Creating and Deploying SharePoint Solution Files


http://www.toddbaginski.com/blog/archive/0001/01/01/creating-a-custom-site-definition-in-wss-v3-moss.aspx
http://www.chrishines.com/techblog/default.aspx
http://greggalipeau.com/2008/05/18/developing-sharepoint-solutions-in-visual-studio/

http://bluesurftech.com/TechBlog/Lists/Posts/Post.aspx?List=f66fed30%2Da22a%2D43f6%2Da52b%2D5a2f3bedd6e7&ID=49
http://sharepointsolutions.blogspot.com/2006/10/anatomy-of-sharepoint-wss-v3-feature.html
http://www.devx.com/dotnet/Article/40007
http://yasirbutt.spaces.live.com/Blog/cns!A8677D5751E6B4DA!851.entry?sa=837172611
http://www.codeproject.com/KB/sharepoint/ExtendingSPS.aspx

http://www.sharepointforum.com/en-US/Wiki/Solution%20Package.aspx
http://wss.made4the.net/archive/2008/05/26/solution-development-in-sharepoint-2007.aspx

ADFS v2.
http://blogs.msdn.com/ekraus/

Custom Site Template
http://www.sharepointnutsandbolts.com/2007/08/creating-deploying-and-updating-custom.html

Webpart Silver light
http://blog.richfinn.net/blog/

Dotnet 4.0

Categories: ASP.NET, Microsoft

MSDN MOSS Videos

Categories: Microsoft, MOSS 2007

Deploying InfoPath forms from Development to Production

Categories: TFS

SharePoint 2010 Beta Virtual Machine

Categories: Sharepoint 2010

Backup-Restore MOSS 2007


Backup-Restore MOSS 2007

Open command Prompt navigate tothis path C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN> and type the below command

Backup
C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN>stsadm -o backup -url http://win2k364:8880/ -filename C:\8880bkp.dat

Restore

C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\BIN>stsadm -o Restore -url http://win2k364:9090/ -filename C:\8880bkp.dat

Capture site content by using SharePoint Designer
=========================================
Back up a site by using SharePoint Designer
1. In Office SharePoint Designer 2007, on the File menu, click Open Site.
2. In the Open Site dialog box, browse to and click the Web site that you want to back up, and then click Open.
3. On the Site menu, point to Administration, and then click Backup Web Site.
4. In the Backup Web Site dialog box, to include all subsites of the current Web site in the backup, select the Include subsites in archive check box.
5. If the current Web site is low on available storage space, click Advanced, specify a new location, and then click OK.
Backing up a Web site requires a location to store temporary backup files. By default, Office SharePoint Designer 2007 uses the current Web site. You can use another site on the same server or a location on another server on the same network — for example, \\Server name\Share name.
6. In the Backup Web Site dialog box, click OK.
7. In the File Save dialog box, choose a location to store the .cmp file.
8. In the File name box, type the name for the file, and then click Save.
If the site that you are backing up or restoring is large, the process can take a long time.
Restore site content by using SharePoint Designer
This procedure can help you use Microsoft Office SharePoint Designer 2007 to restore a site.
Before you perform this procedure, confirm that you have read the topic Plan for backup and recovery (Windows SharePoint Services).
Restore a site by using SharePoint Designer
1. Create a new, empty Web site as a destination site
a. In Office SharePoint Designer 2007, on the File menu, click New.
b. In the New dialog box, on the Web Site tab, click General, and then click Empty Web Site.
c. In the Specify the location of the new Web site box, type or browse to the location to which you want to restore the backup site.
You can restore the site to a different server and you can restore it as either a new top-level site or a subsite under an existing top-level site.
d. Click OK.
2. Restore the backup file to the destination site
a. With the destination site open, on the Site menu, point to Administration, and then click Restore Web Site.
b. In the File Open dialog box, browse to and click the .cmp file that you want to restore, and then click Open.
c. In the Restore Web Site dialog box, click OK to confirm that you want to restore the .cmp file to the current empty Web site.
If the site that you are backing up or restoring is large, the process can take a long time.

 

Categories: Microsoft, MOSS 2007

SQl Date


Date Functions
—————-
select getdate() as currentDate,
dateadd(dd,1, getdate()) as nextdate,
dateadd(dd,-1,getdate()) as previousDate,
datepart(yyyy,getdate()) as currentyear, Year(getdate()) as currentyear1,
dateadd(yyyy,-1,getdate()) as previousyear,
dateadd(yyyy,1,getdate()) as nextyear,
datepart(mm,getdate()) as currentMonth, Month(getdate()) as currentMonth1,
dateadd(mm,-1,getdate()) as previousmonth,
dateadd(mm,1,getdate()) as nextmonth,
datename(mm,getdate()) as CurrentMonthName,
day(getdate()) as CurrentDay,
datename(dw,getdate()) as WeekDay,
datediff(dd,getdate(), ‘2008-12-31’) as daypendingfor_Newyear,
datediff(mm,getdate(), ‘2008-12-31’) as monthpendingfor_Newyear

*all date display style*/

select convert(varchar(20),getdate(),104) as ‘16.12.2008’
select convert(varchar(20),getdate(),105) as ’16-12-2008′
select convert(varchar(20),getdate(),106) as ’16 Dec 2008′
select convert(varchar(20),getdate(),107) as ‘Dec 16, 2008′
select convert(varchar(20),getdate(),108) as ’18:08:57’
select convert(varchar(20),getdate(),109) as ‘Dec 16 2008 6:09:08′
select convert(varchar(20),getdate(),110) as ’12-16-2008’
select convert(varchar(20),getdate(),111) as ‘2008/12/16’
select convert(varchar(20),getdate(),112) as ‘20081216’
select convert(varchar(20),getdate(),113) as ’16 Dec 2008 18:09:49′
select convert(varchar(20),getdate(),114) as ’18:10:03:357′
select convert(varchar(20),getdate(),103) as ’16/12/2008′
select convert(varchar(20),getdate(),102) as ‘2008.12.16’
select convert(varchar(20),getdate(),101) as ’12/16/2008′
select convert(varchar(20),getdate(),100) as ‘Dec 16 2008 6:10PM’

select @@DATEFIRST –give you value of first day of week 7 for sunday 1 for monday

–for example try it
declare @datefirst as int
set @datefirst = (select @@DATEFIRST )
SELECT @@DATEFIRST AS ‘1st Day’, DATEPART(dw, GETDATE()) AS ‘Today’
SET DATEFIRST 5
SELECT @@DATEFIRST AS ‘1st Day’, DATEPART(dw, GETDATE()) AS ‘Today’
SET DATEFIRST @datefirst

/*all varchar to datetime conversion format*/

select convert(datetime,’16.12.2008′,104) as date
select convert(datetime,’16-12-2008′,105) as date2
select convert(datetime,’16 Dec 2008′,106) as date3
select convert(datetime,’Dec 16, 2008′,107) as date4
select convert(datetime,’18:08:57′,108) as datetime1
select convert(datetime,’Dec 16 2008 6:09:08′,109) as datetime2
select convert(datetime,’12-16-2008′,110) as date5
select convert(datetime,’2008/12/16′,111) as date6
select convert(datetime,’20081216′,112) as date7
select convert(datetime,’16 Dec 2008 18:09:49′,113) as datetime3
select convert(datetime,’18:10:03:357′,114) as datetime4
select convert(datetime,’17/04/2008 00:00:000′,103) as date8
select convert(datetime,’2008.12.16′,102) as date9
select convert(datetime,’12/16/2008′,101) as date10
select convert(datetime,’Dec 16 2008 6:10PM’,100) as datetime5

Get Year
SELECT YEAR(’24 March 1964′)

Get Month
SELECT MONTH(’24 March 1964′)

Get Day
SELECT DAY(’24 March 1964′)

Getting Only the Date Part of a Date/Time Stamp in SQL Server
—————————————————————-
SELECT
— Get the full date/time stamp as a base.
(
GETDATE()
) AS date_time_part,

— Trying casting to a string then back to a date.
(
CAST(
(
STR( YEAR( GETDATE() ) ) + ‘/’ +
STR( MONTH( GETDATE() ) ) + ‘/’ +
STR( DAY( GETDATE() ) )
)
AS DATETIME
)
) AS date_only_part,

— Try casting to float, rounding, and back to date.
(
CAST(
FLOOR( CAST( GETDATE() AS FLOAT ) )
AS DATETIME
)
) AS date_only_part2,

— Try casting just to float to see what it looks like.
(
CAST( GETDATE() AS FLOAT )
) AS float_value,

— Try flooring to see the intermediary step.
(
FLOOR( CAST( GETDATE() AS FLOAT ) )
) AS int_value

Categories: SQL

MOSS 2007-Excel


http://office.microsoft.com/en-us/sharepointserver/HA102078901033.aspx
http://www.codeguru.com/csharp/sample_chapter/article.php/c14305
http://blogs.msdn.com/performancepoint/
http://technet.microsoft.com/en-us/magazine/2009.02.bookbi.aspx?pr=blog
http://msdn.microsoft.com/en-us/library/aa973804.aspx
http://blah.winsmarts.com/2007-3-SharePoint_2007__Excel_Services_-_A_Quick_Introduction.aspx
http://www.codeproject.com/KB/sharepoint/DisplayingCharts.aspx
http://www.sharepointlabs.com/sharepoint-excel-service.htm
http://www.sharepointmonitor.com/2010/02/getting-started-with-the-sharepoint-2010-excel-services/

Click to access 19873.pdf

http://sharepointsolutions.com/SharePoint-Training/Courses/Pages/MOSS-BDC-Enterprise-Integration.aspx
http://vivekthangaswamy.blogspot.com/2007/04/excel-services-in-moss-2007-sharing.html
http://office.microsoft.com/en-us/sharepointserver/ha101054761033.aspx
http://www.dynamicscare.com/blog/index.php/creating-a-dashboard-using-moss-excel-web-services-excel-2007-and-microsoft-crm/

http://msdn.microsoft.com/en-us/library/aa973804.aspx
http://msdn.microsoft.com/en-us/library/aa973805.aspx
http://blogs.msdn.com/excel/
http://blogs.msdn.com/cumgranosalis/

http://msdn.microsoft.com/en-us/library/ms546696.aspx
http://msdn.microsoft.com/en-us/library/cc514223.aspx#MOSS2007TenTips_MakinganExcelWorkbookCompatiblewithExcelServices
http://sharepoint.microsoft.com/blogs/mikeg/Lists/Posts/Post.aspx?List=1b3bbb8f%2D4b5a%2D4f72%2D94c4%2D94cb80bc3866&ID=1038

Enable Excel Services and data connections for a SharePoint team site

http://office.microsoft.com/en-us/sharepointserver/HA102078901033.aspx

Consuming Sharepoint Lists in Excel Services
http://blogs.msdn.com/luisbeonservices/archive/2006/09/28/consuming-sharepoint-lists-in-excel-services.aspx

http://office.microsoft.com/training/training.aspx?AssetID=RC102854661033&CTT=6&Origin=RP102854651033

\\192.168.1.173

BI
http://wm.microsoft.com/ms/presspass/2005/final.wmv

Excel with SQL server
http://www.ranson.us/Lists/Posts/Post.aspx?ID=4

moss videos
http://www.show-me-sharepoint.com/default.aspx

How do I… Edit SharePoint documents using Outlook 2007?
http://blogs.techrepublic.com.com/howdoi/?p=139

Documents Libraries / Report Libraries & Audience Targetting.
http://blogs.msdn.com/gunterstaes/archive/2007/01/18/moss-2007-documents-libraries-report-libraries-audience-targetting.aspx

Object model
http://blogs.msdn.com/cumgranosalis/archive/2006/03/24/ExcelServicesHelloWorld.aspx

Archiving with MOSS Records Center

Archiving with MOSS Records Center

Read excel
http://geekswithblogs.net/AnneBougie/archive/2009/01/29/sharepoint-reading-an-excel-from-a-stream.aspx

Event Receiver :
http://www.simple-talk.com/dotnet/.net-framework/how-to-create-event-receivers-for-windows-sharepoint-services-3.0/
http://msdn.microsoft.com/en-us/library/bb736146.aspx
http://msdn.microsoft.com/en-us/library/dd239284.aspx

Understanding SharePoint: Event Receivers


http://blah.winsmarts.com/2006-7-Sharepoint_2007__List_Events_Practical_Example__Creating_a_rigged_survey.aspx
http://developers.de/blogs/adis_jugo/archive/2009/03/12/develop-and-deploy-a-sharepoint-event-receiver-from-the-scratch.aspx

CREATING AND DEPLOYING FEATURE IN MOSS

CREATING AND DEPLOYING FEATURE IN MOSS


http://www.codeproject.com/KB/sharepoint/ExtendingSPS.aspx

Integrating ASP.NET AJAX with SharePoint
http://sharepoint.microsoft.com/blogs/mike/Lists/Posts/Post.aspx?ID=3

http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=323
http://mctalex.blogspot.com/2009/06/integrating-ajax-control-toolkit-into.html

Customize the “NewForm.aspx” page for a SharePoint List

Sliver Light
http://www.hezser.de/blog/archive/tags/Silverlight/default.aspx

Read excel
http://www.eggheadcafe.com/community/aspnet/69/10072106/how-to-read-an-excel-file.aspx

How to: Locate and Copy Microsoft.Office.Excel.WebUI.dll
http://msdn.microsoft.com/en-us/library/aa549922.aspx

http://www.eggheadcafe.com/community/aspnet/69/10072106/how-to-read-an-excel-file.aspx

workflow
http://office.microsoft.com/en-us/sharepointdesigner/HA101829081033.aspx

MOSS VPC
http://www.pptspaces.com/sharepointreporterblog/Lists/Posts/Post.aspx?ID=17

Excel

Click to access ExcelAndExcelServices.pdf

Click to access Ignify-Sharepoint-MOSS-Excel-Services.pdf

Open XML
http://msdn.microsoft.com/en-us/library/bb735939.aspx

web services
http://blogs.msdn.com/andreww/archive/2009/05/20/excel-services-getting-started-pt4-web-service-apis.aspx

http://vspug.com/tonstegeman/2007/03/13/using-analysis-services-data-in-excel-services-part-3-create-and-test-an-excel-sheet/

http://wssv3faq.mindsharp.com/default.aspx

Excel Services Workflows
http://technet.microsoft.com/en-us/library/cc440743.aspx

Excel Web Access
http://msdn.microsoft.com/en-us/library/bb758868.aspx
http://msdn.microsoft.com/en-us/library/cc268427.aspx
http://technet.microsoft.com/en-us/library/cc298845.aspx

PDF

Click to access 19873.pdf

Click to access 0470104899.pdf

Blog
http://blogs.msdn.com/mikefitz/

Categories: Excel

Record Center MOSS 2007


Report
http://msdn.microsoft.com/en-us/library/bb966994.aspx#MOSS2007ReportCenterandDashboards_Overview

http://office.microsoft.com/en-us/sharepointserver/HA101741991033.aspx

Create and publish Key Performance Indicators (KPIs)

http://office.microsoft.com/en-us/sharepointserver/HA100800271033.aspx

Excel -KPI
http://office.microsoft.com/en-us/sharepointserver/HA101742051033.aspx

publish report
http://www.wrox.com/WileyCDA/Section/SharePoint-Application-Services-for-Reporting-and-Dashboards.id-305860.html

http://SERVER:12345/ReportDashboards/Pages/Default.aspx

http://infowork.ca/2008/02/11/moss-kpis-using-excel-services/

http://www.sharepointproconnections.com/TabId/149/NodeId/406/KPI’s-in-Microsoft-Office-SharePoint-Server-2007.aspx

good
http://blogs.techrepublic.com.com/msoffice/?p=898&tag=leftCol;post-901

Send To
http://grounding.co.za/blogs/neil/archive/2008/03/04/setting-up-a-record-centre-in-sharepoint.aspx

record center
http://sharepointrecordsmanagement.com/2009/01/13/configuring-a-records-center-connection/

http://grounding.co.za/blogs/neil/archive/2008/03/03/setting-up-a-record-centre-in-sharepoint.aspx

Why do we need to Archive information into a Record Centre?
http://grounding.co.za/blogs/neil/archive/2008/03/02/why-do-we-need-to-archive-information-into-a-record-centre.aspx

Sample custom router for Records Center in SharePoint
http://blog.thekid.me.uk/archive/2007/04/15/creating-a-custom-router-for-records-center-in-sharepoint.aspx

Configure a Records Center to accept content from other sites
http://office.microsoft.com/en-us/sharepointserver/HA101744491033.aspx?pid=CH101824451033

record center
http://blogs.syrinx.com/blogs/sharepoint/archive/2008/04/01/records-center-illustrated-primer-part-i.aspx
http://www.developer.com/security/article.php/3786521/Records-Management-for-Microsoft-Office-SharePoint-Server.htm

Categories: Record Center

MOSS Features


Most Popular Features
Debugger Feature
Adds a new menu item to the Site Actions menu that attaches the debugger.

Log Viewer
This is a Feature for viewing the Unified Logging Service (ULS) logs from within Central Admin

Print List
This Feature adds a “Print List” menu item to the “Actions” menu for every list in the site collection. This feature is based on the sample found here http://spstips.blogspot.com/2007/01/how-to-add-print-list-option-to-list.html and is used with the permission of the author. This version adds a blank master page, view selection, and a code-behind assembly.

Toolbar Manager
This Feature allows you to selectively show and hide menu items on the standard list/library toolbar. The feature adds a new web part to the gallery that you can place on any list/library view page. Once placed on the page, you can use the properties of the web part to show or hide menu items. This is the perfect solution for hiding a single menu item such as “Export to Spreadsheet” to prevent users from taking that action. A complete article on this feature can be found here http://www.shillier.com

Unique Column Policy (updated 3/3/2008)
This Feature creates a new Information Policy that allows you to specify a column in a list or library that should have unique values. It is accessible from the Information Policy link on the list/library settings page. When you turn on the policy, you can then select the column where the unique constraint should be applied. A complete article on this feature can be found here http://www.shillier.com/Lists/Posts2/DispForm.aspx?ID=11&Source=http%3A%2F%2Fwww%2Eshillier%2Ecom%2Fdefault%2Easpx

Window Links
This Feature is a custom Links list that allows you to control all aspects of opening the link in a new window. Activate it from the Site Collection Features page and then make a new list from the Create Page.
Developer-Oriented Features
Ajax.Config Feature
This Feature use a custom Feature Event Receiver to update the Web.config. This one can set up all the configuration to use Microsoft ASP.NET AJAX 1.0 into SharePoint Sites.

Content Type Hierarchy
This Feature presents the site content types in a hierarchical view.

Debug Config Feature
This Feature uses a custom Feature Event Receiver to update the Web.config. It can disable Custom Errors and enable Debugging And Stack Trace In WSS. Thanks to Paul Horsfall for the initial idea http://paulhorsfall.co.uk/archive/2007/03/29/How-To-Programmatically-Disable-Custom-Errors-and-Enable-Debugging-And.aspx

Global Web.config Feature
This Feature uses a custom Feature Event Receiver to update the Web.config of all Web application across your farm. This feature applies some of the most requested modifications such as connectionStrings, appSettings, membership and providers to the Web.config files. The Feature was contributed by Reza Alirezaei. For more information see http://blogs.devhorizon.com/reza/?p=555.

Minimal Master
This Feature adds a new master page to the gallery named “minimal.master”. This master page removes all of the chrome and is a good starting point for your own master page. This feature simply packages the minimal master page found in the SDK http://msdn2.microsoft.com/en-us/library/aa660698.aspx.

Minimal Publishing Site
This Feature adds a new site template with the minimal items necessary to support publishing. Install and activate the feature to use the new template.

Placeholder Master
This Feature adds a new master page to the gallery named “Placeholder.master”. This master page shows all of the placeholders and their content in a table structure so you can easily see what content is rendered in which placeholder.

Silverlight (.NET 3.5) Config Feature
This Feature makes all the Web.config modification to support 3.5 framework so you can can easily deploy the Silverlight for SharePoint BluePrint demo http://www.codeplex.com/SL4SP. The Feature was contributed by Reza Alirezaei.

Regular Expression Validation Field (Added 6/11/2008)
This feature creates a new field type that accepts a Regular Expression and then uses it to validate the field contents. This feature was created by Gael Duhamel.

Reset Theme (Updated 9/2/2008)
This feature changes the theme and logo for every site in a collection. A link appears on the Site Settings page to access the feature. This feature was created by Romelard Fabrice, SharePoint MVP.

Theme Changer and ThemeChangerStaple
This feature changes the site theme and alternate style sheet to those specified in the FEATURE.XML file.

Variation Labels Field (Update 9/22/2008)
This feature creates a new field type that displays the variation label information for items in a list. This feature was created by Gael Duhamel.
Administrator-Oriented Features (and supporting features for developers)
Clean Web Part Errors (Added 9/2/2008)
This Feature provides an administrative page at the farm and site collection level for managing web parts that are in an error state. The feature is similar to using the old “?contents=1” page, but with more flexibility. This Feature was contributed by SharePoint MVP Fabrice Romelard

Manage Configuration Modifications Feature
This Feature allows you to manage the web.config modifications that are applied across the farm. This is an enhanced version with more robust error checking than previously. Anyone using the previous version should upgrade.

Manage Form Users
This Feature adds a page to the People and Groups section of Site Settings for sites that use the SqlAuthenticationProvider. It allows you to add, edit, and delete users. This feature is related to the larger project found here http://www.codeplex.com/fba

Manage Hierarchical Object Store
This Feature allows you to manage the hierarchical data store for each web application. The feature allows you to store key/value pairs in a web application and then retrieve them later. This is similar to storing appSettings in the web.config file, but the values are stored in the SharePoint database. The utility is available through a link on the Operations tab of Central Administration. The Release Notes contain more information on how developers should write code to access these values.

Manage Application Configuration Feature (Added 12/9/2008)
This feature takes the Manage Hierarchical Object Store feature and modifies it.
There are two major differences:
1. This feature allows you to specify app settings at the site collection, site and list level (and not the web application level).
2. This feature uses the site and list root folder property bags to store app settings (and not the hierarchical object store).
This feature was contributed by Margriet and Nikander Bruggeman and you can find complete documentation at http://www.lcbridge.nl/download/customconfig.htm

Manage Layouts Site Map Feature
This Feature allows you to manage the LAYOUTS site map to add and remove breadcrumbs for layouts pages. This is a useful feature for putting breadcrumbs on all of those layouts pages you made for your custom features. This solution was built around work done by Vince Rothwell http://blog.thekid.me.uk/archive/2007/01/17/configuring-the-breadcrumb-for-pages-in-layouts.aspx to create a timer job for managing the layouts site map and is used with permission.

SharePoint Events Manager (Added 7/15/2008)
This Feature allows you to manage event receivers for lists directly from the SharePoint user interface. This feature was contributed by Gaetan Bouveret http://sharepointofview.fr/gat

Site Creation in Target Database (Added 12/9/2008)
SharePoint has its own mechanism to associate a brand new created site collection to a content database. This feature allows administrators to choose any other content database instead.
This feature was contributed by SharePoint MVP Sebastien Picamelot, whose blog is located at http://blogs.developpeur.org/gribouillon/
End User-Oriented Features
Anonymous Audience (Added 9/22/2008)
This feature allows anonymous users to be targeted as an audience in MOSS. When activated, the target audience control in the web part properties will include a checkbox to target anonymous users. This feature was contributed by Bryan Phillips. Read more about this feature at http://bphillips76.spaces.live.com/blog/cns!F9B548E4C21D6166!442.entry

Presence Contact List
This is a contact list modified to show presence information as a drop-down associated with the e-mail field.

Task Alert
This Feature automatically sets up an alert for someone when a new task is assigned to them.

Task Mover (updated 3/11/2008)
This Feature allows you to move a task from one list to another. A “Copy To..” menu item appears on the Edit Control Block for a task item.

Toolbar Manager
This Feature allows you to selectively show and hide menu items on the standard list/library toolbar. The feature adds a new web part to the gallery that you can place on any list/library view page. Once placed on the page, you can use the properties of the web part to show or hide menu items. This is the perfect solution for hiding a single menu item such as “Export to Spreadsheet” to prevent users from taking that action. A complete article on this feature can be found here http://www.shillier.com

Unique Column Policy (updated 3/3/2008)
This Feature creates a new Information Policy that allows you to specify a column in a list or library that should have unique values. It is accessible from the Information Policy link on the list/library settings page. When you turn on the policy, you can then select the column where the unique constraint should be applied. A complete article on this feature can be found here http://www.shillier.com/Lists/Posts2/DispForm.aspx?ID=10&Source=http%3A%2F%2Fwww%2Eshillier%2Ecom%2Fdefault%2Easpx

Categories: Microsoft, MOSS 2007