ich folgende Skripte Installation/Deinstallation eine LösungLösung Bereitstellung von Sharepoint ausgeführt wird für immer - Sharepoint 2007
Uninstall.bat
@echo off
echo *****************************************************
echo Un-Installing <solution> -
echo (C) <company>. All rights reserved.
echo *****************************************************
set stsadm="%programfiles%\common files\microsoft shared\web server extensions\12\bin\stsadm.exe"
echo Retracing solution.wsp
%stsadm% -o retractsolution -name solution.wsp -immediate -allContentURLs
%stsadm% -o execadmsvcjobs
echo Wait till the solution retraction is completed (check the central administration)
pause
echo Deleting solution from the solution store
%stsadm% -o deletesolution -name solution.wsp -override
%stsadm% -o execadmsvcjobs
echo - Restarting WSS Timer service
net stop "windows sharepoint services timer"
net start "windows sharepoint services timer"
echo Uninstallation completed successfully
echo.
pause
Install.bat
@echo off
set STSADM="C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\BIN\stsadm.exe"
echo *****************************************************
echo Installing <solution> -
echo (C) <company>. All rights reserved.
echo *****************************************************
echo Adding solution.wsp to the solution store
%STSADM% -o addsolution -filename solution.wsp
echo Deploying solution
%STSADM% -o deploysolution -name solution.wsp -force -immediate -allowGacDeployment -allContentURLs
%STSADM% -o execadmsvcjobs
echo Installation completed successfully
IISRESET
Restarting SharePoint Timer Service..
NET STOP SPTIMERV3
NET START SPTIMERV3
REM echo copying resources..
REM %STSADM% -o copyappbincontent
echo.
pause
Aber die install.bat steckt nach der Bereitstellung bei execadmsvcjobs
fest. Als ich den TaskManager überprüfte, stieg die CPU-Auslastung auf 100% und STSADM.EXE und OWSTIMER.EXE verbrauchten viel Speicher. Die Bereitstellung läuft also für immer.
Irgendwelche Ideen?
Was war die Lösung in Ihrem Fall –
Diese http://stackoverflow.com/questions/4646646/feature-event-handler-called-multiple-times-for-farm-level-feature-sharepoint-2/4647028#4647028 war das Problem und die Ursache für den Server sehr langsam. Ich habe eine statische Variable im Feature-Event-Handler verwendet und konnte nicht mehrfach aufgerufen werden. – NLV