Install workflow manager using DSC powershell

Hi,
i am trying to install workflow manager using DSC powershell.
I am using WebpiCmd.exe to install it.
Below is the DSC powershell script
configuration C_WFMgr
    Node $AllNodes.NodeName
        Script WF_Install
            GetScript = { @{ Name = "WF_Install" } }
            TestScript = {                
                $false
            SetScript =
            $currentPrincipal = New-Object Security.Principal.WindowsPrincipal( [Security.Principal.WindowsIdentity]::GetCurrent() )
            if ($currentPrincipal.IsInRole( [Security.Principal.WindowsBuiltInRole]::Administrator ) -eq $false) {
            (get-host).UI.RawUI.Backgroundcolor="DarkRed"                                   
                write-Verbose "Warning: PowerShell is not running as an Administrator.`n"  
                exit 
             else
                #set-executionpolicy "Execution user account"
                write-Verbose $currentPrincipal.Identity.Name
                write-Verbose "Warning: PowerShell is running as an Administrator.`n"                
                Write-Verbose "Workflow Manager installation started.."
                $cmd = "& 'C:\WorkflowManagerFiles\bin\WebpiCmd.exe' /Install /Products:WorkflowManager /XML:c:/WorkflowManagerFiles/feeds/latest/webproductlist.xml /log:C:/Users/backup/t1.txt
/AcceptEula"
                Invoke-Expression $cmd | Write-Verbose                             
Below is the error message
Started downloading products...
 Started installing Products...
 Started installing: 'Execute ASP.NET IIS Registration tool
 Started downloading: 'Workflow Manager Client 1.0 Refresh'
 Downloaded: 'Workflow Manager Client 1.0 Refresh'
 Started downloading: 'Service Bus 1.0'
 Downloaded: 'Service Bus 1.0'
 Started downloading: 'Workflow Manager 1.0'
 Downloaded: 'Workflow Manager 1.0'
 Install completed (Success): 'Execute ASP.NET IIS Registra
tion tool'
 Execute ASP.NET IIS Registration tool : Installed
 Started installing: 'Workflow Manager Client 1.0 Refresh'
 Install completed (Failure): 'Workflow Manager Client 1.0
Refresh'
 WorkflowClient : Failed.
 Error opening installation log file. Verify that the speci
fied log file location exists and is writable.
 Started installing: 'Service Bus 1.0'
 Install completed (Failure): 'Service Bus 1.0'
 ServiceBus : Failed.
 Error opening installation log file. Verify that the speci
fied log file location exists and is writable.
 DependencyFailed: Workflow Manager 1.0
 Verifying successful installation...
 Execute ASP.NET IIS Registration tool              True
 Workflow Manager Client 1.0 Refresh                False
     Log Location: C:\Windows\system32\config\systemprofile
\AppData\Local\Microsoft\Web Platform Installer\logs\install\2015-01-02T14.58.57\WorkflowManagerClient_x64.txt
 Service Bus 1.0                                    False
     Log Location: C:\Windows\system32\config\systemprofile
\AppData\Local\Microsoft\Web Platform Installer\logs\install\2015-01-02T14.58.57\Service_Bus.txt
 Workflow Manager 1.0                               False
 Install of Products: FAILURE

I am pretty sure that DSC requires WFM.  If  I am right then WFM is in use and cannot be replaced unless you specify another logfile location.  Look at the DSC and see how to specify a new log location that can be used for the install. 
If the MSU is built correctly then you will require a reboot to update the install.
Try just doing WFM alone until you work it out.
I also recommend posting in the Management forum for any other issues that might be known.
Management
DSC is a work in progress so many things have to be worked out as you need them.  Be sure to get the latest kits.  I think we are at Wave 9 now.
PowerShell
DSC Resource Kit Wave 9
¯\_(ツ)_/¯

Similar Messages

  • Install workflow manager using DSC declarative configuration

    I am trying to install workflow manager using below DSC powershell script.
    Configuration
    C_Pkg_WFInstall
    Node $AllNodes.NodeName
    Package C_Pkg_WFInstall
    Ensure = "Present"
    Name = "Workflow Manager Client 1.0"
    Path = "C:\WorkflowManagerFiles\bin\WebpiCmd.exe"
    Arguments =
    "/Install /Products:'Workflow Manager Client 1.0' /XML:'c:/WorkflowManagerFiles/feeds/latest/webproductlist.xml' /log:'c:/users/backup/workflow.txt' /AcceptEula"
    ProductId =
    "A5ABAF5F-B5B6-44B3-B69F-2E13DC60FC9F"
    $ConfigData
    = @{
    AllNodes = @(
        NodeName =
    "CHN-AERO-VM28";         
    C_Pkg_WFInstall
    -ConfigurationData
    $ConfigData –Verbose
    Start-DscConfiguration
    -Wait -force
    -Verbose -Path
    .\C_Pkg_WFInstall
    And i get the below error
    PowerShell provider MSFT_PackageResource 
    failed to execute Set-TargetResource functionality with error message: The return code -1 was not expected. Configuration is likely not
    correct
    + CategoryInfo         
    : InvalidOperation: (:) [], CimException
    + FullyQualifiedErrorId : ProviderOperationExecutionFailure
    But while installing from command prompt window i could install the below list successfully
    IdentifyingNumber : {A5ABAF5F-B5B6-44B3-B69F-2E13DC60FC9F}
    Name              : Workflow Manager Client 1.0
    IdentifyingNumber : {04A7199E-565D-4654-88A3-80A9A7BADDD9}
    Name              : Workflow Manager 1.0
    IdentifyingNumber : {F438C511-5A64-433E-97EC-5E5343DA670A}
    Name              : Service Bus 1.0
    I tried with all the above 3 product ids, its not working.

    Thanks for your reply.
    I get the below error in eventviewer - Applications and Services Log - Windows Powershell
    The description for Event ID 600 from source PowerShell cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the
    local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Alias
    Started
     ProviderName=Alias
     NewProviderState=Started
     SequenceNumber=1
     HostName=Default Host
     HostVersion=4.0
     HostId=979b4813-7bd4-47d7-9729-4166ae91e9c1
    The handle is invalid
    Log Name : Windows PowerShell
    Source : PowerShell (PowerShell)
    Event ID : 600
    Task Category : Provider Lifecycle
    I got the same error message in subsequent logs but the providername is different as below
     ProviderName=Environment 
     ProviderName=FileSystem  
     ProviderName=Function  
     ProviderName=Registry 
     ProviderName=Variable
    The description for Event ID 400 from source PowerShell cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local
    computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    Available
    None
     NewEngineState=Available
     PreviousEngineState=None
     SequenceNumber=13
     HostName=Default Host
     HostVersion=4.0
     HostId=979b4813-7bd4-47d7-9729-4166ae91e9c1
     EngineVersion=4.0
     RunspaceId=6374c946-1219-4870-bc51-528faae9671d
    Log Name : Windows PowerShell
    Source : PowerShell (PowerShell)
    Event ID : 400
    Task Category : Engine Lifecycle
    But i believe the problem is with either the product name or product id, since it installs three products on one invoke, i dont know which product id we need to give. i tried with all the above 3 product ids. Its not working.
    I think by default DSC powershell runs under system account "NT AUTHORITY\SYSTEM".

  • Do i need another Virtual machine rather than sharepoint server to install workflow manager ?

    Hi ,
         I have installed sharepoint 2013 on a single server with a built-in-database. And i have installed OWA in another virtual machine. Now i am trying to create a workflow. I have downloaded and installed sharepoint designer and workflow
    manager in the sharepoint 2013 itself. Do i need to install workflow manager in another server and make it to communicate with sharepoint server ? And how to email-id in workflow when i tried in sharepoint designer we have select the user. How to allocate
    e-mail id for users ?

    Creating new VM is choice of your architecture. Workflow Manager only requires below.
    Workflow Manager 1.0. Email ID will be automatically picked from the participants from AD.
    .NET Framework 4 Platform Update 3 or .NET Framework 4.5
    Service Bus 1.0
    Workflow Client 1.0
    PowerShell 3.0
    The following additional requirements must be met before you can run Configuration Wizard to configure Workflow:
    Instance of SQL Server 2008 R2 SP1, SQL Server Express 2008 R2 SP1, or SQL Server 2012.
    TCP/IP connections or named pipes must be configured in SQL Server.
    Windows Firewall must be enabled.
    Ports 12290 and 12291 must be available.
    Bala

  • Getting Error while Installing Workflow Manager 1.0 on Sharepoint 2013 On-Prem server

    I am trying to install Workflow Manager 1.0 on our SharePoint Server 2013 which is On-Prem installation. The SharePoint Server 2013 is functioning correctly. During the installation of Workflow Manager 1.0 on the same SharePoint 2013 server, I receive the
    following message: "Port number 9355 specified for HTTPS Port is blocked" I have checked our firewall Inbound rules and this port is not blocked.
    Any reason why this could be happening or did I miss anything?
    Thanks Snehal H.Rana SharePoint Consultant

    I am happy to inform you that I was able to resolve this error. I configured this on different ports other than 9355. We need to modify 2 files called "ClusterManifest.1.0.xml" and "ClusterManifest.current.xml" in c:\Program
    Files\Windows Fabric\Bin. They were pointing to older FQDN under following node:
     <NodeList>
            <Node NodeName="yourserverfqdn" IPAddressOrFQDN="yourserverfqdn" IsSeedNode="true" NodeTypeRef="DefaultNodeType" />
          </NodeList>
    These files won't let you edit directly in notepad so you will need to make a copy of these files (just in case). Open up the notepad as "Run As Administrator". Drag these files to the notepad. After you are done editing, save these as original
    names but make sure that the extension is .xml
    You will also need to do IISReset
    That did the trick for me.
    Thanks Snehal H.Rana SharePoint Consultant

  • Can you install Workflow Manager 1.0 on Central Admin App Server Machine in 3-tier SharePoint Farm?

    Hi,
    I have just realised when looking at doing a Workflow that 2013 Workflows not available (you need to install Workflow Manager Farm). I understand why from a tenant installation perspective, but we are on-premise.
    Can someone tell me if I can install Workflow Manager 1.0 (seen you have to now install WM 1.0 Refresh version) on the Central Admin App Server Machine in a 3 tier SharePoint farm. 3 WFE, 4 APP Servers, 1 DB Server and 1 DB Analysis Services Server.
    I did test on a test farm 1WFE, 1 APP Server (with CA) and 1 Database Server. We are getting issues with the WFE Server having issues booting up or losing connection - possibly faulty network card. This may in no way be related to the install,
    but just in case. 
    Any help appreciated.
    Thanks.
    John.

    Yes, you can install WFM on any server in a SharePoint farm.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • What is the windows server 2013 license version than I need to install workflow manager 1.0

    what is the windows server 2013 license version than I need to install workflow manager 1.0?
    enterprise or standard? can I install it on datacenter?
    please provide me with the reference.
    thanks

    Workflow Manager will work with either SharePoint Enterprise or Standard.  It doesn't work well with Foundations since it depends on User Profiles to pass user identity to the workflow.  And yes you can install it on Windows Server datacenter edition.
     Here are the supported platforms for installation
    http://msdn.microsoft.com/en-us/library/jj193487(v=azure.10).aspx
    This article talks about integration with SharePoint and states that Foundation is not supported, but it doesn't differentiate between the Server editions, so any edition will do.
    http://technet.microsoft.com/en-us/library/jj658588.aspx
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Best Practice on installing Workflow Manager on a separate box

    Hi,
    We are installing Workflow Manager 1.0 to work with our SP2013 farm, which is fairly simple.
    However we anticipate a significant  amount of workflow work in the future. 
    Could you please share your thoughts/experience/lessons learnt on Having WF Manager on a separate box compared to having it on the same box as SP2013 Front end server in terms of
    1. Scalability
    2. Stability 
    3. Ease of Installation/Management  
    etc
    Thanks a lot.
    Dineth

    Hi Dineth,
    Thanks for posting your query,
    Kindly browse the below mentioned URLs to know about the best practices and installation step by step
    http://msdn.microsoft.com/library/azure/jj730571%28v=azure.10%29.aspx
    http://www.sjoukjezaal.com/blog/2014/05/sharepoint-2013-workflows-part-2-installing-and-configuring-the-workflow-manager/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • How install solution manager using MCOD

    Hello Eveybody,
      I   have install the IDES ECC 6.0 on single machine. Now I want to install the Solution manger using MCOD. but I dont Know How to ? Will anybody guide me how to install solution manager using MCODE,
    I have HDD of  320 GB
    Waiting for earlist reply
    Thanks
    Ganesh

    Hello Ganesh,
    For installing on MCOD, the database instance should be on the same database host. For installation when you run sapinst, you should mention the database id (DBSID) for the solution manager as the ECC6 database DBSID. It will then automatically pick the installation as MCOD.
    In other words, the SAP SID during the installation should be the new system ID for solution manager but the Database SID should be mentioned as the existing DBSID.
    For more info, refer the following:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50a1b7a6-8307-2a10-05bc-d4388cbd4201
    Cheers,
    Jazz

  • Trouble in installing Workflow Manager 1.0

    Hi All,
    When I tried to install Workflow Manager 1.0 , I got the following error.
    I downloaded the Web Platform Installer and installed it.
    Still I get the same error.
    Please help me to troubleshoot the error.

    Hi Muthukumar;
    You must ensure Web Platform Installer version should be same on the server where you are downloading Workflow Manager 1.0 files and on the server where you are installing Workflow Manager 1.0 files for offline installation scenarios.Workflow Manager 1.0
    Installation requires valid Web Platform Installer Version on Workflow Server.
    If you want to install Workflow Manager 1.0 on servers without internet connectivity, you will run into problems with the Web Platform Installer, the only tool Workflow Manager 1.0 can be installed with.
    There is a command line tool of Web Platform Installer, where you can download the installation files and all of its dependencies to a internet accessible machine, move it over to one of your servers and install it in offline mode.
    Take the following steps to do so:
    Download the
    WebPICMD.exe Package from the MS Download Center and unzip it to a folder (C:\WebPICMD\WebPICMD.exe in our case)
    Open a Command Prompt, navigate to the folder you extracted the tool and execute the following command:
    WebpiCmd.exe /Offline /Products:WorkflowManager /Path:D:\Temp\WorkflowManager\
    This will initiate a download with all the related components into the provided folder.
    Copy the WebPICMD.exe to the server where you want to install the WorkflowManager 1.0, in our example to
    D:\Temp\WebPICMD\WebPICMD.exe
    Copy the downloaded files to your server where you want to install the WorkflowManager 1.0, in our example to
    D:\Temp\WorkflowManager 
    Open a Command Prompt, navigate to the folder you copied the WebPICMD.exe tool and execute the following command:
    WebPICMD.exe /Install /Products:WorkflowManager
    /AcceptEULA /SuppressReboot
    /Log:./WorkflowManager.log /Xml:file:///D:\Temp\WorkflowManager\feeds\shadow-webproductlist.xmlThis will initiate the installation of the Workflow Manager 1.0 and its dependencies. The outcome of the installation will be logged to the WorkflowManager.log
    file. The above line will suppress reboots and will accept the license terms automatically.
    A log file will be created at the following path, where you can see the process and the warnings/errors/information about the installation:
    %localappdata%\microsoft\web platform installer\logs\webpicmd
    You could also go through these helpful
    links .
    Please revert back for any further help.
    Regards
    Prasant Chhetri

  • Errors when installing Workflow Manager

    I am trying to install WF Manager, but with no success.
    On the same machine, I have installed SQL Server 2014, SharePoint 2013 with SP1 and WF Manager.
    I installed WF manager (account that runs WF manager is sp farm admin) and registered with command
    Register-SPWorkflowService -SPSite "http://dev/" -WorkflowHostUri "http://localhost:12291" -AllowOAuthHttp
    In Central Admin, when I click on "Workflow Service Application Proxy ", I get message that WF is connected. Backend service is running. In SP Designer, I can create 2013 Workflow and publish it, but that WF does not work, it break instantly.
    In SP logs, I get this error when I try to activate feature that contains workflow (solution that contains WF created in Visual Studio):
    http://radioaddictsanonymous.com/view/635399286724222582163282/error-while-deploying-sp2013-workflow-from-vs2012-nullreferenceexception
    So, I deleted WF manager and service bus and reinstalled it, but with no luck. Now backedn service is not working, and I can't start it, getting this error:
    "The Workflow Manager Backend service could not be started  A system error has occurred  System error 1067 has occurred"
    In Event Viewer I have this error:
    https://social.technet.microsoft.com/Forums/office/en-US/de554aed-c9ae-4725-82fa-251446bacc20/workflow-manager-10-sharepoint-2013-the-process-was-terminated-due-to-an-unhandled-exception?forum=sharepointgeneral
    I have tried to reinstall everything couple of times, but it doesn't work. I think that I am not deleting everything related to workflow before reinstallation. How can I unregister already registered WF service and reinstall everything correctly??

    Hi,I had already done disableloopbackcheck and it did not matter.No problem with creating scopes (using powershell) but pairing fails anyway.Here is the config from a local explorer connection to the HTTPS port:(And following it, you may see the result of
    a scope enumerator script)
    <?xml version="1.0"?>
    <ScopeInfo xmlns="http://schemas.microsoft.com/workflow/2012/xaml/activities" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <ChildScopeCount>3</ChildScopeCount>
    <DefaultWorkflowConfiguration/>
    <Description>For / sample only</Description>
    <LastModified>2013-11-08T21:22:00.967</LastModified>
    <LastRevised>2013-11-08T00:04:31.88</LastRevised>
    <Path>/</Path>
    <SecurityConfigurations>
    <ScopedSecurityConfiguration i:type="WindowsSecurityConfiguration">
    <Name>Microsoft.Workflow.Management.Security.WindowsSecurityConfiguration</Name>
    <WorkflowAdminGroupName>altemis\WorkflowAdmins</WorkflowAdminGroupName>
    </ScopedSecurityConfiguration>
    </SecurityConfigurations><
    Status>Active</Status>
    </ScopeInfo>
    PS C:\Shared> C:\Shared\WF Script-Enumaret Scopes.ps1
    Name:
    Path: /
    Status: Active
    User Comments: For / sample only
    Parent: None
    Children: 3
    Exception calling "GetChildScopes" with "0" argument(s): "Scope '/$ChildScopes' was not found.  HTTP headers received from 
    the server - ActivityId: 616224db-0321-450a-92ef-f03384c008a2. NodeId: ALTEMIS-SVR02. Scope: /$ChildScopes. Client 
    ActivityId : 649dba85-dc89-0002-d9bf-9d6489dcce01."
    At C:\Shared\WF Script-Enumaret Scopes.ps1:21 char:9
    +         $manager.GetChildScopes() | % { WriteScopeInfo $scopeUri $_.Path $scope. ...
    +         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : ScopeNotFoundException
    Muharrem

  • Install workflow manager on sharepoint 2013

    hi , I install work flow manager .but i could not see  workflow 2013  in sharepoint 2013 .why ?

    http://technet.microsoft.com/en-us/library/jj658588%28v=office.15%29
    There is service application\option in SharePoint 2013 where you can see workflow 2013.
    You can see workflow 2013 in designer which comes with Workflow manager 2013. Also you have to configure workflow manager 2013 as per below:
    http://www.harbar.net/articles/wfm2.aspx
    http://blog.cloudshare.com/2013/01/15/how-to-install-and-configure-workflow-infrastructure-in-sharepoint-2013/
    http://lennytech.wordpress.com/2013/06/02/configuring-sharepoint-2013-to-use-workflow-manager-1-0/

  • Workflow Manager | Use of Subscribe Activity

    Hi 
    I am new to workflow manager and exploring the use of pub/sub acitivities. What I have understood is to "Receive Notification" activity is some what similar to "Receive and Send Response" activity WF4.5. However, I did not understand
    the use of "Subscribe" activity. I have downloaded, pub/sub sample activities from MSDN Using Pub/Sub Activities. 
    In this sample "Subscribe" activities has been used in "OrderTally.xaml" but not in "ProcessOrder.xaml". Can anyone please explain  when to use "Subscribe" activity? Do we always have to use Subscribe with Receive
    Notification activity? 
    Regards,
    RK
    Radhakrishna

    >Plz let me know the use of lo_portal_manager->SUBSCRIBE_EVENT...and give some solution for my problem.
    This method initializes the Portal Eventing framework and subscribes this applciation to listen for a particular portal event.
    So first question - is your application running in the portal and is it still part of the portal page with the iView that produces this event.  Are all the applications in iViews in this page running in the same domain - otherwise portal eventing fails becuase of cross site scripting security restrictions.

  • Re installing Workflow Manager SharePoint 2013

    In my domain I have only 1 SharePoint Machine where I also install the Workflow Service Manager, but now I'm facing alot of problems with the workflow manager, What I want is to Totally Remove or Uninstall the workflow Manager, and re-Install it with a very
    clean steps. Could someone help me !!

    Hi,
    Please refer to the link below to uninstall SharePoint 2013 Workflow Manager Farm:
    http://sharepointinaction.wordpress.com/2014/01/27/uninstallingremoving-sharepoint-2013-workflow-manager-farm/
    In addition, here is the reference for you to install and configure workflow for SharePoint Server 2013:
    http://technet.microsoft.com/en-us/library/jj658586(v=office.15).aspx
    You could also refer to the video series:
    http://technet.microsoft.com/en-us/library/dn201724(v=office.15).aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Workflow Manager - Add-WFHost fails with "Could not load file" error

    Hello! I'm not sure that its Sharepoint related topic but..
    I'm trying to install Workflow Manager using Powershell. I'm successfully created ServiceBus farm, create namespace, Add-SBhost etc. Also, i created WF Farm using New-WFFarm.
    Now i'm got SB Configuration and try to add my first host to WF Farm using standard cmdlets:
    $SBClientConfiguration = Get-SBClientConfiguration -Namespaces 'WorkflowDefaultNamespace'
    (it successfuly gives me some endpoint definitions)
    Add-WFHost -WFFarmDBConnectionString $WFFarmDBConStr -RunAsPassword $ServiceAccountPassword -EnableFirewallRules $true -SBClientConfiguration $SBClientConfiguration -CertificateAutoGenerationKey $CertificateAutoGenerationKey
    where
    $WFFarmDBConStr is typical connection string, i also used this to Get-WFFarm with no errors.
    $ServiceAccountPassword and $CertificateAutoGenerationKey are secure strings.
    But trouble appears with SBClientConfiguration, cmdlet returns error:
    "Cannot validate argument on parameter 'SBClientConiguration'. Could not load file or assebly 'Microsoft.ServiceBus, Version=1.8.0.0, Culture=neutral, PublicKeyToken=<SomeTokenSymbolsHere> or one of its dependencies. The system cannot
    find the file specified."
    What file it tries to load? I've installed all WorkflowManager binaries with
    webpicmd /Install /Product:WorkflowManagerRefresh key and don't know, what can be cause.

    Hi lehus,
    According to your description, my understanding is that you got an error when you configured Workflow Manager using PowerShell.
    Please try to use the following PowerShell command, compare the result:
    Add-WFHost -WFFarmDBConnectionString $WFFarmDBConStr -RunAsPassword $ServiceAccountPassword -EnableFirewallRules $true -SBClientConfiguration $SBClientConfiguration
    –EnableHttpPort -CertificateAutoGenerationKey $CertificateAutoGenerationKey
    -Verbose
    Check your process as:
    http://lennytech.wordpress.com/2013/06/02/configuring-workflow-manager-1-0-using-powershell/
    In addition, whether you could install and configure Workflow Manager with Workflow Manager Configuration Wizard. Please have a try as:
    http://prabathf.blogspot.com/2013/02/installing-and-configuring-workflow-for.html
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Workflow Manager 1.0 will install but NOT configure.

    Hello everyone,
         I have successfully installed Workflow Manager 1.0 (and its prerequisites) on my Server 2008 R2 SP1 machine
    that is hosting Sharepoint 2013.  I attempt to go into the Workflow Manager Configuration.  That comes up and asks me if I want to Create new farm with Default Settings, New Farm with custom settings, or existing farm.  I've tried both Default
    settings AND Custom settings.
        When the configuration wizard comes up, I attempt to fill out the necessary information.  It seems to connect
    to the SQL server without a problem.  I only run into an issue when setting the USER ID.  The program totally freezes up and force closes. 
        I have verified that the USERID is in the correct format and tried multiple different formats.  The problem
    is that the moment I move the cursor from the USERID field to ANY other field, the program force closes.  I'm not able to hit submit, I'm not able to change any other options.  The moment USERID is manipulated or the cursor LEAVES the USERID field,
    the program force closes.  It won't even allow me to put in a password before it force closes.
         Customer domain is running in Windows Server 2003 Enterprise Edittion SP2.
    Any ideas?
    Thank you very much!
    I have copied the errors from event viewer below:
    APPLICATION ERROR
    Faulting application name: Microsoft.Workflow.Deployment.ConfigWizard.exe, version: 1.0.20922.0, time stamp: 0x505e1b30
    Faulting module name: KERNELBASE.dll, version: 6.1.7601.17965, time stamp: 0x506dcae6
    Exception code: 0xe0434352
    Fault offset: 0x000000000000bccd
    Faulting process id: 0x17f8
    Faulting application start time: 0x01cddee198ece72e
    Faulting application path: C:\Program Files\Workflow Manager\1.0\Microsoft.Workflow.Deployment.ConfigWizard.exe
    Faulting module path: C:\Windows\system32\KERNELBASE.dll
    Report Id: 22ab8b69-4ad5-11e2-af8f-005056965915
    .NET Runtime Error
    Application: Microsoft.Workflow.Deployment.ConfigWizard.exe
    Framework Version: v4.0.30319
    Description: The process was terminated due to an unhandled exception.
    Exception Info: System.Runtime.InteropServices.COMException
    Stack:
       at System.DirectoryServices.AccountManagement.PrincipalContext.DoLDAPDirectoryInitNoContainer()
       at System.DirectoryServices.AccountManagement.PrincipalContext.DoDomainInit()
       at System.DirectoryServices.AccountManagement.PrincipalContext.Initialize()
       at System.DirectoryServices.AccountManagement.PrincipalContext.get_QueryCtx()
       at System.DirectoryServices.AccountManagement.Principal.FindByIdentityWithTypeHelper(System.DirectoryServices.AccountManagement.PrincipalContext, System.Type, System.Nullable`1<System.DirectoryServices.AccountManagement.IdentityType>, System.String,
    System.DateTime)
       at System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity(System.DirectoryServices.AccountManagement.PrincipalContext, System.String)
       at Microsoft.ServiceBus.Commands.Common.SecurityHelper.IsUserValid(System.DirectoryServices.AccountManagement.PrincipalContext, System.String)
       at Microsoft.ServiceBus.Commands.Common.SecurityHelper.IsDomainUserValid(System.String, System.String)
       at Microsoft.ServiceBus.Commands.Common.ValidateUserAttribute.Validate(System.String)
       at Microsoft.Deployment.ConfigWizard.UICommon.AccountDetailsViewModel.ValidateDomainUser()
       at Microsoft.Deployment.ConfigWizard.UICommon.AccountDetailsControl.UserIdTextBox_LostFocus(System.Object, System.Windows.RoutedEventArgs)
       at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean)
       at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs)
       at System.Windows.Controls.Primitives.TextBoxBase.OnLostFocus(System.Windows.RoutedEventArgs)
       at System.Windows.UIElement.IsFocused_Changed(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.Controls.TextBox.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean,
    System.Windows.OperationType)
       at System.Windows.DependencyObject.ClearValueCommon(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata)
       at System.Windows.DependencyObject.ClearValue(System.Windows.DependencyPropertyKey)
       at System.Windows.Input.FocusManager.OnFocusedElementChanged(System.Windows.DependencyObject, System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.FrameworkElement.OnPropertyChanged(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.NotifyPropertyChange(System.Windows.DependencyPropertyChangedEventArgs)
       at System.Windows.DependencyObject.UpdateEffectiveValue(System.Windows.EntryIndex, System.Windows.DependencyProperty, System.Windows.PropertyMetadata, System.Windows.EffectiveValueEntry, System.Windows.EffectiveValueEntry ByRef, Boolean, Boolean,
    System.Windows.OperationType)
       at System.Windows.DependencyObject.SetValueCommon(System.Windows.DependencyProperty, System.Object, System.Windows.PropertyMetadata, Boolean, Boolean, System.Windows.OperationType, Boolean)
       at System.Windows.DependencyObject.SetValue(System.Windows.DependencyProperty, System.Object)
       at System.Windows.FrameworkElement.OnGotKeyboardFocus(System.Object, System.Windows.Input.KeyboardFocusChangedEventArgs)
       at System.Windows.RoutedEventArgs.InvokeHandler(System.Delegate, System.Object)
       at System.Windows.EventRoute.InvokeHandlersImpl(System.Object, System.Windows.RoutedEventArgs, Boolean)
       at System.Windows.UIElement.RaiseEventImpl(System.Windows.DependencyObject, System.Windows.RoutedEventArgs)
       at System.Windows.UIElement.RaiseTrustedEvent(System.Windows.RoutedEventArgs)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.KeyboardDevice.ChangeFocus(System.Windows.DependencyObject, Int32)
       at System.Windows.Input.KeyboardDevice.Focus(System.Windows.DependencyObject, Boolean, Boolean, Boolean)
       at System.Windows.Input.KeyboardDevice.Focus(System.Windows.IInputElement)
       at System.Windows.UIElement.Focus()
       at System.Windows.Input.KeyboardNavigation.Navigate(System.Windows.DependencyObject, System.Windows.Input.TraversalRequest, System.Windows.Input.ModifierKeys, System.Windows.DependencyObject)
       at System.Windows.Input.KeyboardNavigation.Navigate(System.Windows.DependencyObject, System.Windows.Input.Key, System.Windows.Input.ModifierKeys)
       at System.Windows.Input.KeyboardNavigation.ProcessInput(System.Windows.Input.InputEventArgs)
       at System.Windows.Input.InputManager.RaiseProcessInputEventHandlers(System.Windows.Input.ProcessInputEventHandler, System.Windows.Input.ProcessInputEventArgs)
       at System.Windows.Input.InputManager.ProcessStagingArea()
       at System.Windows.Input.InputManager.ProcessInput(System.Windows.Input.InputEventArgs)
       at System.Windows.Interop.HwndKeyboardInputProvider.ReportInput(IntPtr, System.Windows.Input.InputMode, Int32, System.Windows.Input.RawKeyboardActions, Int32, Boolean, Boolean, Int32)
       at System.Windows.Interop.HwndKeyboardInputProvider.ProcessKeyAction(System.Windows.Interop.MSG ByRef, Boolean ByRef)
       at System.Windows.Interop.HwndSource.CriticalTranslateAccelerator(System.Windows.Interop.MSG ByRef, System.Windows.Input.ModifierKeys)
       at System.Windows.Interop.HwndSource.OnPreprocessMessage(System.Object)
       at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
       at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
       at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
       at System.Windows.Threading.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority, System.Delegate, System.Object)
       at System.Windows.Interop.HwndSource.OnPreprocessMessageThunk(System.Windows.Interop.MSG ByRef, Boolean ByRef)
       at System.Windows.Interop.ComponentDispatcherThread.RaiseThreadMessage(System.Windows.Interop.MSG ByRef)
       at System.Windows.Threading.Dispatcher.TranslateAndDispatchMessage(System.Windows.Interop.MSG ByRef)
       at System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
       at System.Windows.Application.RunInternal(System.Windows.Window)
       at System.Windows.Application.Run()
       at Microsoft.Workflow.Deployment.ConfigWizard.App.Main()

    Hi Scott, 
    Thank you very much.. Now I am able to run wizard.. but at the end of wizard step I am getting below error
    [Info] [1/23/2014 5:48:47 PM]: Endpoint=sb://MSPAPPS.psu.edu.sa/WorkflowDefaultNamespace;StsEndpoint=https://MSPAPPS.psu.edu.sa:9355/WorkflowDefaultNamespace;RuntimePort=9354;ManagementPort=9355
    [Info] [1/23/2014 5:48:47 PM]: Processing completed
    [Verbose] [1/23/2014 5:48:47 PM]: Validating input and configuration parameters.
    [Verbose] [1/23/2014 5:48:49 PM]: Installing auto-generated certificate.
    [Progress] [1/23/2014 5:48:49 PM]: Installing auto-generated certificate.
    [Verbose] [1/23/2014 5:48:51 PM]: Granting 'Log on as Service' privilege to the RunAs account.
    [Progress] [1/23/2014 5:48:51 PM]: Granting 'Log on as Service' privilege to the RunAs account.
    [Verbose] [1/23/2014 5:48:52 PM]: Workflow Manager configuration starting.
    [Progress] [1/23/2014 5:48:52 PM]: Workflow Manager configuration starting.
    [Verbose] [1/23/2014 5:48:55 PM]: Configuring Workflow Manager runtime settings.
    [Progress] [1/23/2014 5:48:55 PM]: Configuring Workflow Manager runtime settings.
    [Error] [1/23/2014 5:48:55 PM]: System.Management.Automation.CmdletInvocationException: The token provider was unable to provide a security token while accessing 'https://mspapps.psu.edu.sa:9355/WorkflowDefaultNamespace/$STS/Windows/'. Token provider returned
    message: 'The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.'. ---> System.UnauthorizedAccessException: The token provider was unable to provide a security token while accessing 'https://mspapps.psu.edu.sa:9355/WorkflowDefaultNamespace/$STS/Windows/'.
    Token provider returned message: 'The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.'. ---> System.IdentityModel.Tokens.SecurityTokenException: The token provider was unable to provide a security
    token while accessing 'https://mspapps.psu.edu.sa:9355/WorkflowDefaultNamespace/$STS/Windows/'. Token provider returned message: 'The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.'. ---> System.Net.WebException:
    The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.
       at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)
       at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)
       at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)
       at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)
       at System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size)
       at System.Net.ConnectStream.WriteHeaders(Boolean async)
       --- End of inner exception stack trace ---
       at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
       at System.Net.HttpWebRequest.GetRequestStream()
       at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
       --- End of inner exception stack trace ---
       at Microsoft.ServiceBus.TokenProviderHelper.ThrowException(Uri requestUri, WebException exception)
       at Microsoft.ServiceBus.TokenProviderHelper.GetWindowsAccessTokenCore(IEnumerator`1 stsUris, Func`2 uriBuilder, String requestToken, TimeSpan timeout, DateTime& expiresIn)
       at Microsoft.ServiceBus.WindowsTokenProvider.OnBeginGetWebToken(String appliesTo, String action, TimeSpan timeout, AsyncCallback callback, Object state)
       at Microsoft.ServiceBus.TokenProvider.GetWebTokenAsyncResult..ctor(TokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
       at Microsoft.ServiceBus.TokenProvider.BeginGetWebToken(String appliesTo, String action, Boolean bypassCache, TimeSpan timeout, AsyncCallback callback, Object state)
       at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingWebToken(ITokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
       --- End of inner exception stack trace ---
    Server stack trace: 
       at Microsoft.ServiceBus.TokenProviderUtility.GetMessagingWebToken(ITokenProvider tokenProvider, String appliesTo, String action, Boolean bypassCache, TimeSpan timeout)
       at Microsoft.ServiceBus.Messaging.HttpWebRequestExtensions.AddAuthorizationHeader(HttpWebRequest request, ITokenProvider tokenProvider, Uri baseAddress, String action)
       at Microsoft.ServiceBus.Messaging.ServiceBusResourceOperations.GetAsyncResult`1.<GetAsyncSteps>d__11.MoveNext()
       at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.EnumerateSteps(CurrentThreadType state)
       at Microsoft.ServiceBus.Messaging.IteratorAsyncResult`1.Start()
    Exception rethrown at [0]: 
       at Microsoft.ServiceBus.Common.AsyncResult.End[TAsyncResult](IAsyncResult result)
       at Microsoft.ServiceBus.NamespaceManager.OnEndTopicExists(IAsyncResult result)
       at Microsoft.ServiceBus.NamespaceManager.TopicExists(String path)
       at Microsoft.Workflow.Deployment.Commands.WorkflowServiceConfigHelper.SetWFRuntimeSettings(String resourceDBConnectionString, String config)
       at Microsoft.Workflow.Deployment.Commands.AddWFHost.CallWFRuntimeSettings(Service wfserviceInfo, String unencryptedResourceConnectionString)
       --- End of inner exception stack trace ---
       at System.Management.Automation.PowerShell.EndInvoke(IAsyncResult asyncResult)
       at Microsoft.Workflow.Deployment.ConfigWizard.CommandletHelper.InvokePowershell(Command command, Action`3 updateProgress)
       at Microsoft.Workflow.Deployment.ConfigWizard.ProgressPageViewModel.AddWFNode(FarmCreationModel model, Boolean isFirstCommand)

Maybe you are looking for

  • What are the benefits of ESS/MSS

    Hi All, I would like to know the benefits of ESS/MSS for an organizations. Please provide me with some links/ docs/ PPTs. My mail id is [email protected] Regards Nikhil

  • How to take tkprof for a query

    Hi, How to take tkprof for a query? Nirmal

  • We need a script that will select clipping path for multiple images in indesign

    this is what we have, but it's not working: app.scriptPreferences.userInteractionLevel = UserInteractionLevels.interactWithAll;  app.doScript(resetAllClippingPathsToActiveDoc, ScriptLanguage.JAVASCRIPT, [], UndoModes.ENTIRE_SCRIPT, "Reset all Clippin

  • TOC not working in RH10 WebHelp with IE8

    Hi all, My generated Webhelp results in TOC books that will not expand or collapse after navigating via the TOC. It seems to work fine in Chrome, though. Any ideas/workarounds/fixes? Thx -Matt @mattrsullivan

  • Mail index unable to load

    Greetings all, I am having problems opening my mail app on my macbook pro. unable to load my mail index, it will just lagged and hang after a moment. Please advise. Thank you