During the installation of a hotfix for SharePoint technologies in V3 (as long as you are not running in silent mode for the patch) you will get a dialog like the one below prompting you to run psconfig.
It is easy to forget about this dialog after the patch is complete. However, it is critical that you run the SharePoint Products and Technologies Configuration Wizard (psconfig) after a hotfix. This wizard or command line depending on the way you run it, will perform an inplace build to build(b2b) upgrade on the SharePoint installation. SharePoint hotfixes are inplace upgrades from one build of SharePoint to another. The hotfix package simply copies the files to disk and registers the binaries. It is the SharePoint Products and Technologies Configuration Wizard that actually upgrades the installation to the new patch.
If you run psconfig -help upgrade from the command line as opposed to the wizard you will see the following.
PSCONFIG.EXE -cmd upgrade
[-wait]
[-force]
[-reghostonupgrade]
[-finalize]
[-inplace <v2v|b2b>]
[-sidebyside]
Performs SharePoint upgrade. This command is automatically executed when running the SharePoint Products and Technologies Configuration Wizard if SharePoint needs to be upgraded.
wait: If specified, the SharePoint Products and Technologies Configuration Wizard does not return until upgrade completes. If not specified, the wizard returns after dispatching a SharePoint Timer service job to perform upgrade. You can view the upgrade job status by accessing the SharePoint Central Administration Web Application using your web browser.
force: If specified, the SharePoint Products and Technologies Configuration Wizard stops any currently running upgrade actions, and then restarts upgrade.
reghostonupgrade: If specified, the SharePoint Products and Technologies Configuration Wizard will revert all content streams during the upgrade.
finalize: If specified, the SharePoint Products and Technologies ConfigurationWizard will finalize the current upgrade. You will not be able to undo this action.
inplace: If specified, the SharePoint Products and Technologies Configuration Wizard will perform an in-place upgrade. If v2v is chosen, then an in-place version to version upgrade will be performed. If b2b is chosen, then an in-place build to build upgrade will be performed.
sidebyside: If specified, the SharePoint Products and Technologies Configuration Wizard will perform a gradual upgrade.
Therefore if you choose to run from the command line you will need to use this syntax.
Psconfig –cmd upgrade –wait –inplace b2b
But this is not enough for hotfixes that include search fixes. For those you also need to let search know about the changes. The way to do this is by running the following stsadm command after patches that contain search fixes.
For MOSS:
Stsadm –o osearch –action start
For WSS help search:
Stsadm –o spsearch –action start