Update TGBeta.ps1
This commit is contained in:
25
TGBeta.ps1
25
TGBeta.ps1
@@ -1,21 +1,3 @@
|
||||
### Known issues as of January 5 2025
|
||||
|
||||
### Install-DattoRMM version 25.1.4 is missing functions you'll need version 25.1.5
|
||||
|
||||
### Missing Function in module
|
||||
### Install-SVSHelpDesk
|
||||
### Install SVSWatchtower
|
||||
|
||||
### checkbox not working
|
||||
|
||||
### Threatlocker
|
||||
### setsvspowerplan
|
||||
|
||||
### add tweek to set default provider, add to toolkit?
|
||||
### need to see if there's anything else we could take from Theo script?
|
||||
### make sure that when using select all option
|
||||
### Module install first
|
||||
### Rmm Second
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# 1) CREATE A GLOBAL LOG CACHE (NEW)
|
||||
@@ -652,6 +634,13 @@ function GetHtmlContent {
|
||||
fetchSitesButton.disabled = n8nPasswordInput.value.length < 4;
|
||||
});
|
||||
|
||||
// Trigger fetchSites() on Enter key press
|
||||
n8nPasswordInput.addEventListener('keydown', (event) => {
|
||||
if (event.key === 'Enter' && n8nPasswordInput.value.length >= 4) {
|
||||
fetchSites(); // Call the fetchSites function
|
||||
}
|
||||
});
|
||||
|
||||
async function fetchSites() {
|
||||
const password = document.getElementById('n8nPassword').value;
|
||||
const dropdown = document.getElementById('dattoRmmDropdown');
|
||||
|
||||
Reference in New Issue
Block a user