初心者向けの 10 の基本的な Windows コマンド

WBOY
リリース: 2024-08-12 07:02:32
オリジナル
449 人が閲覧しました

Windows システムの操作が、終わりのない宝探しのようなものだと感じたことはありますか? 1 つのファイルや設定を見つけようとして、無限のメニューやフォルダーをクリックすることになります。そこでこれらのコマンドが登場します。これは、物事をより速く完了するための秘密のショートカットを持っているようなものです。これら 10 個の基本的な Windows コマンドをマスターすれば、ワークフローを合理化するだけでなく、内なるハッカーを導くこともできます。

この記事にリストされているすべてのコマンドは、コマンド プロンプトと PowerShell の両方で使用できます。

1 cd: ディレクトリを簡単に変更

Windows ファイル システムをナビゲートするのは迷路である必要はありません。 cd (ディレクトリ変更) コマンドを使用すると、ディレクトリ内を簡単に移動できます。

コマンドを使用するには、「cd」と入力し、その後に移動したいディレクトリを入力します。ホーム ディレクトリからドキュメント フォルダーにすぐにジャンプする必要がありますか?次のコマンドを入力します:

cd Documents
ログイン後にコピー
10 Basic Windows Commands for Beginners

あるいは、1 つ上のレベルに進みたい場合もあります。 cd .. と入力すると、前のディレクトリに戻ります。これは、さまざまなディレクトリをすばやく移動する必要がある場合に役立ちます。

10 Basic Windows Commands for Beginners

ルート ディレクトリから始まるフル パスを指定することで、どこにいても特定のパスに移動することもできます。正しい構文とスペルを使用してください。 System32 ディレクトリに移動するには、次のコマンドを入力します:

cd C: WindowsSystem32
ログイン後にコピー
10 Basic Windows Commands for Beginners

ファイル システムをよりアクセスしやすくすることが重要です。 Windows でのディレクトリの変更について詳しくは、Windows 10 のコマンド プロンプトでディレクトリを変更する方法をご覧ください。

2 dir: ディレクトリの内容を一覧表示する

フォルダーを開かずにその中身を確認したいですか? dir (ディレクトリ) コマンドが答えです。すべてのファイルとディレクトリがターミナルに直接リストされます。 dir と入力するだけで、現在のディレクトリにあるすべてのリストが表示されます。

10 Basic Windows Commands for Beginners

dir /a と入力すると、ディレクトリ内のすべてのファイルとフォルダー (非表示のものを含む) が表示されます。

10 Basic Windows Commands for Beginners

コマンドを入力するときに Tab キーを使用してファイル名とディレクトリ名を自動補完し、時間を節約し、エラーを減らします。

3 mkdir: 新しいディレクトリの作成

mkdir (ディレクトリ作成) コマンドを使用して、ファイルを簡単に整理します。任意の場所に新しいフォルダーを作成します。新しいフォルダーの作成は、次のコマンドを入力するだけで簡単です:

mkdir NewFolder
ログイン後にコピー
10 Basic Windows Commands for Beginners

このコマンドは、システムを整理しておくのに最適な方法です。

ネストされたディレクトリ構造を一度に作成したい場合は、mkdir abc コマンドを使用できます。このコマンドはディレクトリ「a」を作成し、「a」内にディレクトリ「b」を作成し、「b」内にディレクトリ「c」を作成します。これは、各ディレクトリを個別に作成するのではなく、単一のコマンドで複数のレベルのディレクトリを設定する便利な方法です。

10 Basic Windows Commands for Beginners

4 rmdir: ディレクトリを削除します

不要な空のフォルダーはありますか? rmdir (ディレクトリの削除) コマンドがそれを処理します。ただし、空でない場合は、別のアプローチが必要になります。空のディレクトリを削除するには、単に次のように入力します:

rmdir NewFolder
ログイン後にコピー
10 Basic Windows Commands for Beginners

ディレクトリとその中のすべてのものを削除するには、rmdir /s NewFolder コマンドを使用します。

10 Basic Windows Commands for Beginners

2 番目のことには注意して、本当にすべてをなくしたいと思っていることを確認してください。

mkdir または rmdir コマンドを使用する場合、アクションが成功しても確認メッセージは表示されません。ディレクトリが作成または削除されたことを確認するには、dir コマンドを使用して現在のディレクトリの内容を一覧表示します。アクションが成功すると、それに応じて新しいディレクトリがリストに表示されたり、リストから消えたりします。

If you need more information on a specific command, simply enter help followed by the command. For example, if you need more information on the rmdir command, type the help rmdir command.

5 del: Delete Files

Do you need to delete a file? The del command will do it. Use it wisely because once it's gone, it's gone (sort of). Deleted files on hard drives aren't immediately erased, while on solid-state drives, the data may be wiped more quickly.

To delete a file, type the command del followed by the file(s) you want to delete. For example, to delete file.txt, type this:

del file.txt
ログイン後にコピー
10 Basic Windows Commands for Beginners

It’s a powerful command, so handle it with care.

The del command doesn't print anything in response to its use, which might surprise you. Once you run the command, the file will be deleted silently. You can verify that the file has been deleted by using the dir command to check the contents of the directory where the file was located.

6 copy: Copy Files to Another Location

Do you want to back up your files? The copy command makes duplicating files a breeze. To copy file.txt to the C:Backup folder, type the following:

copy file.txt C:Backup
ログイン後にコピー
10 Basic Windows Commands for Beginners

By using the wildcard symbol "*" followed by the file extension, you can copy all files with the same extension. For example, to copy all text files to the C:Backup directory, you use this command:

copy * .txt C:Backup
ログイン後にコピー
10 Basic Windows Commands for Beginners

Press F7 to view and select from your command history. This allows you to easily re-run previous commands without retyping them.

7 move: Move Files to a New Location

Are you reorganizing your files? The move command lets you move files around on Windows without having to copy them to a new location. To move a file, use the move command followed by the filename and, finally, the location where you want it moved.

As an example, to move file.txt to the C:Backup folder, type this command:

move file.txt C:Backup
ログイン後にコピー
10 Basic Windows Commands for Beginners

8 type: Display the Contents of a Text File

Do you want to peek inside a text file without opening it? The type command displays its contents right in the terminal. This can be done by entering type followed by the text file you want to read. To read file.txt, use this command:

type file.txt
ログイン後にコピー
10 Basic Windows Commands for Beginners

The cls command clears all text from the terminal screen, giving you a clean slate to work from.

9 systeminfo: View System Information

The systeminfo command provides an overview of your Windows system, perfect for troubleshooting or satisfying your curiosity. It displays information such as the operating system version, processor type, and installed RAM. It also includes details about the computer's network configuration.

10 Basic Windows Commands for Beginners

10 tree: Display Directory Structure

The tree command displays a graphical representation of the directory structure of a drive or path. It's a handy way to see the layout of your files and folders. To see the structure of the Users directory, type this command:

tree C:Users
ログイン後にコピー
10 Basic Windows Commands for Beginners

So there you have it: 10 basic Windows commands for beginners that will make you feel like a computer whiz. Practice these commands, and you'll soon be navigating, managing, and troubleshooting your Windows system with ease. Keep exploring, keep experimenting, and watch your command-line skills grow.

変更は保存されました

メールが送信されました

メールはすでに送信されました

メールアドレスを確認してください。

確認メールを送信してください

フォローされているトピックのアカウントの最大数に達しました

以上が初心者向けの 10 の基本的な Windows コマンドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:howtogeek.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!