Is there a way to install sharepoint web parts with out taking sharepoint down at all?
Here is what I use for my deployment batch file:
@ECHO OFF SET PATH=%PATH%;"C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\BIN"
ECHO Deactivating Feature... stsadm -o deactivatefeature -id ed9a2d2b-a773-4de0-a739-5dfce5f7c06e -url http://mysite.contoso.com/sites/Properties -force
ECHO Uninstalling Feature stsadm -o uninstallfeature -filename MyWSP_Feature1\Feature.xml -force
ECHO Retracting Solution stsadm -o retractsolution -name MyWSP.wsp -url http://mysite.contoso.com/sites/Properties -local
ECHO Deleting Solution stsadm -o deletesolution -name MyWSP.wsp
ECHO Adding Solution stsadm -o addsolution -filename MyWSP.wsp
ECHO Deploying Solution stsadm -o deploysolution -name MyWSP.wsp -url http://mysite.contoso.com/sites/Properties -allowgacdeployment -local -force
ECHO Installing Feature stsadm -o installfeature -filename MyWSP_Feature1\Feature.xml -force
ECHO Activating Feature stsadm -o activatefeature -id ed9a2d2b-a773-4de0-a739-5dfce5f7c06e -url http://mysite.contoso.com/sites/Properties -force
iisreset
pause