Windows command line software

How to check if Windows 32 or 64 bit?

There are multiple ways to check whether a Windows computer is running 32-bit OS or of 64-bit one. Check 32 or 64 bit using WMIC You can get to know the OS architecture by running the below simple command. wmic os get OSArchitecture Example: c:\>wmic os get OSArchitecture OSArchitecture 64-bit c:\> Using program files folder: [. ]

Get Windows install date

If you ever need to find when was Windows installed on your computer or laptop, then here is a Windows command Systeminfo that can help you with that. Run the below Open command prompt Run the command systeminfo | findstr /C:»Install Date» The below example shows install date on my computer C:\>systeminfo | findstr /C:»Install [. ]

User questions about fixing javac not recognized error

Of all my posts, the one that gets most number of comments is – “Javac is not recognized as internal or external command” Due to heavy incoming comments, I stopped approving them long back to avoid the page become a giant one. However there are still users who’ve been commenting that they were not able [. ]

How to Kill process from PowerShell

Powershell provides command Stop-Process to kill a process from command prompt. This command can take in process Id, process name etc and can kill process from CMD. Powershell command to Kill a process using name Below is an example command to kill a process using name of the application or image file. Stop-Process -Name ApplicationName [. ]

Fix WMIC invalid alias verb error

If you use WMIC commands extensively, you would have come across the error – ‘Invalid alias verb’. WMIC error messages are not much self explanatory, so they don’t help in debugging what’s wrong with the command you ran. I encountered this error quite a few times, and upon careful examination I was able to identify [. ]

How to remove user login password from command prompt

For Windows home users, having a login password is not absolutely necessary if the physical access to the device is restricted. Also, anyone running automated tests with login, you may want to enable login automatically without being prompted for a password. Learn how to remove user password for a local user from windows command prompt. [. ]

Run command for performance monitor

Run the following steps to open performance monitor application on Windows computer. Press Windows+R to open run windowType ‘Perfmon’ and press enter. This open the performance monitor application. Performance monitor on Windows 10

PowerShell – Failed to update help for the modules

Powershell help manuals can be updated by running the command ‘Update-Help’ from Powershell command prompt. If you run this command from a normal cmd session, you would get an error as below. PS C:\> update-help update-help : Failed to update Help for the module(s) : ‘AppBackgroundTask, AppLocker, AppvClient, Appx, AssignedAccess, BitLocker, BitsTransfer, BranchCache, CimCmdlets, ConfigCI, [. ]

Run command for remote desktop (RDP client)

The Run command for Windows Remote desktop application is Mstsc Just open Run from start menu and type mstsc in the text box next to open and press enter. This command mstsc can be used from command line too. A system running Windows 7/Windows 10 allows only one remote desktop connection at a time, means [. ]

Find saved outlook emails

It’s a common practice to export Outlook emails as files on disk, this helps save your important emails from accidental deletion or purging out/archiving due to IT enforced policies. It may so happen that now you don’t remember which folder you saved the emails to. This post helps you find them. Here is how you [. ]

Читайте также:  Какие маки поддерживают mac os big sur

Command-Line Reference

Applies To: Windows Server 2003, Windows Vista, Windows XP, Windows Server 2008, Windows 7, Windows Server 2003 R2, Windows Server 2008 R2, Windows Server 2000, Windows Server 2012, Windows 8

Use this topic to find the documentation resources and other technical information that you need to learn about the command shell, and to automate command-line tasks by using scripts or scripting tools.

To read introductory information about the command shell and command-line tools, see Feature description. To see a listing of new and deprecated command-line tools see New and deprecated functionality.

To find information about a specific command, in the following A-Z menu, click the letter that the command starts with, and then click the command name.

Prerequisites

The information that is contained in this overview applies to:

Windows Server 2012

WindowsВ ServerВ 2008В R2

WindowsВ ServerВ 2008

WindowsВ ServerВ 2003В R2

WindowsВ ServerВ 2003

Feature description

New and deprecated functionality

New or Deprecated?

Create a new cluster or configure an existing cluster.

Configure DFS folders and folder targets in a DFS namespace.

Creates and manages File Server Resource Manager quotas.

Create and manage file groups, file screens, file screen exceptions, and file screen templates that are used to configure general administrative options for screening files.

Enable optional features in Windows by downloading required files from WindowsВ Update or a source that Group Policy specifies.

