windows-10

How do I get around the verified bug in Windows 1903 and launch the VSCode integrated terminal?

本秂侑毒 提交于 2019-12-03 02:16:16
I just did a fresh install of Windows 10 Pro version 1903 build 18362.116 and Visual Studio Code. Now the integrated terminal only launches externally. Pressing Ctrl + ~ results in this. What am I missing? How do I get it to open integrated again? EDIT After working with VSCode team it is a verified bug. See the Github issue here . I posted the workaround as an answer here. OK, worked through this one in VSCode repo issues . For now, until it's fixed, turn off ConPTY integration in the User Settings. 💥💥💥 To change the integrated terminal on Windows, you just need to change the terminal

Windows Mobile Device center stops working after Windows 10 1703 upgrade

社会主义新天地 提交于 2019-12-03 02:03:03
问题 i just installed new Windows 10 version (1703) and now i'm not able to connect any Windows CE device because Windows Mobile Device center 6.1 doesn't run. I tried to reinstall it but there is no way, the install process stops. Do i have to downgrade to a previous version of Windows? Is there a workaround for this situation? Thanks for your advices regards 回答1: UPDATE: Some good suggestions which seem to work are now at this web page. https://social.technet.microsoft.com/Forums/office/en-US

How open PowerShell as administrator from the run window [closed]

六月ゝ 毕业季﹏ 提交于 2019-12-03 01:51:32
Is possible open a new PowerShell console as administrator through the run window, in Windows? I know that just typing 'powershell' in the run window is enough to start a new console, but is there a parameter to start it 'as Administrator'? Like: "powershell /runas:Administrator" or something? PS: I'm using Windows 10 -- I don't know if makes any difference. The easiest way to open an admin Powershell window in Windows 10 (and Windows 8) is to add a "Windows Powershell (Admin)" option to the "Power User Menu". Once this is done, you can open an admin powershell window via Win + X , A or by

Disable beep of Linux Bash on Windows 10 [closed]

坚强是说给别人听的谎言 提交于 2019-12-03 01:30:44
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 months ago . Having a Linux Bash on Windows 10 is pretty cool, but as far as I've got to struggle with the not-so-good terminal provided from Microsoft I'm gonna get stuck with Ubuntu for everything. Anyway, is there a way to turn off that beep whenever you do something on the Bash? Since it is not possible to comment out

Windows 10 cannot access the specified device, path, or file when using full path to executable, running as Administrator

不想你离开。 提交于 2019-12-03 01:25:14
Note : I've replace the directory with a and the exe with b.exe and I've repeat every test I have made to make sure it's not a typing syntax. I have a very simple piece code of which works perfectly from Windows XP to Windows 7. var processPath = @"c:\a\b.exe" ; // this exe exists on my computer Process.Start(processPath); and also Directory.Exists(@"c:\a\") returns false on Windows 10. Since Windows 10 (I have not test yet 8 and 8.1) the first code will throws System.ComponentModel.Win32Exception ("Specified file not found") and second will return false. . I've noticed also that it's the same

WebStorm/PhpStorm, issue with terminal on Windows 10

心不动则不痛 提交于 2019-12-03 01:08:45
I decided to try Windows 10, but having problem to make terminal works inside WebStorm/PhpStorm. When I open terminal, sometimes it's completely black, sometimes it loads the project folder but I cannot type there. There is a way to run it in the external window, but I just got accustomed to work with console like internal window inside WebStorm/PhpStorm... I tried cmd, Power Shell - same results. Any ideas? Workaround: Terminal works fine in Windows 10 if you use legacy console . To do so, open a command prompt window, right click on the title, then select Properties. At the bottom, check

Can I create an alarm app for Window Universal App?

末鹿安然 提交于 2019-12-03 00:40:09
I would like to create an alarm app. I found the way of operating a timer in the background. But APIs which control the power of the display were not found(I want to turn on the display's power when its power is off). Doesn't Windows 10 (Windows Universal App) have enough APIs to create that app? Windows-universal-samples has recently been updated with a few new RTM samples including this one - Notifications . As Alarm is also one type of notification, it's now built within a new toast notification framework in the Universal Windows Platform. After you downloaded the source code from the

How do I solve the “server DNS address could not be found” error on Windows 10? [closed]

亡梦爱人 提交于 2019-12-03 00:35:24
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . After installing Windows 10, I am continuously getting the " server DNS address could not be found " error. I will be able to use the Internet for 4-5 minutes, and after that for 20-25 min I will get the above error. How do I resolve this issue? 回答1: There might be a problem with your DNS servers of the ISP. A

Docker on Windows 10 “driver failed programming external connectivity on endpoint”

旧城冷巷雨未停 提交于 2019-12-03 00:31:24
问题 I am trying to use $ docker-compose up -d for a project and am getting this error message: ERROR: for api Cannot start service api: driver failed programming external connectivity on endpoint dataexploration_api_1 (8781c95937a0a4b0b8da233376f71d2fc135f46aad011401c019eb3d14a0b117): Error starting userland proxy: mkdir /port/tcp:0.0.0.0:9000:tcp:172.19.0.2:80: input/output error Encountered errors while bringing up the project. I am wondering if it is maybe the port? I had been trying port 8080

Logger for Windows 10 UWP app

China☆狼群 提交于 2019-12-03 00:05:23
I couldn't found any loggers for windows 10 universal app, i have tried out log4net, Microsoft enterprise library, Nlog but none of them are supported in windows 10 Universal platform. Can anyone suggest me good logger for the windows 10 UWP? Have you tried MetroLog? You can install it using NuGet: Install-Package MetroLog Here's an quick example: using MetroLog; using MetroLog.Targets; LogManagerFactory.DefaultConfiguration.AddTarget(LogLevel.Trace, LogLevel.Fatal, new FileStreamingTarget()); ILogger log = LogManagerFactory.DefaultLogManager.GetLogger<MainPage>(); log.Trace("This is a trace