Tell me more ×
SharePoint Stack Exchange is a question and answer site for SharePoint enthusiasts. It's 100% free, no registration required.

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

share|improve this question
2  
We definitely want to encourage you to ask question and seek solutions to your SharePoint issues. However this question is better suited to the Adobe Forum's forums.adobe.com/community/livecycle/livecycle_es/… – Jesus Shelby Aug 25 '11 at 20:15
Agreed wit Jesus, as this is an Adobe product, they'll have a full, knowledgable support team waiting to take queries just like this, who will probably give you better, targeted answers, rather than us just with no knowledge of this specific product (just general SharePoint solutions). – James Love Aug 25 '11 at 20:44
Adobe's not been really helpful here, that's why I'm posting this. – azathoth Aug 25 '11 at 20:50
Sorry, we don't have the resources here to provide support for third party products. Please read our faq for details on questions we allow. – Alex Angas Aug 25 '11 at 23:34

closed as off topic by Jesus Shelby, PirateEric, Alex Angas Aug 25 '11 at 23:33

Questions on SharePoint Stack Exchange are expected to relate to SharePoint within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Don't you have a WSP file? It would render almost all of your script there redundant.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.