From d779d480700a9eaafc71f5ddb970465030f3fa46 Mon Sep 17 00:00:00 2001 From: TFinnerty22 Date: Fri, 15 Sep 2017 12:09:49 -0400 Subject: [PATCH] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index f68a22f..4f44730 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,10 @@ # PowerShell_Import_Export This repository contains two PowerShell scripts for an easier way of handling import/export of jobs from a folder level in JAMS version 6.x + +Included are two powershell scripts. By default our Export-JAMSXml cmdlet will only export one job or folder at a time. + +The Export PowerShell script was built to be able to export all jobs within a given folder in a two step process. First it exports all of the job names and then the full job definitions. + +The Import PowerShell script allows the user to import the xml file with just the job names so the job definitions are created first to avoid any dependency issues and then the user would import the full job definitions from the second export file. + +If a user tries to import jobs that have dependencies attached to them and those dependencies are not imported first, the import will fail. This ensures that a "shell" of all of the jobs are imported first that way dependencies are covered.