Questions tagged [windows-10]

The successor to Microsoft Windows 8.1 which combines features from Windows 7 and 8.1, including touch-interface and restored Start Menu. This tag exclusively is for programming questions related to Windows 10; general software issues not directly related to programming should be directed to Super User.

Windows 10 was released on July 29th, 2015 and is the successor to Microsoft Windows 8.1 which combines features from Windows 7 and 8.1, including touch-interface and restored Start Menu. It has some important changes which affect developers.

Windows 10 is the latest OS launched by Microsoft. Users can upgrade to Windows 10 from Windows 7 and Windows 8.1, provided they have a genuine version.

At the Build conference 2015, Microsoft announced the fact that Windows 10 will be designed to run on every conceivable device, from desktops and phones, to IoT devices and televisions.

A few of the changes include:

  • Unified platform for desktop and mobile; will be replaced by Windows 10. Developers will now develop for the (Universal Windows Platform), a set of libraries that can be updated independent of the OS and will be common to , , and .
  • Integration
  • Better integration, including streaming games from your console.
  • New browser (codenamed Spartan).
  • Support for holographic computing.

Official link:

Related Tags:

Useful links:

12165 questions
30
votes
14 answers

ModuleNotFoundError: No module named 'webdriver_manager' error even after installing webdrivermanager

I've installed webdrivermanager on my windows-10 system C:\Users\username>pip install webdrivermanager Requirement already satisfied: webdrivermanager in c:\python\lib\site-packages (0.8.0) Requirement already satisfied: lxml in…
30
votes
3 answers

How to force Win10 to install fonts in C:\Windows\Fonts?

Formerly I copied a ttf-file to C:\Windows\Fonts, clicked the file to display the font, then clicked on [Install] and everything was fine. When I do this procedure now, the font is not installed in C:\Windows\Fonts, but in…
Jörg
  • 499
  • 1
  • 5
  • 10
30
votes
3 answers

Matplotlib Savefig will NOT overwrite old files

This seems like it must be a permissions issue on my machine. After a systems update on Windows 10, when I run: import matplotlib.pyplot as plt #make figure plt.plot([1,2,3,4]) plt.ylabel('some numbers') #save plt.savefig("./figs/my_plot.jpg") It…
EHB
  • 1,127
  • 3
  • 13
  • 24
30
votes
2 answers

Windows 10 poor performance compared to Windows 7 (page fault handling is not scalable, severe lock contention when no of threads > 16)

We set up two identical HP Z840 Workstations with the following specs 2 x Xeon E5-2690 v4 @ 2.60GHz (Turbo Boost ON, HT OFF, total 28 logical CPUs) 32GB DDR4 2400 Memory, Quad-channel and installed Windows 7 SP1 (x64) and Windows 10 Creators…
30
votes
4 answers

How to configure Web Deploy on Windows 10 pro

How can I configure Web Deploy on Windows 10? Should it work? I found information about Web Deploy on Windows 8, there it isn't working. How is it in Windows 10?
BWA
  • 5,672
  • 7
  • 34
  • 45
30
votes
4 answers

How to attach to IIS process (w3wp.exe) on Windows 10/IIS 10?

Using Visual Studio 2013 in Windows 8.1, I've been used to debug applications hosted in IIS by attaching to the w3wp.exe process running the Application Pool. After upgrading from 8.1 to 10, I can no longer see any w3wp.exe processes in the Attach…
Eivind Gussiås Løkseth
  • 1,862
  • 2
  • 21
  • 35
29
votes
4 answers

How to fix endless reboot loop installing Microsoft ODBC Driver 17 - message: A previous installation required a reboot of the machine for changes

Installing Microsoft® ODBC Driver 17 on windows 10. During the install, Microsoft ODBC Driver 17 for SQL Server setup stops and shows "A previous installation required a reboot of the machine for changes to take effect. To proceed, restart your…
washingon
  • 981
  • 2
  • 10
  • 20
29
votes
2 answers

Attempting to resolve blurred tkinter text + scaling on Windows 10 high DPI displays, but concerned my approach is not Pythonic or is unsafe

After hours of tweaking I have settled on this code which allows me to get round the familiar problem of blurry / fuzzy text in Windows 10 on high DPI displays when using Tkinter interfaces in Python 3. I didn't want to have to set the compatibility…
dingles
  • 1,548
  • 1
  • 14
  • 11
29
votes
13 answers

DEP0001 : Unexpected Error: -1988945906 while deploying Windows UWP app to phone

Exact error: Severity Code Description Project File Line Suppression State Error DEP0001 : Unexpected Error: -1988945906 TestApp What does it mean? It seems it isn't problem with application, it works OK on PC. Version of OS: 1511,…
Piotrek
  • 10,919
  • 18
  • 73
  • 136
29
votes
5 answers

How to install .NET 4 Framework in Windows 10

How can I install the .NET 4.0 Framework in Windows 10? .NET 4.6 is already installed but I want to have .NET 4 Framework (without modifying the registry). Turning on and off Windows features in control panel does not have any effect.
Ho Pam
  • 435
  • 1
  • 4
  • 6
29
votes
5 answers

Deploying to Windows Phone 10 fails on Visual Studio

So many things happened that I don't know where to start. Seriously, shouldn't this be simpler? Edit: Someone here knows how can I contact Microsoft to tell this? Or even, can someone tell them about this problem? I have the last Windows 10 desktop…
29
votes
5 answers

x:Static in UWP XAML

An app I'm working on requires a ConverterParameter to be an enum. For this, the regular way to do would be: {Binding whatever, Converter={StaticResource converterName}, ConverterParameter={x:Static namespace:Enum.Value}} However, the UWP…
fonix232
  • 2,132
  • 6
  • 39
  • 69
28
votes
6 answers

How do I run the Visual Studio (2017) Installer?

It's probably really obvious once you know the answer, but I can't find it anywhere. I'm not talking about making an installer, I'm talking about running the installer that lets me modify which features of Visual Studio 2017 are installed. The main…
Betty Crokker
  • 3,001
  • 6
  • 34
  • 68
28
votes
11 answers

Windows 10 - Task Scheduler - Not running (0x41303)

I'm trying to schedule a task in Windows 10, on the event of "At log on" in order to start several programs, but it won't run after several trial/error. The task is configured as follows: General: Run whether user is logged on or not (it prompted…
Sebastian Motavita
  • 355
  • 1
  • 3
  • 9
28
votes
4 answers

How to use the new support for ANSI escape sequences in the Windows 10 console?

The latest Windows 10 updates include support for ANSI escape sequences in conhost.exe. I have been able to confirm that the escape sequences are properly picked up in cmd.exe, so I have the necessary updates. In particular, I tried typing in…
bzm3r
  • 3,113
  • 6
  • 34
  • 67