Posts

Docker error in windows

error: error during connect: In the default daemon configuration on Windows, the docker client must be run with elevated privileges to connect.: Get "http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/version": open //./pipe/docker_engine: The system cannot find the file specified. fix: run ps in admin mode,   & 'C:\Program Files\Docker\Docker\DockerCli.exe' -SwitchDaemon   cd "C:\Program Files\Docker\Docker" ; ./DockerCli.exe -SwitchDaemon switch has to be executed twice.

Fix missing icons

Image
1. Press Ctrl-Shift-Escape to get the task  manager . 2. In the Processes tab, click on explorer.exe and click End Process. You'll get a confirmation dialog. Click "End Process" to confirm. 3. From the File menu (still in the task manager), choose New Task (Run...). 4. Copy/paste/enter the following command in the run box: Code: cmd /c del %userprofile%\AppData\Local\IconCache.db /a 5. Open the Run box again with File --> New Task (Run...). This time, enter this command: Code: explorer.exe 6. All should be okay now. Open the Start Menu and confirm that your icons are fixed now.

CNAME entry check

http://www.digwebinterface.com/

DNX on ubuntu 14.04 throws Missing method exception

Error Missing method System.Runtime.InteropServices.Marshal::GetTypeFromCLSID(Guid) in assembly /usr/lib/mono/4.5/mscorlib.dll, referenced in assembly /home/netdevlinux102/.dnx/runtimes/dnx-mono.1.0.0-rc1-update1/bin/Microsoft.Dnx.Compilation.CSharp.dll System.MissingMethodException: Method not found: 'System.Runtime.InteropServices.Marshal.GetTypeFromCLSID'.   at System.Lazy`1[System.Boolean].InitValue () [0x00000] in :0 --- End of stack trace from previous location where exception was thrown ---   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw () [0x00000] in :0   at Microsoft.Dnx.Runtime.Common.EntryPointExecutor.Execute (System.Reflection.Assembly assembly, System.String[] args, IServiceProvider serviceProvider) [0x00000] in :0   at Microsoft.Dnx.Host.Bootstrapper.RunAsync (System.Collections.Generic.List`1 args, IRuntimeEnvironment env, System.String appBase, System.Runtime.Versioning.FrameworkName targetFramework) [0x00000] in :0 dnvm list

Using Azure PowerShell with Web Proxy

Add Proxy URI to Script Add the code below to the top of your Azure PowerShell script to define a proxy URI that your script can use for communicating with Microsoft Azure.  Depending on your proxy scenario, the value you use for the $proxyString variable may be different in your environment.  In the example below, I’m specifying the proxy URI value that’s commonly used with Fiddler. $proxyString = "http://127.0.0.1:8888" $proxyUri = new-object System.Uri($proxyString) [System.Net.WebRequest]::DefaultWebProxy =     new-object System.Net.WebProxy ($proxyUri, $true) Add Proxy Credentials to Script If the proxy configuration used in your environment requires authentication, you can also add one of the following lines to your script – depending on the type of authentication credentials required. To use Windows credentials for proxy authentication, you can add … [System.Net.WebRequest]::DefaultWebProxy.Credentials =     [System.Net.CredentialCache]::DefaultCredenti

"Walmart Pay" option missing?

You already have Walmart app in your mobile, and live near a store where "Walmart Pay" is accepted. But you don't see Walmart pay option in the app. All you have to do is, Select "Your Store" (Your default walmart store address in the app) and update it to the one that accepts Walmart Pay. Now you have toggled the feature on and ready to try!

Invalid service definition or service configuration” when accessing a Windows Azure role definition.

While creating a cloud service project, this error kept popping up. Just remove the diagnostics file  - diagnostics.wadcfgx and restart the application. Now I can access the cloud service configuration.