Read, write, run, debug, and test Windows PowerShell scripts and modules in a friendly, graphic-assisted environment.

Install or remove roles, role services, and features.

Monitor an RD Session Host session.

Create and manage storage reports and storage report tasks, and configure general administrative options for File Server Resource Manager.

Command shell overview

The command shell is a software program that provides direct communication between the user and the operating system. The non-graphical, command shell user interface provides the environment in which you run character-based applications and utilities. The command shell executes programs and displays their output on the screen by using individual characters similar to the MS-DOS command interpreter, Command.com. The command shell in the Windows Server operating system uses the command interpreter, Cmd.exe. Cmd.exe loads applications, directs the flow of information between applications, and translates user input into a form that the operating system understands.

You can use the command shell to create and edit scripts to automate routine tasks. For example, you can create simple scripts in batch (.bat) files to automate the management of user accounts or nightly backups. You can also use the command-line version of Windows Script Host to run more sophisticated scripts in the command shell. For more information, see Cscript or Wscript. You can perform operations more efficiently by using scripts than you can by using the user interface. Scripts accept all commands that are available at the command line.

Customize the Command Prompt window

You can change the properties for the Command Prompt window.

To configure the Command Prompt window

Open a Command Prompt window, click the upper-left corner of the Command Prompt window, and then click Properties. (Or to open Command Prompt Properties from the keyboard, press ALT+SPACEBAR+P.)

Click the Options tab.

In Command History, type or select 999 in Buffer Size, and then type or select 5 in Number of Buffers. By increasing the screen buffer size to 999, you enable scrolling through the Command Prompt window. By increasing the number of buffers to five, you increase the number of lines in the Command Prompt window to 5000.

In Edit Options, select the Quick Edit Mode and Insert Mode check boxes.

Click the Layout tab.

In Screen Buffer Size, type or select 2500 in Height.

To further customize your Command Prompt window settings, perform any of the following optional tasks:

In Screen Buffer Size, increase Width.

In Window Size, increase Height.

In Window Size, increase Width.

Clear the Let system position window check box, and then, in Window Position, change the values in Left and Top.

In the Apply Properties dialog box, click Save properties for future windows with same title.

To enable or disable file and directory name completion on a computer or user logon session, run Regedit.exe and set the following REG_DWORD value : HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\CompletionChar\REG_DWORD To set the REG_DWORD value, use the hexadecimal value of a control character for a particular function (for example, 0Г—9 is Tab and 0Г—08 is Backspace). User-specified settings take precedence over computer settings, and command-line options take precedence over registry settings.

Читайте также:  Delphi для windows mobile

Incorrectly editing the registry may severely damage your system. Before making changes to the registry, you should back up any valued data on the computer.

Command-line reference A-Z

To find information about a specific command, in the following A-Z menu, click the letter that the command starts with, and then click the command name.

Each command-line tool topic displays the version of Windows that is supported by the command-line tool.

5 Free Software To Download Files From Command Line In Windows

Here are 5 free software to download files from command line in Windows. In this article, I will talk about very powerful tools that you can use to download files using the Windows command line. Some of these software come with certain nice features such as VirusTotal lookup, resume downloads, BitTorent support, and many others. You can use all of these software right from the Windows command prompt.

Command line software make the use of system memory efficiently and even perform faster than the GUI based software. That’s why I have compiled the following list of free software to download files from Command line in Windows.

So, let’ find out what are 5 free software to download files from Command line in Windows.

5 Free Software To Download Files From Command Line In Windows

aria2

aria2 is a quite a unique free software to download files from command line in Windows. It comes with numerous powerful set of features that you will like. It supports a lot of protocols to download files, including HTTP, HTTPS, FTP, and lot more. While using aria2, you can download a file from multiple sources, you can use multiple connections per host, etc. Apart from a being a command line file downloader, aria2 is also a BitTorrent client with some features like Web-Seeding, DHT, Magnet URI, Encryption, Selective Downloads, and some others. While downloading files using aria2, you can see the progress, average speed, downloaded file size, and many other parameters.

Getting started with aria2 is fairly simple. After downloading the Windows Binary of aria2 from the above link, you can move that file to C:\Windows folder. Or, you can use the EXE of aria2 from the download directory as well. Now, all you have to do is execute the command and add the download link of the file as a parameter. The correct syntax is:

