Obtaining,_Applying_and_Deploying_Service_Releases

  • 格式:pdf
  • 大小:5.22 KB
  • 文档页数:3

Go back to Multi-user Site Deployment
OriginLab periodically releases Service Releases as a patch. To apply a patch to your Origin or OriginPro, you must be logged into the computer with a log in account that has local administrative priviliges.
Obtaining a Service Release
There are two methods to check if a patch is available and obtain a patch:
Check for Updates
All registered Origin/OriginPro users can run Help: Check for
Updates to check if there is patch available for the
Origin/OriginPro Version and Build you are running.If a patch is available, it will display in the Check for Updates dialog box, and you can select to download the patch.
At the end of the patch download process, you will be asked if you want to close Origin/OriginPro to run patch, or run the patch later.
Information is provided on how to run the patch at a later time.1. Download the Patch from OriginLab Website
OriginLab also provides patches for download from the Support area of the OriginLab website.
Before checking if a patch is available, please run Origin or OriginPro and select Help:About Origin . Make note of the version and
full build number in the About Origin dialog box. The patch download page on the OriginLab website provides instructions on saving and applying the patch. A link is also provided to review the patch Release Notes.
2. Deploying a Service Release at Multi-user Sites
Distributing a Patch using the Group Folder Origin/OriginPro have the option to establish a Group Leader. The Group Leader can publish a patch to members of their group.
To use the Group Leader to publish a patch, perform the following steps:First you must patch your Origin or OriginPro Group Leader.Please review the sections above to learn how to patch the Origin or OriginPro Group Leader.♦ After the patch has been applied to the Origin/OriginPro Group Leader, re-start the Group Leader.
♦ 1.
Select Tools:Group Folder Manager, and publish the patch file ♦
that you applied to the Group Leader.
Now when the Origin/OriginPro users start their Origin/OriginPro,
they will see a message that a patch is available from the Group
Leader. They can choose to apply the patch, close their
Origin/OriginPro, and the patch program will start running.
2.
Silent Patching
Silent patching is supported starting with the Origin/OriginPro 8
SR1 patch.
To perform silent patching, first obtain and save the patch to any
location on the target computer or on a networked drive.
To run the patch silently, write a script to run the patch on the
target computer, using the /S switch, as in:
<path>\<patch file> /S
For example, if the patch is saved on c:\773d-725c-sr0tosr1.exe,
then your script would run:
c:\773d-725c-sr0tosr1.exe /S
As long as Origin/OriginPro 8.5 has been run at least once on the
target computer, the patch program will locate the Origin/OriginPro
8.5 folder to patch.
After the patch program completes, a VisualPatchLogSr1.txt file is
saved to the Origin/OriginPro 8.5 \Updates\ folder. This file
contains a list of all the files patched.
For the case where the Origin/OriginPro 8.5 has NOT been run on the target computer yet, then you must create an initialization file
that specifies the location of the Origin/OriginPro 8.5 program
folder, assuming you are running the patch from a location other
than the Origin/OriginPro 8.5 \Updates\ folder. The initialization
file must contain the following content:
[Variables]
%AppFolder%=<path to Origin/OriginPro 8.5 program folder>
For example:
[Variables]
%AppFolder%=C:\Program Files\OriginLab\Origin 85\ To specify this initialization file when running the patch silently,
your script would need to include this syntax:
<path>\<patch file> "/S:<path and initialization file name"
For example:
c:\773d-725c-sr0tosr1.exe "/S:c:\silentPatch.ini"
If the Program Files area may be in a different location on
different computers, then you can use the %ProgramFilesFolder% notation in your initialization file, as follows:
[Variables]
%AppFolder%=%ProgramFilesFolder%\OriginLab\Origin 85\。