Point Admin Toolset

The Idea Database Accelerator tool appears to be real handy at analyzing, reorganizing, and rebuilding indexes.

Keep in mind i’m still playing with this.

Today I sort of figured out how to backup and restore a site using Idera Site Backup.  Site Backup creates a .cmp file for the site you are backing up.  Using SharePoint Designer I was able to restore my deleted site from the .cmp file.

Here are the steps I followed:

Restore a Web site

Step 1: Create a new empty Web site as a destination

  1. On the File menu, click New.
  2. In the New dialog box, click the Web Site tab, click General, and then click Empty Web Site.
  3. In the Specify the location of the new Web site box, enter the location where 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.
  4. Click OK.

 Tip   You can also create an empty Web site through the browser by using the Site Settings or Create pages. For example, when viewing the site in the browser, click Site Actions, and then click Create. On the Create page, under Web Pages, click Sites and Workspaces. Complete the first four sections, but when you get to the Template Selection section, close the browser without making a selection. Do not apply any template — including the Blank Site template — or the restore operation will fail.

Step 2: Restore the backup file to the destination

  1. With the destination site open, on the Site menu, point to Administration, and then click Restore Web Site.
  2. In the File Open dialog box, browse to and click the .cmp file that you want to restore, and then click Open.
  3. If the current Web site is low on available storage space, click Advanced, and then do any of the following:
    • To store the archive files in another temporary location, enter a new location in the Temporary location for archive files box.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.
    • To store the .log file in another location, enter a new location in the Location for import log file box.You might need to choose another location for the .log file if the server cannot write to the default location. By default, Office SharePoint Designer 2007 creates an import .log file in the current Web site. You can check this file to determine if there were errors during the restore process.
  4. 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 quite a while.

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

Duplicate results when searching for a person in SharePoint 2007

 I was seeing duplicate people returned when searching for someone.  Here are a few things I did to locate and fix the problem.

First, check the People scope in the SSP.

Shared Services Administration: SharedServices1 > Search Administration > Scopes

http://moss1:8888/ssp/admin/_layouts/viewscopesssp.aspx?mode=ssp

This scope should have a rule of:

contentclass = urn:content-class:SPSPeople

     Behavior: Require

Take not of the Item Count.

Now take a look at the User Profiles and Properties page.

Shared Services Administration: SharedServices1 > User Profile and Properties

http://moss1:8888/ssp/admin/_layouts/ProfMain.aspx

In the Profile and Import Settings section look at the first item Number of user profiles:.  If this number doesn’t match the Item Count from the Scope you are    pulling too many items into your Local Office SharePoint Server sites  Content Sources.

To check Local Office SharePoint Server sites 

Shared Services Administration: SharedServices1 > Search Administration > Content sources

http://moss1:8888/ssp/admin/_layouts/listcontentsources.aspx

Edit  the Local Office SharePoint Server sites content source

In the Start Addresses section should be the following items

http://(server): (port)/ (SSP)

http://(portalsite)/ (URL of main portal site)

sps3://(server): (port)/ (My Site Host)      Crawl Settings:

Crawl Schedules: At 12:00 AM every day

: Every 2 hour(s) from 7:00 AM for 14 hour(s) every day

Updating the  Local Office SharePoint Server sites fixed my problem.

how to expand a VMware disk vmware-vdiskmanager.exe

if you are running VMware and need to expand the virtual disk size, here is the simply way to do it.

in windows Start – – > Run – -> CMD

cd C:\Program Files\VMware\VMware Server\

vmware-vdiskmanager.exe -x 30Gb “C:\path where your virtual disk is stored\name of your virtual disk.vmdk”

lets break this down.

vmware-vdiskmanager.exe -x (how large you want the disk to be)Gb “where the virtual disk is located, dont point this to the -flat file”

example (this is exactly what i put in the DOS prompt, including the quotation marks ” ” )

vmware-vdiskmanager.exe -x 99Gb “C:\VMstuff\myDisk.vmdk”

view a list of My Site users

I recently spent a stupid amount of time looking for a list of users that have enabled their My Site.

Log into Central Administration, navigate to Application Management, under the SharePoint Site Management section click on Site collection list.

Central Administration > Application Management > Site Collection List 

On the right side of the screen you will see dropdown box for Web Application, select your My Site host. Now a list of My Sites users will be displayed.

create a boot cd from an ISO

after messing with this for way too long I found a REAL easy answer to the question.

downloaded and installed this tool http://www.petri.co.il/how_to_write_iso_files_to_cd.htm

  1. Download the ISO CD image to a folder on your computer.

  2. Insert a blank CD in your CD-RW drive

  3. Locate the ISO file, right-click the file name, and then click Copy image to CD to open the ISO Recorder Wizard.

  4. Follow the steps in the wizard to write the image to the CD.

That is it… too easy!

InfoPath 2007 – There has been an error while loading the form

You updated an existing template with some new fields and data connections then published the form to the library. now users are unable to open any of the older forms they had saved. before the current update users were able to open all the forms with ie.

Error:

There has been an error while loading the form.
 
Click Try Again to attempt to load the form again. If this error persists, contact the support team for the Web site.Click Close to exit this message.

This form template is not currently browser-enabled. It must either be republished as a browser-enabled form, or opened using Microsoft Office InfoPath 2007.

—————————–

the problem is the older forms are referencing the old template, in my case it was templateOLD.xsn. All i had to do was update all the old forms… below is a block of code that will help you do this. (the forms Modified date and Modified by will change to the current date and the users name that is updating the forms)

Imports System.Text.RegularExpressions

Dim sPath As String
Dim sText As String

For Each file As String In IO.Directory.GetFiles(“\\sharepointed.com\ehaze”) ‘location of your doc library

sPath = file
sText = My.Computer.FileSystem.ReadAllText(sPath)

sText = Regex.Replace(sText, “templateOLD.xsn”, “template.xsn”)

My.Computer.FileSystem.WriteAllText(file, sText, False)

Next