How to Create Custom Keyboard Shortcuts in Windows 10

Windows 10 Keyboard Shortcut

We live in an era where technology is evolving and innovative solutions are being created to facilitate people by significantly reducing redundant tasks. By cutting down or automating time-consuming tasks, offices of every industry type are adopting an efficient work model. But one of the unaddressed and inefficient tasks that majority of the computer users ... Read more

How to Disable Automatic Wi-Fi Connections in Windows 10

Whenever you connect your PC to a new Wi-Fi network, you enter the relevant credentials like a password. Once the connection has been established, Windows 10 saves that network profile along with its credentials for you. Therefore you don’t have to enter the same details again and again for the same Wi-Fi network. This lets ... Read more

How to use file search in Windows 10

Windows 10 File search

Where are my files on Windows? We all create and save files on our PCs and tend to forget either the names of the files or which folders we’ve saved them in. So when it’s time to reopen or retrieve them, our memory doesn’t help much and finding a particular file becomes troublesome. But there’s ... Read more

How to Repair VMware Virtual Hard Disk on Windows 10?

To repair a VMware virtual hard disk on Windows 10, go to the VMWare site and download vdiskmanager-windows-7.0.1.exe2.zip (see also https://kb.vmware.com/s/article/1023856) Repair VMware Virtual Hard Disk on Windows 10 Unzip the folder. Rename the file to vmware-vdiskmanager.exe and copy it following location. C:\Program Files\VMware\VMware Workstation or C:\Program Files (x86)\VMware\VMware Workstation if you have 64-bit operating system. Shut down ... Read more

How To Rename NIC Adapters with PowerShell

If you want to rename NIC adapters with PowerShell, follow this tutorial: Step 1. Open PowerShell with admin privileges Step 2. Execute the following command, Rename-NetAdapter -Name "<Old NIC Adapter Name>" -NewName "<New Adapter Name>" Example If you want to rename an old NIC Ethernet to a new name ManagementAdapter, the command should look like, Rename-NetAdapter ... Read more

Can I Update Windows 10 Without Internet Connection?

Short answer, you cannot update Windows 10 directly without an Internet connection. Update Windows 10 Without Internet Connection However, if you have an Internet connection on some other PC, you can get the information of latest update (I mean note down the number which is in the form of KBxxxxxxx) from the following link. https://support.microsoft.com/en-us/help/4055254 ... Read more

How to Write VBScript Code on Windows

Open notepad or any other third party editor like Notepad++. Write any VBScript code suppose Wscript.Echo "Hello" Wscript.Quit 0 Save the file with .vbs extension suppose hello.vbs. You can then run that VBScript file from command prompt. Reference http://testingfreak.com/run-vb-script-code-written-on-notepad-without-additional-software-windows/