Update SVSTaskGate.ps1

This commit is contained in:
2025-01-04 03:41:19 -05:00
parent 61e830b9f4
commit 67d1cb6f54

View File

@@ -685,6 +685,7 @@ function GetHtmlContent {
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;
const setSVSPowerplan = document.querySelector('input[name="setSVSPowerplan"]');
const installSVSMSPModule = document.querySelector('input[name="installSVSMSPModule"]'); const installSVSMSPModule = document.querySelector('input[name="installSVSMSPModule"]');
const installDattoRMM = document.querySelector('input[name="installDattoRMM"]'); const installDattoRMM = document.querySelector('input[name="installDattoRMM"]');
const installCyberQP = document.querySelector('input[name="installCyberQP"]'); const installCyberQP = document.querySelector('input[name="installCyberQP"]');
@@ -724,7 +725,7 @@ function GetHtmlContent {
} }
if (installSVSMSPModule.checked) { if (installSVSMSPModule.checked) {
fetch('/installsvsmspmodule', { method: 'GET' }); fetch('/installSVSMSPModule', { method: 'GET' });
appendLog("Installing CyberQP", "cyan"); appendLog("Installing CyberQP", "cyan");
} }