Project server 2010
Om du vill ha Project server 2010 kommer den inte att stödja wss ! utan du måste köra med Enterprise moss 2010
Excel service 2010
Visio Service 2010
Med hjälp av Visio service kan du på ett enkelt sätt visa genom bilder samt och bakomvarande system hur processer fungerar.
Som exempel :
Du har ett hotell och vill veta vilka rum som är lediga kan du med hjälp av Visio och boknings systemet visa detta på din website.
Du får med Visio Service med i Sharepoint Enterprise Cal
För att länka info till ett objekt i Visio kör du en guide där du kopplar uppe dig mot en databas och sedan kan du enkelt dra in värdet till din bild i Visio.
och om du vill visa förändringar så lägger du in Datagrafik och väljer hur det skall visas.
Enkelt och bra sätt att visa info i Sharepoint utan att koda.
Sharepoint 2010 IT Pro Overview
Sitter nu på min första session som handlar om infrastruktur och hur man gör installationer på 2010
Ms Sharepoint Conferens 2009
Microsoft Sharepoint Conference 2009
Hej
Snart bär det väg till USA och Microsoft Sharepoint Conference 2009. Jag kommer att blogga under tiden jag är där om nyheter och saker som rör sharepoint.
här kommer agendan
Hello world!
Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!
Så här kan du sätta eror page i sharepoint med hjälp av powershell
Så här kan du sätta eror page i sharepoint med hjälp av powershell
PS C:\> [System.Reflection.Assembly]::Load("Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c")
PS C:\> $webapp = [Microsoft.SharePoint.Administration.SPWebApplication]::Lookup(http://www.adminpoint.se)
PS C:\> $webapp.FileNotFoundPage = "adminpoint404.html"
PS C:\> $webapp.Update()
Angående Anonymous Audiences in MOSS
Anonymous Audiences in MOSS
In a past project, I needed to be able to create an audience in MOSS that would apply only to anonymous users in an SharePoint site configured to use forms-based authentication. Additionally, anonymous users could not access a page in SharePoint if the page contained a web part that was configured with an audience.
I noticed that the RuntimeFilter tag in the web.config file referenced the AudienceManager class:
<RuntimeFilter Assembly="Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Class="Microsoft.Office.Server.Audience.AudienceManager" BuilderURL="audience_chooser.aspx" />
Using Reflector, I was able to determine that this class was responsible for both supplying the audience controls in the tool part window and for determining whether or not the user was in the audience configured for the web part.
Normally, these controls are displayed when a web part is edited:
But after writing a wrapper for the AudienceManager class, I was able to add an additional checkbox to allow the user to specify that only anonymous users should see the webpart:
Now, when the user checks the check box, only anonymous users will see the web part. I also made an additional change to workaround the problem of anonymous users not being able to see pages that had web parts configured with audiences.
To implement the same functionality, you will need two classes: one that implements the Microsoft.SharePoint.WebPartPages.IRuntimeFilter2 interface and one that implements the Microsoft.SharePoint.WebPartPages.IToolPaneControl interface. The IRuntimeFilter2 interface is used to determine if the current user is in a particular audience when the web page is rendering and the class you create will need to be configured in the RuntimeFilter tag in the web.config file. The IToolPaneControl interface is used to display the audience control in the tool pane when the web part is edited.
You can download the code I used here.