windows-8.1

The locale en-EN is an invalid culture identifier

允我心安 提交于 2021-02-20 18:59:07
问题 I recently shifted from a computer which had Windows 10 with VS 2017 to a computer which had Windows 8.1 with VS 2017. I was working with a piece of code which had a line like this. Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(locale); Here, locale value is en-EN . I got hit with a surprise when this threw a CultureNotFoundException exception with a message. en-EN is an invalid culture identifier. Surprising to me because, the same code with locale as en-EN works in

The locale en-EN is an invalid culture identifier

耗尽温柔 提交于 2021-02-20 18:58:38
问题 I recently shifted from a computer which had Windows 10 with VS 2017 to a computer which had Windows 8.1 with VS 2017. I was working with a piece of code which had a line like this. Thread.CurrentThread.CurrentUICulture = CultureInfo.GetCultureInfo(locale); Here, locale value is en-EN . I got hit with a surprise when this threw a CultureNotFoundException exception with a message. en-EN is an invalid culture identifier. Surprising to me because, the same code with locale as en-EN works in

Dependency walker hangs

三世轮回 提交于 2021-02-18 22:56:27
问题 I have a problem with my.xll addin when it loads on my clients PC. It crashes Excel at startup (possible because of missing dependent dlls). I know it is possible to use dependency walker in profile mode to find out what dlls are loaded when the .exe runs. When I try that dependency walker hangs when profiling Excel, and I can’t find out why. In a command window I ran this: C:\Program Files (x86)\Windows Kits\8.1\Tools\x86>start /wait depends.exe /c /f:1 /pb /pp:1 /pg:1 /oc:d:\temp\Log.txt "C

SoapUI 5.6.0 UnsupportedClassVersionError on Windows 8.1

早过忘川 提交于 2021-02-11 14:21:46
问题 I have installed following version of Java on Windows 8.1. JAVA_HOME environment variable points to newly installed JDK library. java 15 2020-09-15 Java(TM) SE Runtime Environment (build 15+36-1562) Java HotSpot(TM) 64-Bit Server VM (build 15+36-1562, mixed mode, sharing) When I've started SoapUI 5.6, I have got following error message: java.lang.UnsupportedClassVersionError: com/eviware/soapui/SoapUI has been compiled by a more recent version of the Java Runtime (class file version 53.0),

Is there a way to distribute windows store app privately without sideloading

99封情书 提交于 2021-02-10 23:47:58
问题 I went through Windows Store App and distribution models. I want to distribute my application privately (not want to publish it in store). But Sideloading does not seems to be option either as it is very expensive ($3000). Is there a license or way for this? Windows Phone Store seems to hiding app from store listing. Is that available for Store Apps? Thanks in Advance 回答1: You have two options: Use Windows Side-loading though volume license agreements (then sideloading only costs you $100 for

Is there a way to distribute windows store app privately without sideloading

自闭症网瘾萝莉.ら 提交于 2021-02-10 23:46:45
问题 I went through Windows Store App and distribution models. I want to distribute my application privately (not want to publish it in store). But Sideloading does not seems to be option either as it is very expensive ($3000). Is there a license or way for this? Windows Phone Store seems to hiding app from store listing. Is that available for Store Apps? Thanks in Advance 回答1: You have two options: Use Windows Side-loading though volume license agreements (then sideloading only costs you $100 for

Is there a way to distribute windows store app privately without sideloading

蹲街弑〆低调 提交于 2021-02-10 23:45:58
问题 I went through Windows Store App and distribution models. I want to distribute my application privately (not want to publish it in store). But Sideloading does not seems to be option either as it is very expensive ($3000). Is there a license or way for this? Windows Phone Store seems to hiding app from store listing. Is that available for Store Apps? Thanks in Advance 回答1: You have two options: Use Windows Side-loading though volume license agreements (then sideloading only costs you $100 for

How to run a script on startup in hidden mode

血红的双手。 提交于 2021-02-10 20:41:50
问题 I have a batch file, named prova.bat , and I need to launch it at the startup of the computer, and I need to launch it in hidden mode (with no visible prompt). I have found on the net solutions to launch the batch at the startup OR solutions to launch the batch in hidden mode, but not solutions to fix both my problems. I have tried with a VBScript and set the script to run at the startup (in the SystemConfiguration). The OS where the batch have to run is Windows 8.1. Here's the content of the

python 3.4 encoding in windows 8.1

匆匆过客 提交于 2021-02-08 10:33:12
问题 I use the script mentioned in this question, to check the encoding: import sys, locale, os print(sys.stdout.encoding) print(sys.stdout.isatty()) print(locale.getpreferredencoding()) print(sys.getfilesystemencoding()) print(os.environ["PYTHONIOENCODING"]) print(chr(246), chr(9786), chr(9787)) and I obtain (python 3.4, windows 8.1): windows-1252 False cp1252 mbcs windows-1252 ö Traceback (most recent call last): File "C:/Users/.../UTF8-comprovacio.py", line 8, in <module> print(chr(246), chr

Is there any special API in Windows 8 to Mount ISO files?

微笑、不失礼 提交于 2021-02-07 03:18:15
问题 As you may know Windows Explorer allows to mount ISO files to a virtual drive. Is there any API which can be used to do this? 回答1: The native function call AttachVirtualDisk. However, if you are using C# like your tags suggest it may be easier to just call out to PowerShell and use its wrapper around that function Mount-DiskImage using System.Management.Automation; namespace IsoMountTest { internal class Program { private static void Main(string[] args) { var isoPath = @"C:\Foo\bar.iso";