Dependency walker hangs

I’m currently on Windows 10 build 1809, and depends.exe hangs for every dll I try it with. The depends home page says “Dependency Walker runs on Windows 95, 98, Me, NT, 2000, XP, 2003, Vista, 7, and 8” so I guess it’s not supported. Try Dependencies – An open-source modern Dependency Walker, it works fine … Read more

“unable to find valid certification path to requested target”, but browser says it’s OK [duplicate]

The different certificates can be found in the following keystore : %JAVA_HOME%/jre/lib/security/cacerts If you want to list the trusted certificates : keytool -list -keystore %JAVA_HOME%/jre/lib/security/cacerts The password is optional to list. If you want to add an entry : First, export the certificate to import, let’s say it will be c:\cert.crt. The best way to … Read more

Using Client certificates for Windows RT (windows 8.1/windows phone 8.1)

The problem could be related to the validity of the certificate that you are using it. By default .Net refuses to establish https connection with invalid or not trusted certificate. Usually the certificate is invalid because it is generate by a non-trusted authority (self signed certificate) or because the address of the site is not … Read more

SQL Developer with JDK (64 bit) cannot find JVM

I had the same problem and solved it by copying the MSVCR100.dll file from sqldeveloper\jdk\jre\bin to the sqldeveloper\sqldeveloper\bin folder. Credit goes to Erik Anderson from SQL Developer failed to start Note that different versions of SQL Developer need different versions of MSVCR*.dll. Various comments below have offered which versions worked for them.

CRITICAL_STRUCTURE_CORRUPTION BSOD Windows 8.1 with Intel HAXM Android Emulator installed [closed]

This is currently a known issue, to track progress see the following over at intel’s forums http://software.intel.com/en-us/forums/topic/475129 Last update: Intel have released a hotfix for windows 8.1 http://software.intel.com/en-us/articles/intel-hardware-accelerated-execution-manager-end-user-license-agreement-windows-hotfix For now, using GenyMotion for my hardware accelerated emulator needs.

Run Windows 10 Universal Apps on Windows 8.1

The answer would be no. For further clarifications, best to post on the forum: https://social.msdn.microsoft.com/Forums/windowsapps/en-US/home?forum=wpdevelop Windows 10 introduces several new APIs and concepts (such as API contracts) that are not available on Windows 8.1. An app that relies on such new APIs and concepts cannot run on Windows 8.1. Additionally the app-model and a lot … Read more

What is [NotifyPropertyChangedInvocator] in C# when implements INotifyPropertyChanged?

It is a Resharper attribute from their Annotations – designed to give you warning then your code looks suspicious 🙂 Consider this: public class Foo : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; [NotifyPropertyChangedInvocator] protected virtual void NotifyChanged(string propertyName) { … } private string _name; public string Name { get { return _name; } set { … Read more

tech