Tag Archives: 2015

2015

How to Flush DNS.

If you are running into a lot of “Page Not Found” errors and you know you’re connected to the internet, try flushing your DNS cache to have your computer request new information. Open the command prompt and type ipconfig /flushdns and press key Enter. Because most computers that are connected to the internet automatically cache… Read More »

The svgwrite python module – part 001.

A svgwrite python module is a tool by Manfred Moitzi. To install this python module uses Python 3.4 version. Then you need to install svgwrite with pip3.4:

This svgwrite is the only module that needs to be imported and then you can deal with this module. See this simple example:

The result of… Read More »

Update Windows 10 from command prompt.

To update your Windows 10 then run Command Prompt utility in Administrator mode: C:\WINDOWS\system32>wusa.exe update or if not working this command: C:\WINDOWS\system32>wuauclt.exe /updatenow So, you can use wusa.exe to manage windows updates and install .msu files. Open your task manager and will see how to try to update your Windows 10.

Using wmic command under Windows 10 – part 001.

The Windows Management Instrumentation Command-line named WMIC can be used with Command Prompt utility in Administrator mode. To view the command usage or help in detail use /?. Examples: – when the sticker from your computer or laptop is missing; C:\WINDOWS\system32>wmic csproduct – to see all service packs, patches or hotfixes installed on the remote… Read More »