我的工作流是通过 SharePoint 2010 中的以下脚本部署的:
# Set CurrentDirectory
$callingDir = Split-Path -Parent $MyInvocation.MyCommand.Path
[Environment]::CurrentDirectory = $callingDir
# Includes
$MainScriptName = "XXX.SharePoint.Powershell.YYY.ps1"
$MainScriptPath = Join-Path -Path $callingDir -ChildPath $MainScriptName
if (Test-Path $MainScriptPath)
{
# use file from local folder
. $MainScriptPath
}
else
{
# use central file (via PATH-Variable)
. $MainScriptName
}
Setup
$WebAppUrl = "NONE"
$SolutionPackageName = "Dataport.Survey.Webpart.wsp"
InstallSolution $SolutionPackageName $WebAppUrl
TearDown
之后,工作流显示为“已部署”(提供了解决方案)。如果我想使用工作流程(例如在列表中),我不能这样做。在网站设置(在“工作流程”下)中,工作流程显示为非活动状态。但为什么?我可以做些什么来使用工作流?
先感谢您!