windows-10

VMware Workstation and Device/Credential Guard are not compatible

心不动则不痛 提交于 2019-12-03 00:02:56
问题 I have been running VMware for the last year no problems, today I opened it up to start one of my VM and get an error message, see screen shot. I did follow the link and went through the steps, on step 4 I need to mount a volume using "mountvol". when I try to mount a volume using mountvol X: \\?\Volume{5593b5bd-0000-0000-0000-c0f373000000}\ it keeps saying The directory is not empty. I even created a partition with 2GB and still the same message. My Questions: How can I mount the volume that

Meteor-up terminates after running deploy

旧巷老猫 提交于 2019-12-02 23:31:34
问题 I don't know why I'm getting this error. Meteor-up is a brilliant. Whenever I run the deploy command it gets to a time and terminates. Could it be that a timeout has been set for the server to finish uploading the files? C:\Programs\contract\schoolapps\.deploy>mup.cmd deploy --cached-build ┌─────────────────────────────────────┐ │ │ │ update available 1.3.2 => 1.3.3 │ │ To update, run npm i -g mup │ │ │ └─────────────────────────────────────┘ Not building app. Using build from previous deploy

Getting all files in UWP app folder

强颜欢笑 提交于 2019-12-02 22:29:58
For UWP, it is easy to get all files in the app local folder as: IReadOnlyList<StorageFile> files = await ApplicationData.Current.LocalFolder.GetFilesAsync(); You can now iterate on the files list and even get further info on individual files. I would like a similar all-file-getter for an app folder, for instance, consider the /Assets folder where app *.png files are stored. Single file with a known name is no problem; I can refer to it quite easily as: StorageFile.GetFileFromApplicationUriAsync(new Uri(@"ms-appx:///Assets/StoreLogo.png")) My question is, therefore, is there a similar thing

How can I open a local HTML file in Microsoft Edge browser?

眉间皱痕 提交于 2019-12-02 22:06:58
Since time immemorial, most web browsers have been able to open a local file if you ran the web-browser executable, for example just execute iexplore.exe file:/c:/temp/file or via the IShellDocView interfaces. I am trying to do this from within my own program, in Windows 10, with Microsoft Edge, and am unaware of how to do it. The executable appears to be completely undocumented, does not respond to /? or /help, and simply crashes no matter what I pass to it, and given that the path appears to be likely to change, is probably not the correct approach to invoke this executable directly: C:

A connection with the name you specified already exists

心已入冬 提交于 2019-12-02 18:44:24
I am setting up my previously working vagrant environment in Windows 10. I've updated to the newest version of both VirtualBox ( https://www.virtualbox.org/ticket/14040 ) and Vagrant. When I vagrant up I get an error: Cannot rename this connection. A connection with the name you specified already exists. Specify a different name. I've since tried deleting all of my boxes, deleting the .vagrant and .virtualbox directories, reinstalling both virtualbox and vagrant. Yet, I always get the same error. Here is the error message from my console: The guest machine entered an invalid state while

How to install WinDbg when VS 2015 is already installed?

浪尽此生 提交于 2019-12-02 18:40:17
I'm trying to install WinDbg from this page , just under the Debugging Tools for Windows 10 (WinDbg) section. However, when I download the executable and run it, it tells me that You must uninstall the Windows Software Development Kit - Windows 10.0.10586.15 before you can install the latest version of the kit. I'm guessing this probably has to do with the fact that I already have VS 2015 (and the Windows 10 SDK) installed. However, when I go to the Developer Command Prompt and type in > where windbg it tells me that it can't find WinDbg. How, then, do I install it without doing anything

MVVM light can't work in Windows 10 Universal app

我与影子孤独终老i 提交于 2019-12-02 18:35:57
I tried to use MVVMLight in our Windows 10 Universal app, but it seems like that it totally can't work. I've seen this blog Nuget downloaded and added a reference to the MVVM Light assemblies Nuget also added the ViewModelLocator in the Application.Resources. Can't see the Locator in Application.Resources You need to create the ViewModelLocator manually, please follow these steps: Create a new Windows 10 Universal app, for example: MVVMLightUWPApp1 Add reference to MVVMLight using NuGet Package Manager Add a folder for your UWP app, for example: ViewModel Under the ViewModel folder, add two

How to detect Windows 10 light/dark mode in Win32 application?

落花浮王杯 提交于 2019-12-02 18:15:33
A bit of context: Sciter (pure win32 application) is already capable to render UWP alike UIs: in dark mode: in light mode: Windows 10.1803 introduces Dark/Light switch in Settings applet as seen here for example . Question: how do I determine current type of that "app mode" in Win32 application? VTT Well, it looks like this option is not exposed to regular Win32 applications directly, however it can be set / retrieved through the AppsUseLightTheme key at the HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize registry path. EDIT: Calling out that this works in all

What's the cleanest way to remove Homestead and Vagrant from a Windows system?

旧巷老猫 提交于 2019-12-02 18:05:36
I followed the instructions in Laravel docs to install Vagrant and Homestead on Windows 10, but now I've decided to move the whole development stuff to another dedicated server running Debian. I need to fully remove Vagrant, Homestead, Composer as well as AMPPS (old stuff) from the Windows 10 desktop. It should be easy to simply uninstall Vagrant and AMPPS, but how do I go about cleaning up the remaining things? I don't need to keep any of the code etc. I've already got that in a different location. Virtual Machine Remove the homestead VM by running vagrant box remove laravel/homestead

Vagrant up - VBoxManage.exe error: VT-x is not available (VERR_VMX_NO_VMX) code E_FAIL (0x80004005) gui headless

喜你入骨 提交于 2019-12-02 17:59:04
Machine: Window10 (64bit). I downloaded the latest VirtualBox, Vagrant and initialized CentOS 6.7 64bit image/url. The following worked successfully in Git-Bash session. 1. vagrant box add "centos67x64" " https://github.com/CommanderK5/packer-centos-template/releases/download/0.6.7/vagrant-centos-6.7.box " 2. vagrant init 3. Updated Vagrantfile (and turned vb.gui option i.e. uncommented that config section in the file). config.vm.provider "virtualbox" do |vb| # Display the VirtualBox GUI when booting the machine vb.gui = true # Customize the amount of memory on the VM: vb.memory = "2048" end