Update SVSMSP.ps1

This commit is contained in:
2025-01-02 14:02:42 -05:00
parent bc56eeff24
commit 2c29161508

View File

@@ -730,50 +730,26 @@ function GetHtmlContent {
}); });
} }
if (installCyberQP.checked) { if (installCyberQP.checked) {
const response = await fetch('/installCyberQP', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
appendLog("Installing CyberQP", "cyan"); appendLog("Installing CyberQP", "cyan");
} }
if (installSplashtop.checked) { if (installSplashtop.checked) {
const response = await fetch('/installSplashtop', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
appendLog("Installing Splashtop", "cyan"); appendLog("Installing Splashtop", "cyan");
} }
if (installSVSHelpDesk.checked) { if (installSVSHelpDesk.checked) {
const response = await fetch('/installSVSHelpDesk', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
appendLog("Installing SVSHelpdesk", "cyan"); appendLog("Installing SVSHelpdesk", "cyan");
} }
if (installSVSWatchtower.checked) { if (installSVSWatchtower.checked) {
const response = await fetch('/installSVSWatchtower', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
appendLog("Installing SVSWatchtower", "cyan"); appendLog("Installing SVSWatchtower", "cyan");
} }
if (installThreatLocker.checked) { if (installThreatLocker.checked) {
const response = await fetch('/installThreatlocker', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
appendLog("Installing ThreatLocker", "cyan"); appendLog("Installing ThreatLocker", "cyan");
} }
if (installRocketCyber.checked) { if (installRocketCyber.checked) {
const response = await fetch('/installRocketCyber', {
method: 'GET',
headers: { 'Content-Type': 'application/json' }
});
appendLog("Installing RocketCyber", "cyan"); appendLog("Installing RocketCyber", "cyan");
} }