/build/static/layout/Breadcrumb_cap_w.png

Umetrics Simca-P Plus

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 4.7k  |  Created: 10/22/2008

Average Rating: 0
Simca-P Plus has 1 inventory records, 0 Questions, 0 Blogs and 2 links. Please help add to this by sharing more!

Deployment Tips (4)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 2 / 5 (Somewhat Easy) based on 1 ratings
Most Commonly Reported Deployment Method
Windows Installer Command Line (No MST)
1
Note
Umetrics provides since a while back a native msi-package. A script still offers more customisability. The below script is what I use to deploy Umetrics Simca-P+ v12.0 over Active Directory with a GPO.

1. Get the native msi-package from the Umetrics web site at http://www.umetrics.com/default.asp/pagename/downloads_software/c/1. It may also be distributed as is on cd if you're already a previous owner.

2. Install the package on one machine manually first, typing in the correct serial number. Don't check the demo checkbox unless you don't have the serial.

2.1 Start the application, and a registration dialog box opens. Assuming you have a license server on your network choose the (network) license server button. If you don't choose as appropriate from the three choices.

2.1 Close the application when regged and done.

2.2 Go to %allusersprofile%\application data\Umetrics-folder and collect the UmetricsLicensePaths.xml file. Put this file in the same shared folder as in §3.

3. Put the msi-package in a shared folder accessible from all computers on your network.

4. Create a cmd-file in the same folder as in §3, I called it "_deploy_simca120.cmd", and enter the lines between the "---".

---
@echo off

echo Uninstall simca11:
echo Checking if Simca-P+ v11.0 is installed...
if exist "%ProgramFiles%\Umetrics\simca-p+ 11\Program\simca.exe" MsiExec.exe /qb /X {6DD988AF-5B50-4BBD-A367-C7D5365E69AD} else goto uninstall_11.5

:uninstall_11.5
echo Uninstall simca11.5:
echo Checking if Simca-P+ v11.5 is installed...
if exist "%ProgramFiles%\Umetrics\simca-p+ 11.5\Program\simcap.exe" MsiExec.exe /qb /X {59DACC2E-1FD2-4C21-983C-F7D1121C27BC} else goto simca12.0

:simca12.0
echo Install Simca-P+:
echo Checking if Simca-P+ v12.0 is already installed...
if exist "%ProgramFiles%\Umetrics\SIMCA-P+ 12.0\Program\simcap.exe" goto message else goto install

:install
echo Installing Simca-P+ v12.0...
msiexec /qb /i "\\domain\dfs\msi\Umetrics\Simca-P+ v12.0 (release 2008-05-20)\SIMCA-P+ 12.0.msi" DIR="%ProgramFiles%\umetrics\simca-p+ 12.0" PRODUCTKEY=nnnn-nnnn-nnnn
"\\domain\dfs\msi\robocopy" "\\domain\dfs\msi\Umetrics\Simca-P+ v12.0 (release 2008-05-20)" "%allusersprofile%\Application Data\Umetrics" UmetricsLicensePaths.xml /W:5 /R:2
if exist "%allusersprofile%\Desktop\SIMCA-P+ 12.0.lnk" del /F /Q "%allusersprofile%\Desktop\SIMCA-P+ 12.0.lnk" else goto end

:message
echo Simca-P+ v12.0 already installed!

:end
---

Explanations for the above script:

* Check for and uninstall as necessary for Simca-P+ v11. You may rem this out or delete entirely if you want to keep oldr versions as appropriate for your system.

* Check for and uninstall as necessary for Simca-P+ v11.5. You may rem this out or delete entirely if you want to keep oldr versions as appropriate for your system.

* Check if Simca-P+ v12 is already installed. If it is, exit with a message.

* Install Simca-P+ v12 to the default folder "%ProgramFiles%\umetrics\simca-p+ 12.0" and use the serialnumber nnnn-nnnn-nnnn.

* Copy the license server xml-file to the proper folder in %allusersprofile%.

* If a Simca-P+ desktop icon is created, delete it from the %allusersprofile%\desktop-folder.

5. Add a GPO and point it to the cmd-file. Deploy it the usual way.

6. You're done.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
1
Note
Umetrics provides since a while back a native msi-package. A script still offers more customisability. The below script is what I use to deploy Umetrics Simca-P+ v12.0 over Active Directory with a GPO.

