Update TGBeta.ps1

This commit is contained in:
2025-01-05 20:39:54 -05:00
parent e407fe6aa2
commit 2814287261

View File

@@ -713,7 +713,7 @@ function GetHtmlContent {
if (installSVSMSPModule.checked) { if (installSVSMSPModule.checked) {
appendLog("Installing SVSMSP Module (Priority 1)...", "cyan"); appendLog("Installing SVSMSP Module (Priority 1)...", "cyan");
fetch('/installSVSMSPModule', { method: 'GET' }) fetch('/installSVSMSPModule', { method: 'GET' })
return; // Stop further execution as this is the highest priority await pause(10000); // 10-second pause
} }
// Priority 2: Install DattoRMM // Priority 2: Install DattoRMM
@@ -734,7 +734,7 @@ function GetHtmlContent {
headers: { 'Content-Type': 'application/json' }, headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload) body: JSON.stringify(payload)
}) })
return; // Stop further execution as this is the second highest priority await pause(10000); // 10-second pause
} }
// Lower-priority tasks // Lower-priority tasks