windows-10

Why would conda package installation and update clobber conda?

不打扰是莪最后的温柔 提交于 2019-12-11 15:11:29
问题 A little backstory. I was trying to install a git project csv2ofx and it has a requirement, pkutils . In my haste I installed peakutils . (I can only fine pkutils on pypi, but that's another story.) > conda install -c anaconda peakutils. [...] The following packages will be downloaded: package | build ---------------------------|----------------- bzip2-1.0.8 | he774522_0 150 KB anaconda ca-certificates-2019.5.15 | 0 166 KB anaconda certifi-2019.6.16 | py36_0 155 KB anaconda conda-4.7.10 |

Is there an alternative for the SendKeys class that will work with Windows 10

不想你离开。 提交于 2019-12-11 15:06:46
问题 I cannot find any definitive information anywhere but the System.Windows.Forms.SendKeys class appears to have been blocked / disabled / depreciated in Windows 10. I wrote a demo program that monitors the users keystrokes and if a user enters a known code it will pop up a form and then go off to a document database and return various strings (company names / addresses / contact lists etc) and replace the typed code with the retrieved string. SendWait is used to send the retrieved strings to

Why does NodeJS request() fail on localhost in flight mode, but not 127.0.0.1? (Windows 10)

北慕城南 提交于 2019-12-11 14:59:59
问题 Given I already have a server up and running on localhost (see further down for an example), at a node command line while online , I get the following: > var x = request('http://localhost:8080/test.html', ... function(err) { if (err) console.log(err) }) undefined > I expect to get the above result all the time. If I've switched to flight mode I get the following: > var x = request('http://localhost:8080/test.html', ... function(err) { if (err) console.log(err) }) undefined > { Error:

minishift start using HyperV fails when devtools installed on a different drive than /Users

落爺英雄遲暮 提交于 2019-12-11 14:39:55
问题 Is there a known issue wrt installing RH DevelopmentTools to D: when running minishift? I installed to D:\DevelopmentTools, which created a C:\Users\rcoe.minishift directory, in which the RHEL iso is located. Config looks correct: > D:\DevelopmentSuite>minishift config view > - iso-url : file://C:/Users/rcoe/.minishift/cache/iso/minishift-rhel7.iso > - memory : 4096 > - vm-driver : hyperv Yet, when I try to start minishift, it cannot locate the iso. From the error condition, it's not obvious

Change maximum allowed configuration file size [IIS Express 10/Windows 10]

血红的双手。 提交于 2019-12-11 13:52:58
问题 After adding multiple entries to a redirect map in a linked config file, I get the following error on IIS Express 10 on Windows 10 (64 bit, but IIS Express is running 32-bit): " Can not read configuration file because it exceed the maximum file size " I've tried adding a Configuration key to the registry, setting a MaxWebConfigFileSizeInKB value of 512 under HKLM/Software/Microsoft/IISExpress/10.0/mimic/Configuration : Any idea on how to enable configuration files larger than 250 KB for IIS

How to fix Windows batch file FOR command returing “Active code page: 65001”

会有一股神秘感。 提交于 2019-12-11 13:46:10
问题 If I understand correctly this batch script for /f "usebackq tokens=*" %%i in (`time /t`) do ( echo "%%i" ) echo "done" should just print the time and then "done" Instead though on my machine, Windows 10 Pro x64 it prints >test.bat >for /F "usebackq tokens=*" %i in (`time /t`) do (echo "%i" ) >(echo "Active code page: 65001" ) "Active code page: 65001" >(echo "17:48" ) "17:48" >echo "done" "done" Why is it doing this and how do I fix it so it just gets the time and not this "Active code page:

Was compatibility for NDIS 5.x drivers removed in Windows 10?

不想你离开。 提交于 2019-12-11 13:45:38
问题 I have an NDIS 5.x Passthru driver that was adapted from this sample. Obviously NDIS 6 has been available for quite some time, rendering 5.x obsolete, but backward compatibility has allowed the driver to continue to run in up to and including Windows 8.1 so the code has not been updated. Now the same driver does not function on Windows 10. (Edited to add: The driver loads, but "netcfg /b" shows that it did not bind to any adapters.) The sys file is the same, installed the same way and with

Issues porting libusb USB firmware over to Windows 10

為{幸葍}努か 提交于 2019-12-11 13:43:49
问题 I'm working with a custom USB firmware written in C utilizing the libusb API. The goal is to have this firmware compatible with Linux, Mac, and Windows. Thus far, testing w/a Beaglebone Black with debug probe on Ubuntu & Mac has yielded proper USB enumeration and operations with the respective OS's host application. However, trying to connect the board to Windows 10 results in 'This device cannot start. (Code 10) An invalid parameter was passed to a service or function.' I have primarily been

pathos cpickle error on python 2.7.13/14 using windows 10

可紊 提交于 2019-12-11 13:43:27
问题 Based on the example multiprocess using pathos and dill I hit the wall of cPickle errors. I did as www3cam did; with a little addition.. by removing pathos, dill, multiprocess and pyreadline. Then hit pip install pathos --no-cache-dir after carefully removed those side-packages mentioned above. Fresh install, cold-reboot of PC and an Anacoda2 update later... the jar with cPickles... is still there and Frank Zappa keeps singing his "Titties and Beer" song. The modified code from 1: #!/usr/bin