1. Get the native msi-package from the Umetrics web site at http://www.umetrics.com/default.asp/pagename/downloads_software/c/1. It may also be distributed as is on cd if you're already a previous owner.

2. Install the package on one machine manually first, typing in the correct serial number. Don't check the demo checkbox unless you don't have the serial.

2.1 Start the application, and a registration dialog box opens. Assuming you have a license server on your network choose the (network) license server button. If you don't choose as appropriate from the three choices.

2.1 Close the application when regged and done.

2.2 Go to %allusersprofile%\application data\Umetrics-folder and collect the UmetricsLicensePaths.xml file. Put this file in the same shared folder as in §3.

3. Put the msi-package in a shared folder accessible from all computers on your network.

4. Create a cmd-file in the same folder as in §3, I called it "_deploy_simca120.cmd", and enter the lines between the "---".

---
@echo off

echo Uninstall simca11:
echo Checking if Simca-P+ v11.0 is installed...
if exist "%ProgramFiles%\Umetrics\simca-p+ 11\Program\simca.exe" MsiExec.exe /qb /X {6DD988AF-5B50-4BBD-A367-C7D5365E69AD} else goto uninstall_11.5

:uninstall_11.5
echo Uninstall simca11.5:
echo Checking if Simca-P+ v11.5 is installed...
if exist "%ProgramFiles%\Umetrics\simca-p+ 11.5\Program\simcap.exe" MsiExec.exe /qb /X {59DACC2E-1FD2-4C21-983C-F7D1121C27BC} else goto simca12.0

:simca12.0
echo Install Simca-P+:
echo Checking if Simca-P+ v12.0 is already installed...
if exist "%ProgramFiles%\Umetrics\SIMCA-P+ 12.0\Program\simcap.exe" goto message else goto install

:install
echo Installing Simca-P+ v12.0...
msiexec /qb /i "\\domain\dfs\msi\Umetrics\Simca-P+ v12.0 (release 2008-05-20)\SIMCA-P+ 12.0.msi" DIR="%ProgramFiles%\umetrics\simca-p+ 12.0" PRODUCTKEY=nnnn-nnnn-nnnn
"\\domain\dfs\msi\robocopy" "\\domain\dfs\msi\Umetrics\Simca-P+ v12.0 (release 2008-05-20)" "%allusersprofile%\Application Data\Umetrics" UmetricsLicensePaths.xml /W:5 /R:2
if exist "%allusersprofile%\Desktop\SIMCA-P+ 12.0.lnk" del /F /Q "%allusersprofile%\Desktop\SIMCA-P+ 12.0.lnk" else goto end

:message
echo Simca-P+ v12.0 already installed!

:end
---

Explanations for the above script:

* Check for and uninstall as necessary for Simca-P+ v11. You may rem this out or delete entirely if you want to keep oldr versions as appropriate for your system.

* Check for and uninstall as necessary for Simca-P+ v11.5. You may rem this out or delete entirely if you want to keep oldr versions as appropriate for your system.

* Check if Simca-P+ v12 is already installed. If it is, exit with a message.

* Install Simca-P+ v12 to the default folder "%ProgramFiles%\umetrics\simca-p+ 12.0" and use the serialnumber nnnn-nnnn-nnnn.

* Copy the license server xml-file to the proper folder in %allusersprofile%.

* If a Simca-P+ desktop icon is created, delete it from the %allusersprofile%\desktop-folder.

5. Add a GPO and point it to the cmd-file. Deploy it the usual way.

6. You're done.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Note

Since Umetrics now provides a native msi-package, you might also deploy it directly without the script. Tweak the msi-package with Orca (see notes for Simca-P+ 11.5). This is however untested, I don't see why it wouldn't work with v12 as well though.

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
0
Command Line
Silent uninstallation string:

MsiExec.exe /X{F0BCD566-41AD-4D0B-AD77-62A0686F38A6} /qb
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (1)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

Versions

Simca-P Plus

Version

12

Questions & Answers (0)

Questions & Answers related to Umetrics Simca-P Plus

Blogs (0)

Blog posts related to Umetrics Simca-P Plus

Reviews (0)

Reviews related to Umetrics Simca-P Plus

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