You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Introduction

JS7 supports automated installation and updates from Installation Scripts:

Install or Update

Install Agent for Unix

Sign from Keystore

Example for use of Installation Script
./Sign-JS7Workflow.ps1 `
    -Keystore ./workflow-signing.p12 `
    -AskForCredentials

# signs all *.workflow.json files in the current directory
# makes use of the indicated keystore that holds the private key and certificate for code signing
# asks for secure input of the keystore password

Sign from Key file and Certificate File

Example for use of Installation Script
./Sign-JS7Workflow.ps1 `
    -Key ./workflow-signing.key `
    -Cert ./workflow-signing.crt

# signs all *.workflow.json files in the current directory
# makes use of the indicated key file that holds the private key and certificate file for code signing

Sign from Key file and Certificate File

Example for use of Installation Script
./Sign-JS7Workflow.ps1 `
    -Dir ./some/folder `
    -Recurse `
    -Keystore ./workflow-signing.p12 `
    -AskForCredentials
 
# signs all *.workflow.json files in the indicated directory and sub-directories recursively
# makes use of the indicated keystore that holds the private key and certificate for code signing


Sign from Key file and Certificate File

Example for use of Installation Script
$env:

./Sign-JS7Workflow.ps1 `
    -Key ./workflow-signing.key `
    -Cert ./workflow-signing.crt

# signs all *.workflow.json files in the current directory
# makes use of the indicated key file that holds the private key and certificate file for code signing
  • No labels