You can see the above screenshot, showing aria2 in action. It has successfully downloaded the target file and showing various parameters in the command window.

So, aria2 is also a very nice free software to download files from command line in Windows. I like various things about this software, for example, multiple connection per host. This feature of aria2 will help you accelerate the download speed.

Axel is a download accelerator as well as a command line download manager for Windows. It uses multiple connections to download a particular file. Using Axel, you can use multiple mirrors to download a file. Axel works very well over HTTP and FTP protocols to download files. And during downloading, you can see the progress of the downloaded file.

Getting started with Axel is pretty easy. Grab its executable file from the above link and then move it to the any directory of your choice. You can also copy-paste it to any windows path folder such as C:\Windows. After doing so, you can run it very easily using the command prompt. The basic syntax of the Axel command is as shown below.

After running the above command, the file will start downloading. And you can see the download file progress in the command window, as shown in the above screenshot.

Axel is really a very nice command line file downloader that you will find on the internet. I really like the way it downloads the given file and uses cascading lines to display the download file progress and download speed.

Curl is a cross-platform and a free software to download files from command line in Windows. Basically, it is a data transferring software which is also a backbone of thousands of applications and software. It supports a lot of protocols including HTTP, HTTPS, FTP, POP3, SMTP, IMAP, SCP and lot more, to transfer data in and out of a device. It is widely used in set top boxes, TV, Routers, Smartphone and in many devices to transfer data. Its binaries are also available for Windows operating system that you can use to easily upload and download files. And while downloading files, you can see various stats such as download speed, upload speed, average speed, time left, time spent, etc.

Читайте также:  Как узнать есть ли обновления windows 10

It’s pretty easy to get started with Curl to download files from command line. Download its Windows binaries from the above link. After that, extract the downloaded folder and locate “Curl.exe” file in the Src folder. Now, copy this file and paste it to the C:\Windows folder. After doing this, you will be able to use Curl from any location on your PC. To use it, open a particular folder where you want to save the downloaded file and open the command prompt in the same folder using the shift + right-click. After that, type the following command and hit the enter to start downloading a file.

So, in this way you can easily download a particular file using Curl in Windows. I really like Curl as it supports a lot of protocols to upload and download file. But, do remember that the link of the file that you will supply to Curl should be a direct link to the file.

Wget is another free software to download files from command line in Windows. This software supports HTTP, HTTPS, FTP, like protocols to download files. And the best part is it allows you to resume an incomplete download easily. Apart from downloading files, you can also use it to mirror a website for offline browsing and upload files to FTP (authentication required). While downloading a file using Wget, you can see its progress.

It’s pretty easy to download files using Wget. First download its Windows binary file from the above link and then move the downloaded Wget.exe file to the C:\Windows directory. Now, the Wget can be accessed from any location on your PC. To download a file using Wget, open the command prompt in any windows and type the following command.

wget [download file link]

You can use the above command to download any file whose direct link you have. And the downloaded file will be saved in the same directory in which you have open the command prompt.

So, it was the case with the Wget, a free software to download files from command line in Windows. I really like that this command line downloader can even download an entire website with just a few commands.

Nugget

Nugget is a free software specially for Windows to download files. The software can be used via Windows command prompt, but that’s not necessary. It also comes with its own command line interface in which you can copy paste a download link of a file. The best thing about Nugget is that after downloading compressed files or executables, it performs a VirusTotal lookup for those files. So, it also shows the VirusTotal look up stats for the downloaded file along with SHA1 and MD5 hash.

The process of using Nugget is very similar to what I have already shown you from above software. First, grab its EXE from the above link and then you can use it by just double clicking on its interface. Or you can copy-paste its EXE file to C:\Windows folder to use it from the Windows command line. The syntax for downloading a file using Nugget is shown below.

It’s clearly showing in the above screenshot that Nugget has successfully downloaded an EXE file and also included the VirusTotal look up stats.

All in all, I find Nugget to be a very good free software to download files from command line in Windows. As it is still in development, so you can hope for more features in the coming updates.

Closing Thoughts

These are some very good free software to download files from command line in Windows. All of these software work as they are supposed to do. Some of these software are quite simple and only focus on downloading a particular file. Also, I have mentioned some software which are very powerful and offer other features such as download resuming, FTP upload, VirusTotal lookup, etc. So, if you are looking for Command line file downloaders, then this list can come in handy to you.

Оцените статью