Update TGBeta.ps1
This commit is contained in:
38
TGBeta.ps1
38
TGBeta.ps1
@@ -822,7 +822,7 @@ function GetHtmlContent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function triggerInstall() {
|
async function triggerInstall() {
|
||||||
const dropdown = document.getElementById('dattoRmmDropdown');
|
const dropdown = document.getElementById('dattoRmmDropdown');
|
||||||
const UID = dropdown.options[dropdown.selectedIndex].value;
|
const UID = dropdown.options[dropdown.selectedIndex].value;
|
||||||
const Name = dropdown.options[dropdown.selectedIndex].text;
|
const Name = dropdown.options[dropdown.selectedIndex].text;
|
||||||
@@ -837,10 +837,20 @@ function GetHtmlContent {
|
|||||||
const installThreatLocker = document.querySelector('input[name="installThreatLocker"]');
|
const installThreatLocker = document.querySelector('input[name="installThreatLocker"]');
|
||||||
const installRocketCyber = document.querySelector('input[name="installRocketCyber"]');
|
const installRocketCyber = document.querySelector('input[name="installRocketCyber"]');
|
||||||
|
|
||||||
|
async function executeFetch(url, options = {}) {
|
||||||
|
try {
|
||||||
|
appendLog(`Starting ${url}...`, "cyan");
|
||||||
|
const response = await fetch(url, options);
|
||||||
|
if (!response.ok) throw new Error(`Failed at ${url}: ${response.statusText}`);
|
||||||
|
appendLog(`${url} completed successfully.`, "green");
|
||||||
|
} catch (error) {
|
||||||
|
appendLog(`Error: ${error.message}`, "red");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Priority 1: Install SVSMSP Module
|
// Priority 1: Install SVSMSP Module
|
||||||
if (installSVSMSPModule.checked) {
|
if (installSVSMSPModule.checked) {
|
||||||
appendLog("Installing SVSMSP Module (Priority 1)...", "cyan");
|
await executeFetch('/installSVSMSPModule', { method: 'GET' });
|
||||||
fetch('/installSVSMSPModule', { method: 'GET' })
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Priority 2: Install DattoRMM
|
// Priority 2: Install DattoRMM
|
||||||
@@ -849,49 +859,49 @@ function GetHtmlContent {
|
|||||||
appendLog("Installing selected site RMM (Priority 2)...", "cyan");
|
appendLog("Installing selected site RMM (Priority 2)...", "cyan");
|
||||||
|
|
||||||
const checkedValues = Array.from(DattoRMMCheckbox).map(c => c.value);
|
const checkedValues = Array.from(DattoRMMCheckbox).map(c => c.value);
|
||||||
|
|
||||||
const payload = {
|
const payload = {
|
||||||
checkedValues, // Array of selected checkbox values
|
checkedValues, // Array of selected checkbox values
|
||||||
UID, // Selected site UID
|
UID, // Selected site UID
|
||||||
Name // Selected site name
|
Name // Selected site name
|
||||||
};
|
};
|
||||||
|
|
||||||
fetch('/installrmm', {
|
await executeFetch('/installrmm', {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: { 'Content-Type': 'application/json' },
|
headers: { 'Content-Type': 'application/json' },
|
||||||
body: JSON.stringify(payload)
|
body: JSON.stringify(payload)
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Lower-priority tasks
|
// Lower-priority tasks
|
||||||
if (setSVSPowerplan.checked) {
|
if (setSVSPowerplan.checked) {
|
||||||
fetch('/SetSVSPowerplan', { method: 'GET' })
|
await executeFetch('/SetSVSPowerplan', { method: 'GET' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (installCyberQP.checked) {
|
if (installCyberQP.checked) {
|
||||||
fetch('/installCyberQP', { method: 'GET' })
|
await executeFetch('/installCyberQP', { method: 'GET' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (installSplashtop.checked) {
|
if (installSplashtop.checked) {
|
||||||
fetch('/installSplashtop', { method: 'GET' })
|
await executeFetch('/installSplashtop', { method: 'GET' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (installSVSHelpDesk.checked) {
|
if (installSVSHelpDesk.checked) {
|
||||||
fetch('/installSVSHelpDesk', { method: 'GET' })
|
await executeFetch('/installSVSHelpDesk', { method: 'GET' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (installSVSWatchtower.checked) {
|
if (installSVSWatchtower.checked) {
|
||||||
fetch('/installSVSWatchtower', { method: 'GET' })
|
await executeFetch('/installSVSWatchtower', { method: 'GET' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (installThreatLocker.checked) {
|
if (installThreatLocker.checked) {
|
||||||
fetch('/installThreatLocker', { method: 'GET' })
|
await executeFetch('/installThreatLocker', { method: 'GET' });
|
||||||
}
|
}
|
||||||
|
|
||||||
if (installRocketCyber.checked) {
|
if (installRocketCyber.checked) {
|
||||||
fetch('/installRocketCyber', { method: 'GET' })
|
await executeFetch('/installRocketCyber', { method: 'GET' });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
appendLog("All tasks completed.", "green");
|
||||||
}
|
}
|
||||||
|
|
||||||
function endSession() {
|
function endSession() {
|
||||||
|
|||||||
Reference in New Issue
Block a user