Merge Active Setup JScript files
Having custom actions as JScript functions results in less clutter. Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
parent
881fd62d24
commit
093c38e432
141
Core/Binary/ActiveSetup.js
Normal file
141
Core/Binary/ActiveSetup.js
Normal file
@ -0,0 +1,141 @@
|
|||||||
|
/*
|
||||||
|
* MSIBuild — MSI packaging
|
||||||
|
*
|
||||||
|
* Copyright (C) 2018-2020 Amebis <info@amebis.si>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License version 2
|
||||||
|
* as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Evaluates Active Setup component state and prepares instructions for
|
||||||
|
* PublishActiveSetup deferred action.
|
||||||
|
*/
|
||||||
|
function EvaluateActiveSetup()
|
||||||
|
{
|
||||||
|
var
|
||||||
|
productCode = Session.Property("ProductCode"),
|
||||||
|
version;
|
||||||
|
|
||||||
|
// Read the current component version from registry. Default to "0".
|
||||||
|
try {
|
||||||
|
var wsh = new ActiveXObject("WScript.Shell");
|
||||||
|
version = new String(wsh.RegRead("HKLM\\Software\\Microsoft\\Active Setup\\Installed Components\\" + productCode + "\\" + "Version"));
|
||||||
|
if (!version || version.length == 0)
|
||||||
|
throw new Error("Active Setup component version not found.");
|
||||||
|
} catch (err) {
|
||||||
|
version = "0";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Session.EvaluateCondition("NOT Installed") == 1/*msiEvaluateConditionTrue*/) {
|
||||||
|
// Increment the last version component.
|
||||||
|
var v = version.split(",").slice(0, 4);
|
||||||
|
v[v.length - 1] = (parseInt(v[v.length - 1], 10) + 1).toString();
|
||||||
|
version = v.join(",");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save the data for deferred action.
|
||||||
|
Session.Property("PublishActiveSetup") =
|
||||||
|
(Session.EvaluateCondition("REMOVE=\"ALL\"") == 1/*msiEvaluateConditionTrue*/ ?
|
||||||
|
["uninstall", productCode] :
|
||||||
|
["install", productCode, Session.Property("ProductName"), version]
|
||||||
|
).join("\t");
|
||||||
|
|
||||||
|
return 1/*msiDoActionStatusSuccess*/;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Publishes Active Setup component
|
||||||
|
*
|
||||||
|
* This is an in-script action. CustomActionData property should be one of:
|
||||||
|
*
|
||||||
|
* "install\t<product code>\t<product name>\t<Action Setup component version>"
|
||||||
|
* Installs Active Setup component
|
||||||
|
*
|
||||||
|
* "uninstall\t<product code>"
|
||||||
|
* Marks Active Setup component as uninstalled
|
||||||
|
*/
|
||||||
|
function PublishActiveSetup()
|
||||||
|
{
|
||||||
|
var data = Session.Property("CustomActionData").split("\t");
|
||||||
|
if (data && data.length >= 2) {
|
||||||
|
var
|
||||||
|
wsh = new ActiveXObject("WScript.Shell"),
|
||||||
|
regPath = "HKLM\\Software\\Microsoft\\Active Setup\\Installed Components\\" + data[1] + "\\";
|
||||||
|
|
||||||
|
switch (data[0].toLowerCase()) {
|
||||||
|
case "install":
|
||||||
|
if (data.length >= 4) {
|
||||||
|
// Register component.
|
||||||
|
wsh.RegWrite(regPath, data[2], "REG_SZ");
|
||||||
|
wsh.RegWrite(regPath + "Version", data[3], "REG_SZ");
|
||||||
|
|
||||||
|
// Mark component as installed.
|
||||||
|
wsh.RegWrite(regPath + "IsInstalled", 1, "REG_DWORD");
|
||||||
|
wsh.RegWrite(regPath + "DontAsk" , 2, "REG_DWORD");
|
||||||
|
|
||||||
|
// Set action to execute on user logon.
|
||||||
|
wsh.RegWrite(regPath + "StubPath", "\"%SystemRoot%\\system32\\msiexec.exe\" /fu \"" + data[1] + "\" /qn", "REG_EXPAND_SZ");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case "uninstall":
|
||||||
|
// Mark component as uninstalled.
|
||||||
|
wsh.RegWrite(regPath + "IsInstalled", 0, "REG_DWORD");
|
||||||
|
|
||||||
|
// We should have set the StubPath to execute cleanup. Unfortunately, when
|
||||||
|
// the StubPath gets executed, the MSI package is gone already. So, a
|
||||||
|
// `msiexec /x [ProductCode] /qn` is not possible any more.
|
||||||
|
try { wsh.RegDelete(regPath + "StubPath"); } catch (err) {}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1/*msiDoActionStatusSuccess*/;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Prepares instructions for FixActiveSetup deferred action.
|
||||||
|
*/
|
||||||
|
function EvaluateFixActiveSetup()
|
||||||
|
{
|
||||||
|
// Save the data for the deferred action.
|
||||||
|
Session.Property("FixActiveSetup") = Session.Property("ACTIVESETUPFAULTYPRODUCTS")
|
||||||
|
|
||||||
|
return 1/*msiDoActionStatusSuccess*/;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fixes Active Setup component to allow graceful uninstall
|
||||||
|
*
|
||||||
|
* This is an in-script action. CustomActionData property should be a semicolon delimited list of
|
||||||
|
* product IDs that require this fix to be uninstalled successfuly.
|
||||||
|
*/
|
||||||
|
function FixActiveSetup()
|
||||||
|
{
|
||||||
|
var data = Session.Property("CustomActionData").split(";");
|
||||||
|
if (data) {
|
||||||
|
var wsh = new ActiveXObject("WScript.Shell");
|
||||||
|
|
||||||
|
for (var i in data) {
|
||||||
|
var regPath = "HKLM\\Software\\Microsoft\\Active Setup\\Installed Components\\" + data[i] + "\\";
|
||||||
|
wsh.RegWrite(regPath + "StubPath", "\"%SystemRoot%\\system32\\msiexec.exe\" /fu \"" + data[i] + "\" /qn", "REG_EXPAND_SZ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 1/*msiDoActionStatusSuccess*/;
|
||||||
|
}
|
@ -1,52 +0,0 @@
|
|||||||
/*
|
|
||||||
* MSIBuild — MSI packaging
|
|
||||||
*
|
|
||||||
* Copyright (C) 2018-2020 Amebis <info@amebis.si>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2
|
|
||||||
* as published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Evaluates Active Setup component state and prepares instructions for
|
|
||||||
* PublishActiveSetup deferred action.
|
|
||||||
*/
|
|
||||||
|
|
||||||
var
|
|
||||||
productCode = Session.Property("ProductCode"),
|
|
||||||
version;
|
|
||||||
|
|
||||||
// Read the current component version from registry. Default to "0".
|
|
||||||
try {
|
|
||||||
var wsh = new ActiveXObject("WScript.Shell");
|
|
||||||
version = new String(wsh.RegRead("HKLM\\Software\\Microsoft\\Active Setup\\Installed Components\\" + productCode + "\\" + "Version"));
|
|
||||||
if (!version || version.length == 0)
|
|
||||||
throw new Error("Active Setup component version not found.");
|
|
||||||
} catch (err) {
|
|
||||||
version = "0";
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Session.EvaluateCondition("NOT Installed") == 1/*msiEvaluateConditionTrue*/) {
|
|
||||||
// Increment the last version component.
|
|
||||||
var v = version.split(",").slice(0, 4);
|
|
||||||
v[v.length - 1] = (parseInt(v[v.length - 1], 10) + 1).toString();
|
|
||||||
version = v.join(",");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save the data for deferred action.
|
|
||||||
Session.Property("PublishActiveSetup") =
|
|
||||||
(Session.EvaluateCondition("REMOVE=\"ALL\"") == 1/*msiEvaluateConditionTrue*/ ?
|
|
||||||
["uninstall", productCode] :
|
|
||||||
["install", productCode, Session.Property("ProductName"), version]
|
|
||||||
).join("\t");
|
|
@ -1,26 +0,0 @@
|
|||||||
/*
|
|
||||||
* MSIBuild — MSI packaging
|
|
||||||
*
|
|
||||||
* Copyright (C) 2018-2020 Amebis <info@amebis.si>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2
|
|
||||||
* as published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prepares instructions for FixActiveSetup deferred action.
|
|
||||||
*/
|
|
||||||
|
|
||||||
// Save the data for the deferred action.
|
|
||||||
Session.Property("FixActiveSetup") = Session.Property("ACTIVESETUPFAULTYPRODUCTS")
|
|
@ -1,36 +0,0 @@
|
|||||||
/*
|
|
||||||
* MSIBuild — MSI packaging
|
|
||||||
*
|
|
||||||
* Copyright (C) 2018-2020 Amebis <info@amebis.si>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2
|
|
||||||
* as published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fixes Active Setup component to allow graceful uninstall
|
|
||||||
*
|
|
||||||
* This is a deffered execution action. CustomActionData property should be a semicolon delimited
|
|
||||||
* list of product IDs that require this fix to be uninstalled successfuly.
|
|
||||||
*/
|
|
||||||
|
|
||||||
var data = Session.Property("CustomActionData").split(";");
|
|
||||||
if (data) {
|
|
||||||
var wsh = new ActiveXObject("WScript.Shell");
|
|
||||||
|
|
||||||
for (var i in data) {
|
|
||||||
var regPath = "HKLM\\Software\\Microsoft\\Active Setup\\Installed Components\\" + data[i] + "\\";
|
|
||||||
wsh.RegWrite(regPath + "StubPath", "\"%SystemRoot%\\system32\\msiexec.exe\" /fu \"" + data[i] + "\" /qn", "REG_EXPAND_SZ");
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,66 +0,0 @@
|
|||||||
/*
|
|
||||||
* MSIBuild — MSI packaging
|
|
||||||
*
|
|
||||||
* Copyright (C) 2018-2020 Amebis <info@amebis.si>
|
|
||||||
*
|
|
||||||
* This program is free software; you can redistribute it and/or modify
|
|
||||||
* it under the terms of the GNU General Public License version 2
|
|
||||||
* as published by the Free Software Foundation.
|
|
||||||
*
|
|
||||||
* This program is distributed in the hope that it will be useful,
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
* GNU General Public License for more details.
|
|
||||||
*
|
|
||||||
* You should have received a copy of the GNU General Public License along
|
|
||||||
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
||||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Publishes Active Setup component
|
|
||||||
*
|
|
||||||
* This is a deffered execution action. CustomActionData property should be
|
|
||||||
* one of:
|
|
||||||
*
|
|
||||||
* "install\t<product code>\t<product name>\t<Action Setup component version>"
|
|
||||||
* Installs Active Setup component
|
|
||||||
*
|
|
||||||
* "uninstall\t<product code>"
|
|
||||||
* Marks Active Setup component as uninstalled
|
|
||||||
*/
|
|
||||||
|
|
||||||
var data = Session.Property("CustomActionData").split("\t");
|
|
||||||
if (data && data.length >= 2) {
|
|
||||||
var
|
|
||||||
wsh = new ActiveXObject("WScript.Shell"),
|
|
||||||
regPath = "HKLM\\Software\\Microsoft\\Active Setup\\Installed Components\\" + data[1] + "\\";
|
|
||||||
|
|
||||||
switch (data[0].toLowerCase()) {
|
|
||||||
case "install":
|
|
||||||
if (data.length >= 4) {
|
|
||||||
// Register component.
|
|
||||||
wsh.RegWrite(regPath, data[2], "REG_SZ");
|
|
||||||
wsh.RegWrite(regPath + "Version", data[3], "REG_SZ");
|
|
||||||
|
|
||||||
// Mark component as installed.
|
|
||||||
wsh.RegWrite(regPath + "IsInstalled", 1, "REG_DWORD");
|
|
||||||
wsh.RegWrite(regPath + "DontAsk" , 2, "REG_DWORD");
|
|
||||||
|
|
||||||
// Set action to execute on user logon.
|
|
||||||
wsh.RegWrite(regPath + "StubPath", "\"%SystemRoot%\\system32\\msiexec.exe\" /fu \"" + data[1] + "\" /qn", "REG_EXPAND_SZ");
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
|
|
||||||
case "uninstall":
|
|
||||||
// Mark component as uninstalled.
|
|
||||||
wsh.RegWrite(regPath + "IsInstalled", 0, "REG_DWORD");
|
|
||||||
|
|
||||||
// We should have set the StubPath to execute cleanup. Unfortunately, when
|
|
||||||
// the StubPath gets executed, the MSI package is gone already. So, a
|
|
||||||
// `msiexec /x [ProductCode] /qn` is not possible any more.
|
|
||||||
try { wsh.RegDelete(regPath + "StubPath"); } catch (err) {}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
BIN
Core/Makefile
BIN
Core/Makefile
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user