I'm completely new to Sharepoint. I'm installing a component in SP 2010 64 bit for interacting with Adobe LiveCycle. For this i run the following BAT:
set _my_datetime=%date% %time%
@echo on
echo Begin Installation at %_my_datetime%
echo "Customize <VER> <PORT> <SharepointServerNameOrIP> <SiteDirectory> <siteName> in this install.bat . Verify gacutil.exe path."
@echo off
@SET GACUTILEXE="C:\Program Files\Microsoft SDKs\Windows\v6.0A\bin\gacutil.exe"
@SET TEMPLATEDIR="C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\TEMPLATE"
@SET ISAPIDIR="C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\ISAPI"
@SET RESOURCESDIR="C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\Resources"
@SET WEBAPPDIR="C:\inetpub\wwwroot\wss\VirtualDirectories\80"
@SET SITEURL="http://ivanlap/"
@SET STSADM="C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\bin\stsadm.exe"
REM cd $(ProjectDir)
%GACUTILEXE% /nologo /i AdobeLCSharepoint.dll /f
%GACUTILEXE% /nologo /i AdobeLiveCycleConnector.dll /f
%GACUTILEXE% /nologo /i AdobeLiveCycleWorkflow.dll /f
%GACUTILEXE% /nologo /i AdobeLCFormsIntgr.dll /f
%GACUTILEXE% /nologo /i AdobeLCFormsIntgrListExtnWebService.dll /f
%GACUTILEXE% /nologo /i AdobeLCTaskManager.dll /f
pushd %TEMPLATEDIR%\features
Echo Deactivating LiveCycle Connector feature with WSS
%STSADM% -o deactivatefeature -filename LiveCycle\feature.xml -url %SITEURL% -force
Echo Deactivating LiveCycle Workflow feature with WSS
%STSADM% -o deactivatefeature -name LiveCycle/Workflow -url %SITEURL% -force
Echo Uninstalling LiveCycle Connector with WSS
%STSADM% -o uninstallfeature -filename LiveCycle\feature.xml -force
Echo Uninstalling LiveCycle Workflow with WSS
%STSADM% -o uninstallfeature -name LiveCycle/Workflow -force
popd
Echo Copying source files to WSS \TEMPLATE directory
xcopy TEMPLATE %TEMPLATEDIR% /e /y /i
Echo Copying Custom Web Service files to WSS \ISAPI directory
xcopy ISAPI %ISAPIDIR% /e /y /i
Echo Copying Feature Resource files to WSS 12\Resources directory
xcopy Resources %RESOURCESDIR% /e /y /i
Echo Copying Resource files to %WEBAPPDIR%\App_GlobalResources directory
xcopy App_GlobalResources %WEBAPPDIR%\App_GlobalResources /e /y /i
pushd %TEMPLATEDIR%\features
Echo Installing LiveCycle Connector with WSS
%STSADM% -o installfeature -filename LiveCycle\feature.xml -force
Echo Installing LiveCycle Workflow with WSS
%STSADM% -o installfeature -name LiveCycle/Workflow -force
Echo Activating LiveCycle Connector with WSS
%STSADM% -o activatefeature -filename LiveCycle\feature.xml -url %SITEURL% -force
Echo Activating LiveCycle Workflow with WSS
%STSADM% -o activatefeature -name LiveCycle/Workflow -url %SITEURL% -force
popd
Echo Restarting IIS worker process
IISRESET
set _my_datetime=%date% %time%
@echo on
echo End Installation at %_my_datetime%
@echo off
Then I get the LiveCycle conversion options when I click on the files that are in that particular Sharepoint site. However, I don't get them in the subsites belonging to the site. How can I automate the replication for every subsite?
Thank you in advance