windows-10

Error: Unable to access jarfile. Encoding issue

我与影子孤独终老i 提交于 2019-12-20 03:43:27
问题 The problem seems trivial, but could not find a solution so far. C:\Users\User>"C:\Program Files\Java\jdk1.8.0_112\bin\java" -jar "D:\Valya\Учёба\ТРПК\наумов_трпк_лаб2\build\libs\naumov_trpk_lab2-runnable.jar" Error: Unable to access jarfile D:\Valya\?????\????\??????_????_???2\build\libs\naumov_trpk_lab2-runnable.jar The issue appears only when I try to access a jar that is sitting in a dir with non-ASCII name. I am 100% sure I could run jars with such a path when I was on Windows 7, but

Where i can obtain client secret for my Universal app?

倖福魔咒の 提交于 2019-12-20 03:27:11
问题 I'm following this guide (http://msdn.microsoft.com/library/windows/apps/hh465407) to implement push notifications on my app, but it seems to be outdated since I can't find the client secret as shown in this image: . In developer dashboard (App identity tab) I've got only SID. I also checked Windows Live Services site but there are only passwords and private keys. There is no client secret: Where i can find that exact client secret shown in the msdn tutorial? 回答1: Azure also can't validate my

Can I Use WinAppDeployCmd install, update on pc itself

一曲冷凌霜 提交于 2019-12-20 03:15:04
问题 I have my .appx file for installation in folder. I can install it by double clicking the file. But i am looking for a way to install it using WinAppDeployCmd for installation and also for update process. WinAppDeployCmd install -file "C:\release\file.appx" -ip 192.168.0.1 192.168.0.1 - is the ip of the pc itself. I am getting error : 0x80131500 - The network event being waited on triggered an error. 0x8007274D - The network event being waited on triggered an error. I am using windows 10. Am i

Strange characters in PHP Composer and Laravel installer output - Windows 10 CMD

元气小坏坏 提交于 2019-12-20 03:14:58
问题 I have this problem on Windows 10 -- PHP Composer showing strange characters. I have tried to install ansicon as suggested here and it solved the problem but then if I try to use terminal in JetBrains PhpStorm it's crashing... Maybe I need to fix it without that ansicon but I can't find how. I have this problem only on my Laptop -- on my Desktop it's working perfectly fine. They both have Windows 10 and PHP + Composer at the latest versions. 回答1: I had the same problem, friend. Have you tried

Error DEP0001 : Unexpected Error: -2147009287 deploy Windows Phone Universal 10

↘锁芯ラ 提交于 2019-12-20 02:07:38
问题 When I try to deploy my application to Windows phone 10 I get this error: Error: -2147009287 from visual studio 2015 comunity. How can I solve that? 回答1: As Jay Zuo said in his comments (via a link). The easy way to solve this issue, seems to be to uninstall existing app (which is probably installed from the store) and then try to deploy the app again via Visual Studio. This worked for me. :) 回答2: I had the same problem. I was using a USB cable that was not in an excellent state, so to speak.

Is there any way to get windows task manager details through tsql?

ぃ、小莉子 提交于 2019-12-20 01:13:47
问题 I do not have access to the client's windows remote machine,I connect their database server through tsql only.I need to check what processes taking more memory and inform them. Is there any tsql query to get windows processes? 回答1: Yes, it is possible. You can call TASKLIST command via xp_cmdshell: exec master..xp_cmdshell 'TASKLIST' Output: Image Name PID Session Name Session# Mem Usage ========================= ======== ================ =========== ============ System Idle Process 0 0 4 K

Install 2 versions of same Windows 10 Universal App in the same OS instance

↘锁芯ラ 提交于 2019-12-20 01:13:17
问题 We are developing a Windows 10 Universal app. Currently, there are 2 branches of the app code, MAIN and DEV. We would like to be able to install (and run) both builds on the same OS instance at the same time. Right now, we do not see any other way of doing this than having a separate VM for each app build, but this is not our preference. Does anyone have any experience with this type of challenge, and does anyone know if this is even possible from technology standpoint? 回答1: Each package must

UWP C# Scroll to the bottom of TextBox

▼魔方 西西 提交于 2019-12-19 11:25:38
问题 How do you scroll to the bottom of a TextBox for a UWP app? With my transition to UWP, this has been one of the questions that hasn't been straight-forward. I used to be able to use this: textBox.SelectionStart = textBox.TextLength; textBox.ScrollToCaret(); But, this doesn't work for UWP apps 回答1: Using the answer from https://code.msdn.microsoft.com/windowsapps/How-to-scroll-to-the-a8ea5867 sometimes caused lines to be deleted when scrolling up. To fix that, try this: private void

Windows 10 TTS voices not showing up?

独自空忆成欢 提交于 2019-12-19 11:23:08
问题 I installed a few English language packs (US, UK and Canada) with their Speech options and I can access them in Windows 10 setting -> Speech but they doesn't show into text to speech option available from control panel and I can't use the voices with apps ! I can just use default voices which are David and Zira ! Any idea how can I use other voices ? 回答1: Windows 10 has two different TTS engines installed by default. There are the WinRT speech synthesis APIs (in the Windows.Media

GetTickCount values on Windows 10

不问归期 提交于 2019-12-19 10:36:15
问题 Im trying to use the GetTickCount() in Windows API to get the system uptime. I want to know how long the system has been running. However the return from GetTickCount is insanely high. This code gives me uptime of over 500 hours. This goes for GetTickCount64() as well. Why is this value so high? DWORD time_ms = GetTickCount(); DWORD seconds = (time_ms / 1000) % 60; DWORD minutes = time_ms /(1000*60) % 60; DWORD hours = time_ms / (1000*60*60); stringstream ss; ss << "Hours: "; ss << hours; ss