You are viewing limited content. For full access, please sign in.

Question

Question

Unattended Workflow Installation using PowerShell

asked on April 15, 2014

We are using this command for an unattended workflow install through PowerShell, but it doesn't work.

 

E:\laserfiche911\en\workflow> .\setup -silent SVCACCOUNTNAME="RLG\SRVAccount" SVCACCOUNTPASSWORD="srvPass" -log "C:\logs\lfwf.log" INSTALLLEVEL=1000 

 

It crashes even before creating a log file for us. So we are not sure that where the issue is.

 

Any ideas?

0 0

Replies

replied on April 15, 2014

I have unattended Workflow install working using this command: 

 

“E:\Laserfiche911\en\Workflow\Setup.exe” –silent –iacceptlicenseagreement INSTALLLEVEL=1000 –log “E:\InstallationLogs\WFInstall”

 

Can someone covert this into PowerShell for me please. (may be I am lazy to google :) )

Thanks

0 0
replied on April 15, 2014

Command line using Service Accounts.

 

“E:\Laserfiche911\en\Workflow\Setup.exe” –silent –iacceptlicenseagreement –SVCACCOUNTNAME=”Domain\ AccountName” –SVCACCOUNTPASSWORD=” AccountPass” INSTALLLEVEL=1000 –log “E:\InstallationLogs\WFInstall”

0 0
replied on January 11, 2019

Hi have you attempted doing the following?

cmd /c ' “E:\Laserfiche911\en\Workflow\Setup.exe” –silent –iacceptlicenseagreement –SVCACCOUNTNAME=”Domain\ AccountName” –SVCACCOUNTPASSWORD=” AccountPass” INSTALLLEVEL=1000 –log “E:\InstallationLogs\WFInstall” '

# OR MULTI LINE

$command = (' “E:\Laserfiche911\en\Workflow\Setup.exe” `
 –silent –iacceptlicenseagreement `
–SVCACCOUNTNAME=”Domain\ AccountName” `
–SVCACCOUNTPASSWORD=” AccountPass”`
 INSTALLLEVEL=1000 –log “E:\InstallationLogs\WFInstall” ')

cmd /c $command



 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.