Posted on 02-21-2025 12:05 PM
Hello,
we like to configure Goodnotes for students without the AI-features. We also activated the auto-back-up-reminder and pre-configured a webdav-url.
Can anyone help me with deactivating the AI-features? What do we need to add to make the AI-features configurable?
This is our working Code:
<plist>
<dict>
<key>LicenseKey</key>
<string>LICENSE CODE</string>
<key>GoodnotesVersion</key>
<integer>6</integer>
<key>ConfigurableFeatures</key>
<dict>
<key>ReminderToEnableAutoBackup</key>
<true/>
<key>WebDAVHostURL</key>
<string>WEBDAV DOMAIN</string>
</dict>
</dict>
</plist>
Posted on 02-23-2025 05:02 PM
I did not see any documentation from GoodNotes other than how to deploy the product key with a Configuration Profile. I recommend reaching out to GoodNotes to ask them if there is a key pare that can disable their AI functions.
Posted on 02-25-2025 09:51 AM
I already reached out to them and got the code above. Seems like the code doens't work. I hoped for getting someone with a similar code to find what's not right in the code above.
Posted on 02-27-2025 11:18 AM
So looking at your code compared to the code we use, do you have or did they give you what to replace the bolded text in <string>WEBDAV DOMAIN</string>? That to me seems like a 'place your specific info here' item. I'd be interested in if you find that out as I'm sure I'm going to need to follow suit to turn off the AI in our GoofNotes as well.
Posted on 02-27-2025 11:24 AM
I have replaced the Code. The Code above is the working code. But it dont includes the settings for the AI features. I like to add them. I'm also still in contact with goodnotes, but they are slow ...
I got the following Code from the support, but it dont work or us. I added it in the right section.
<key>ConfigurableFeatures</key>
<dict>
<key>ScribbleToEraseAllowed</key>
<true/>
<key>CircleToLassoAllowed</key>
<true/>
<key>Others</key>
<false/>
</dict>
Posted on 02-27-2025 11:38 AM
The list of the AI features is also uncomplete.
02-27-2025 02:05 PM - edited 02-27-2025 02:06 PM
After some digging myself, it looks like the AI has to be turned on/off by Goodnotes through your license. Or at least that's the way I read what I found. But maybe that includes the <key> addition to the <plist> script they sent AFTER they activate in in your account. Again, I'll be very interested if you get it worked out!
Good luck and thanks!
a month ago
I got a reply and the following code works. Just change "false" with true to activate a feature. In this code you can pre-configure the WebDAV-Domain, activate a backup reminder and activate the AI-On-Device features:
<plist>
<dict>
<key>LicenseKey</key>
<string>LICENSE-CODE</string>
<key>ConfigurableFeatures</key>
<dict>
<key>ReminderToEnableAutoBackup</key>
<true/>
<key>WebDAVHostURL</key>
<string>WEBDAV-DOMAIN</string>
<key>OnDeviceAI</key>
<dict>
<key>ScribbleToEraseAllowed</key>
<true/>
<key>CircleToLassoAllowed</key>
<true/>
<key>SpellcheckAllowed</key>
<false/>
<key>WordCompleteAllowed</key>
<false/>
<key>MathConversionAllowed</key>
<false/>
<key>MathAssistanceAllowed</key>
<false/>
</dict>
</dict>
</dict>
</plist>