Updated RMM deployment script.

This commit is contained in:
Yoshify 2023-08-23 10:18:18 +10:00
parent 97ae66a2bf
commit 6590c1222b

View File

@ -1,5 +1,4 @@
#Your Logo goes here
#This can either be a path to a local file, or a URL
#This can either be a path to a local file, or a URL
$Pathtologo = 'valuegoeshere'
#Setting some default paths
@ -48,9 +47,9 @@ if(!(test-path -Path C:\ProgramData\TED)){
$downloadURL = 'https://github.com/HealthITAU/TED/releases/latest/download/TED-winarm64.exe'
WriteLog 'ARM Processor detected, downloading TED for ARM Architecture'
}
default{
$NoPlatform = $true}
default{ $NoPlatform = $true }
}
if(!$NoPlatform) {
wget -OutFile $TEDPath $downloadURL
}