If you run a command that produces a lot of output in a Git Bash and you try to scroll up to the beginning of that output, you may see that it has been truncated. The number of lines that can be displayed in the Git Bash is controlled by a scrollback buffer size (10000 […]
windows
Git Bash: Install jq
jq is a command-line tool for parsing a JSON data (like grep or sed for a text data). You can use the jq command on Windows using a Git Bash, but firstly it has to be installed as it is not among the default tools. This note shows how to install the jq for the […]
Generate SSH Key in Windows
Starting from Windows 10 build 1809, Windows has a native SSH client that is based on the OpenSSH port. The OpenSSH client in Windows includes an ssh-keygen – the command-line tool for creating authentication keys for SSH. To create a pair of SSH keys in Windows, the ssh-keygen command can be executed from a Windows […]
Microsoft Edge: Bypass NET::ERR_CERT_AUTHORITY_INVALID
Usually, when you get the NET::ERR_CERT_AUTHORITY_INVALID error in a Microsoft Edge browser you can bypass it by going to “Advanced” and clicking on “Continue to <website> (unsafe)” option. But it may happen that there is no such option in “Advanced”. This short note shows how to bypass the error NET::ERR_CERT_AUTHORITY_INVALID in the Microsoft Edge if […]
Bad owner or permissions on ‘.ssh/config’ [SOLVED]
Starting from Windows 10 build 1809, Windows has a native SSH client that is based on the OpenSSH port. If you try to connect to some host from a Windows command-line prompt (CMD) or PowerShell using the ssh command, you may receive the error as follows: Bad owner or permissions on C:\\Users\\<username>/.ssh/config This short note […]
Rename User Folder in Windows
User profiles in Windows on the most of computers are usually located in the folder C:\users\. By default, the user folder name is the same as you user name. But if you change your user name, the old name of your user folder will remain and you may want to rename it as well. The […]
PasswordNeverExpires: Disable Password Expiration
A password expiration is a feature in Windows that forces users to change their passwords after a certain number of days. When it is time to change your password, Windows will send you a “Consider changing your password” notification. In this note i will show several ways of how to disable the password expiration of […]
Change User Name of Local Account in Windows
There may be different reasons for changing a local user account name in Windows. For example, you may want to change the name on the sign-in screen to your actual name instead of the nickname or vice versa. This short note describes the easiest way of changing a user name of the local account in […]
Disable Startup Programs in Windows
It is quite annoying when some apps are not expected to, but they are automatically opening on startup in Windows. And it raises a perfectly logical question, how to stop such apps from running at startup. In this note i will show the easiest and the most efficient way of how to find ALL startup […]
You Need Permission to Perform This Action [FIXED]
While trying to delete, copy, move or rename some files or folders in Windows you may get the error: “You need permission to perform this action” followed by “You require permission from the computer’s administrator to make changes to this file or folder“. This “Access Denied” error means that you are not authorized to make […]