11-06-2024 02:12 PM
This dialog appears when I open LabVIEW sometimes:
This blocks VI server from starting so LabVIEWCLI and similar tools won't work. After this dialog appears once, this checkbox shows up in the LabVIEW options:
But on a fresh install the option isn't there. Does anyone know how to disable the dialog on a new install of LabVIEW? The only way I can think of would be to find a way to reliably trigger the warning to happen, which I haven't succeeded at.
What would be better is a comprehensive guide to disabling all the similar blocking dialogs.
Solved! Go to Solution.
11-06-2024 02:18 PM
One of these ini token should help (not sure which one though)
Use the following INI tokens (LabVIEW.ini) to suppress popups and auto-reporting errors:
NIERShowFatalDialog = 0
NIERFatalAutoSend = true
NIERNonFatalAutoSend = true
NIERShowNonFatalDialogOnExit = false
NIERSendDialogClose = true autoerr = 3
DWarnDialog = false
AutoSaveEnabled = false
AllowMultipleInstances = true
promoteDWarnInternals = false
ShowAIVIsInErrorWindow = true
Matthias Baudot | Software Architect | Founder at STUDIO BODs | DQMH® Consortium Board Member
11-14-2024 06:01 AM
Hello,
Did the previous reply resolve your issue? If it did, consider marking it as an Accepted Solution – it can be a great help for other users with similar questions.
Thank you!
Matthias Baudot | Software Architect | Founder at STUDIO BODs | DQMH® Consortium Board Member
11-14-2024 08:03 AM
I want to figure out which key is responsible for this particular dialog then I will post that info and mark that and the config file block as solutions.
11-18-2024 06:45 PM
@mbaudot wrote:One of these ini token should help (not sure which one though)
Use the following INI tokens (LabVIEW.ini) to suppress popups and auto-reporting errors:
NIERShowFatalDialog = 0
NIERFatalAutoSend = true
NIERNonFatalAutoSend = true
NIERShowNonFatalDialogOnExit = false
NIERSendDialogClose = true autoerr = 3
DWarnDialog = false
AutoSaveEnabled = false
AllowMultipleInstances = true
promoteDWarnInternals = false
ShowAIVIsInErrorWindow = true
I finally got code that replicates this issue reliably in a short job.
I added all of these keys and still get the dialog I posted originally.
11-18-2024 07:24 PM
@avogadro5 wrote:
@mbaudot wrote:One of these ini token should help (not sure which one though)
Use the following INI tokens (LabVIEW.ini) to suppress popups and auto-reporting errors:
NIERShowFatalDialog = 0
NIERFatalAutoSend = true
NIERNonFatalAutoSend = true
NIERShowNonFatalDialogOnExit = false
NIERSendDialogClose = true autoerr = 3
DWarnDialog = false
AutoSaveEnabled = false
AllowMultipleInstances = true
promoteDWarnInternals = false
ShowAIVIsInErrorWindow = true
I finally got code that replicates this issue reliably in a short job.
I added all of these keys and still get the dialog I posted originally.
The key for this dialog is "autoerr = 3." It needs to be on its own line in the ini file to work. This article has the same issue.