On a Windows 2008 R2 system the above sollution worked. Thanks!
Hey there Eric...
So its been a year but if you haven't figured this out already here's teh solution:
C:\Users\<user>\AppData\Local\Apps\2.0\8ZDDVWNR.GX5\8CQ7GB4J.0YN\oper...app_f464941b06bea132_000a.0001_ae4f295654969edc
(The rest of the location path after "C:\Users\<user>\AppData\Local\Apps\2.0" might be different in your case as that is variable, but it will look similar and when you arrive at the location you will see a lot many files making it difficult to realize which file you have to edit, so in the search box for the folder type in 'exe.config' it should display few xml files.)
Open the one that says operationsdashboard.exe, edit the file in notepad and look for a tag <appSettings> , now after the tag <appSettings> add this tag into the file :
<add key="useAcceleratedDisplay" value="false" />
Now save the file and try executing Operations Dashboard, it should work.
Hope this helps!
I'm having exactly the same problem on this same environment. Every time I try to create a new operation view, the application crashes.
For further clarification on my crashing issues...My OS is Windows Server 2008 R2 Enterprise (64-bit) SP1
Problem signature: Problem Event Name: CLR20r3 Problem Signature 01: operationsdashboard.exe Problem Signature 02: 10.1.1.142 Problem Signature 03: 51255cfd Problem Signature 04: ESRI.ArcGIS.Client Problem Signature 05: 10.1.1.142 Problem Signature 06: 51254207 Problem Signature 07: 1c95 Problem Signature 08: 1f Problem Signature 09: System.Exception OS Version: 6.1.7601.2.1.0.274.10 Locale ID: 1033 Additional Information 1: 4cb7 Additional Information 2: 4cb73f47dac58f5cd4dcade84ad4a232 Additional Information 3: 13b0 Additional Information 4: 13b0d6a53e528295ccda66adbe35b175
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System; using Microsoft.Win32; namespace ConsoleApplication1 { class Program { public static void Main() { using (RegistryKey ndpKey = RegistryKey.OpenBaseKey(RegistryHive.LocalMachine, RegistryView.Registry32).OpenSubKey(@SOFTWARE\Microsoft\NET Framework Setup\NDP\)) { foreach (string versionKeyName in ndpKey.GetSubKeyNames()) { if (versionKeyName.StartsWith("v")) { RegistryKey versionKey = ndpKey.OpenSubKey(versionKeyName); string name = (string)versionKey.GetValue("Version", ""); string sp = versionKey.GetValue("SP", "").ToString(); string install = versionKey.GetValue("Install", "").ToString(); if (install == "") //no install info, ust be later Console.WriteLine(versionKeyName + " " + name); else { if (sp != "" && install == "1") { Console.WriteLine(versionKeyName + " " + name + " SP" + sp); } } if (name != "") { continue; } foreach (string subKeyName in versionKey.GetSubKeyNames()) { RegistryKey subKey = versionKey.OpenSubKey(subKeyName); name = (string)subKey.GetValue("Version", ""); if (name != "") sp = subKey.GetValue("SP", "").ToString(); install = subKey.GetValue("Install", "").ToString(); if (install == "") //no install info, ust be later Console.WriteLine(versionKeyName + " " + name); else { if (sp != "" && install == "1") { Console.WriteLine(" " + subKeyName + " " + name + " SP" + sp); } else if (install == "1") { Console.WriteLine(" " + subKeyName + " " + name); } } } } } } } } }
Aangemelde leden kunnen berichten plaatsen, updates volgen en meer. Nieuw hier? Registreer een gratis account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.