Posts Tagged ‘SharePoint’

WSS 3.0 Standard Backup Procedure

Before you begin, log onto the server that running SQL Server and check that ‘SQL Server VSS Writer‘ service is started and the startup type is set to ‘Automatic‘ as this is a requirement. Also, you will need to create a shared directory for the backup and set the required share permissions. In this example I’ve created BACKUPDIR on server BACKUPSVR.
Read more

Event ID 10016 Source: DCOM

This is common error that shows up in the event logs after installing SharePoint. So I just thought I’d post how to fix it, which is relatively simple once you know what to do.



The details of how to fix the issue are within the error log itself. It’s saying that the application that is identified as ‘{61738644-F196-11D0-9953-00C04FD919C1}’ does not have the required permissions its needs on the COM Server with the user (in this case) ‘NT AUTHORITY\NETWORK SERVICE’. So all we have to do is grant those permissions.
Read more

WSS 3.0 removing the TitleBarWebPart

An interesting little issue that we came across. After adding the ‘TitleBarWebPart‘ there wasn’t an obvious way to remove it from the Workspace in SharePoint. What we had to do was load up SharePoint Designer and remove it from the source code which ended up being quite easy. Basically your looking for this tag:

<WebPartPages:TitleBarWebPart runat="server"
ZoneID="Center" PartImageLarge=""
MissingAssembly="Cannot import this Web Part." IsIncluded="True"
Description="" PartOrder="3" AllowHide="True"
ChromeType="None" AllowMinimize="False" DetailLink=""
PartImageSmall="" FrameState="Normal"
AllowRemove="False" ExportMode="All"
AllowConnect="True" IsVisible="True"
FrameType="None" AllowClose="False"
HelpLink="" IsIncludedFilter="" HelpMode="Modeless"
ConnectionID="00000000-0000-0000-0000-000000000000"
AllowZoneChange="True" ID="g_32a8b37d_41f8_4151_931b_57b53ccc8c11"
Title="TitleBarWebPart" ExportControlledProperties="True"
SuppressWebPartChrome="False" Dir="Default"
AllowEdit="True" __MarkupType="vsattributemarkup"
__WebPartId="{32A8B37D-41F8-4151-931B-57B53CCC8C11}"
WebPart="true" Height="" Width="">
</WebPartPages:TitleBarWebPart>

Simply deleting this tag will remove the ‘TitleBarWebPart‘ from your page.

Return top