IDERI note Version 3.2 Release

Annika Kopp

9

min Lesezeit

20.08.2024

It's that time again - a new IDERI note release is out! As always, we summarize the most important new features for you.

Inhaltsverzeichnis

A new IDERI note release is now available.
The following features are included in the new IDERI note 3.2 Release:

Note:

The Hotkey support requires at least the standart license. A professional license is needed in order to use hotkeys on the logon screen. For more detailed information, please refer to the IDERI note online manual.

IDERI note Hotkey Support

The IDERI note Hotkey Support can for example be used as a fast and reliable method for alarming which can, with a simple button press, create, update or delete a message, even on a locked screen.

It can be accessed by searching for „IDERI note hotkey support“ in the control panel.

With this it is possible to create hotkeys for creating new, updating/canceling existing messages or the last message created.

Importing and exporting Hotkey settings:

A predefined hotkey can be distributed by accessing the registry and browsing to:

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432NODE\ideri\inotehkdef

The desired key can then be exported and later on imported on multiple PCs.

Consider the following:

  • A hotkey can only be executed if the IDERI note hotkey support settings are closed.
  • If a hotkey is used on the lock- or logon screen the message will always be sent with the computer account. Therefore the appropriate computer account needs message creation privileges in IDERI note! This also applies for messages that are set to “Always send with computer account” in the IDERI note Hotkey Support.
  • IDERI note hotkey support can not be used in licence mode lite.
  • A single hotkey can execute multiple operations.

Download

Download the latest version here

Hier finden Sie unsere Antworten

Ähnliche Beiträge

Notification system for companies – reliable, direct, and impossible to overlook

Discover how modern notification systems such as IDERI note can revolutionize your internal communications—from maintenance notices to emergency alerts—so that your company is always prepared.

Proactive IT communication with IDERI note – inform instead of react

IDERI note makes your IT communication proactive: automatic notifications in the event of failures, updates, or virus warnings—in seconds, securely, and targeted.

Silent alarm: advantages for security, discretion, and response time

Discover all the advantages of a silent alarm—from discreet alerts and faster response times to greater security for personnel and property.

IDERI note Version 4.0 Release

It’s that time again – a new version of IDERI note has been released! As always, we've summarized the key new features for you.

IDERI note Version 3.11 Release

It's that time again - a new IDERI note release is out! As always, we summarize the most important new features for you

Push notifications at the workplace with IDERI note

Optimize your company communication with push notifications at the workplace and keep your employees informed at all times!

Inform employees better: Sustainable success with internal communication

Find out why keeping employees informed through internal communication is the key to sustainable corporate success.

IDERI note: The ideal intranet alternative

Discover IDERI note - the modern intranet alternative for real-time communication and efficient information distribution in your company.

By clicking “Accept all cookies,” you agree to the storage of cookies on your device to improve site navigation, analyze site usage, and support our marketing efforts. For more information, see our Privacy statement.

// Function to save the user's preference function savePreference(id) { const el = document.getElementById(id); if (!el) return; el.addEventListener("change", () => { localStorage.setItem(id, el.checked ? "enabled" : "disabled"); console.log("Preference saved:", id, el.checked); }); } // Function to load an existing preference from localStorage function loadPreference(id) { const el = document.getElementById(id); if (!el) return; const value = localStorage.getItem(id); if (value === "enabled") { el.checked = true; } if (value === "disabled") { el.checked = false; } } // List of cookie toggle IDs you use in Webflow const cookieIds = [ "cookie-essential", "cookie-analytics", "cookie-marketing", "cookie-leadinfo" ]; // Load previously saved preferences on page load cookieIds.forEach(id => loadPreference(id)); // Save the preferences whenever the toggle is changed cookieIds.forEach(id => savePreference(id));