How to Change System Language in Windows 10

Windows 10 language

You can change the default display language of your Windows 10 from English to any other language. This is useful in scenarios where multiple users are accessing the same system and they understand different languages. In this guide, I will walk through to change the default English language to Urdu (you can change it to Spanish, French or ... Read more

How to Create a Function in PowerShell

If you have worked with other programming languages, you have may used functions for code reusability. You can also create functions in PowerShell. PowerShell function example Below is the syntax of a simple function function hello-world { write-host "hello world"  } You can also pass parameters in a function using the param keyword function Get-TimesResult { Param ([int]$a,[int]$b) $c = ... Read more

How to Transfer a Windows Media Player Playlist to a Different Computer

Transfer Media Player Playlist

Many people these days are quite fond of listening to music and they create several playlists based on their tastes and then listen to different songs in their leisure time. The users can conveniently listen to the songs of any particular playlist but the question arises when they want to transfer this playlist to a ... Read more

Increase number of visible lines in cmd on Windows

Windows CMD Buffer Size

The Windows command-line only shows a history of 300 lines by default - this can be a nuisance especially if you are working with long list outputs. However, you can easily increase the number of lines that are shown. Open a cmd window, right-click the title bar, and select Properties. Go to the Layout tab and ... Read more