長い間Windows(Windows)ユーザーであった場合は、コマンドプロンプト(Command Prompt)を使用したに違いありません。今日でも、CMDは、多くの高度な管理機能の実行、および(CMD)Windows関連の問題のトラブルシューティングに役立ちます。以前、いくつかの基本的なコマンドプロンプトのヒント(Basic Command Prompt Tips)について説明しました。今日は、Windows10/8/7向けの少し高度なCMDトリックを紹介します。(a-bit-more-advanced)
コマンドプロンプトまたはCMDトリック
1]エラーコマンド(Copying Error Commands)をクリップボードに直接コピーする(Clipboard Directly)
多くの場合、操作の実行中にエラーが発生します。そのため、電子メールやチャットで関係当局に報告する前に、エラーをコピーしてクリップボードに貼り付ける必要があると感じるかもしれません。このトリックを使用すると、コマンド出力をクリップボードに簡単に保存できます。
これを行うには、 コマンドプロンプトを起動し、コマンド| clipを追加するだけです。コマンドの最後でクリップします。たとえば、Dir /d | clip。
2] IPアドレス、DNSサーバー(DNS Server)アドレスなどを見つける
CMDを使用すると、IPアドレスを確認できます。これをする:
- コマンドプロンプトでipconfig ipconfig /allEnterキー(Enter)を押します。
- 完了すると、コマンドプロンプトは、ホスト名、ノードタイプ、プライマリDNSサフィックスなどの情報とともにIPアドレスとDNSサーバーに関する情報を返します。(DNS)
また、CMDは、 (CMD)IPルーティング(IP Routing)、Winsプロキシ(Wins Proxy)、およびDHCPが有効になっているかどうかを通知します。
3]誰かがあなたのWiFi接続を盗んでいないか確認してください(Check)
コマンドプロンプトのハイライトの1つは、誰かがローカルエリア接続(Area Connection)に不正にアクセスして使用しているかどうかを通知できることです。確認するには、次の手順に従います。
- Webブラウザーを開き、http://192.168.1.1またはhttp://192.168.0.1、あるいはブロードバンドルーターのデフォルトのIPアドレスにアクセスします。
- 「接続されたデバイス(Devices)」などのタブを検索します。
- 次に、コンピュータのコンピュータ名、IPアドレス、およびMACアドレス(MAC Address)または 物理アドレス(Physical Address)またはハードウェアアドレス(Hardware Address)を見つけます。上記のトリックを使用してください。
- 次に、手順2(Step 2)でルーターに表示されたものと比較します。奇妙なデバイスに気付いた場合は、隣人があなたの同意なしにインターネット接続を共有している可能性があります。パスワードを設定してください!
4]誰かがあなたのコンピュータをハッキングしているかどうかを知る/ハッカーを追跡する(Know)
誰かがあなたのコンピュータをハッキングしているかどうかさえ知ることができます。
- netstat -aコマンドを実行すると、コンピューターが接続されているコンピューターのリストが返されます。
- 返された結果には、実行されているデータ送信のタイプ(TCPまたはUDP)の詳細を示すProto列、コンピューターが外部コンピューターに接続されているポートに関する情報を示すローカルアドレス列があります。(Local)これに加えて、接続の状態(接続が実際に確立されているか、送信を待機しているか、「タイムアウト」であるか)に関する情報を提供する「状態」にも気付くでしょう。
- したがって、知らない人が実際にコンピュータに接続しているかどうかを簡単に判断できます。
5]コマンドプロンプトでのコピーアンドペースト
右クリックのコンテキストメニューのオプションを使用する従来の方法ではなく、コピーして貼り付ける新しい方法を探している場合は、これを試してください。
- (Right-click)ウィンドウのコマンドプロンプト(Prompt)タイトルバーを右クリックし、[プロパティ]を選択します
- 次に、 [オプション]テーブルの下の[プロパティ(Properties)]ウィンドウで、[クイック編集モード]オプションを有効にします。それでおしまい!
- ここで、カーソルをその上に移動してテキスト文字列を選択し、「Enter」キーを押して選択したテキストをクリップボード(Clipboard)にコピーし、左クリックしてそこに貼り付ける必要があります。
6]任意(Any Location)の場所からコマンドプロンプトを(Command Prompt)開く(Open)
cd/chdir コマンドを何度も実行して、作業したい正しいディレクトリにたどり着くのは本当に面倒 です。以下に説明するトリックを使用すると、 Windows(Windows)で、表示している任意のフォルダーからコマンドプロンプト(Command Prompt)ウィンドウを開くことができます。これをする:
- Windowsエクスプローラー(Windows Explorer)でフォルダーを開き、Shiftキーを押しながらフォルダーを右クリックします。
- 次に、[ここでコマンドウィンドウを実行(Run command window here’)]を選択 して、CMDプロンプトを開きます。
- オプションをクリックすると、(Click)コマンドプロンプト(Command Prompt)の新しいインスタンスが開始され、適切な場所で待機します。
7]複数のコマンドを実行する
&&で区切ることにより、複数のコマンドを実行できます。ただし、これには1つの条件があります。
- 左方向のコマンドを最初に実行する必要があります
- 正常に完了すると、2番目のコマンドを実行できます。最初のコマンドが失敗した場合、2番目のコマンドは実行されません。
8]フォルダ構造を表示する
次の構文を使用して、フォルダツリー構造を表示します
Tree [drive:][path] [/F] [/A]
9] CMDウィンドウでファイルまたはフォルダをドラッグ(Drag)アンドドロップして、パスを入力します(Drop)
コマンドプロンプトウィンドウに自動入力されたファイルまたはフォルダのフルパスを取得するには、ファイルまたはフォルダをウィンドウにドラッグアンドドロップするだけです。これは、昇格されたCMDウィンドウでは機能しません。
Let us know if you have any other CMD tricks up your sleeve!
これらの投稿もチェックしてください。(You might want to also check out these posts:)
- cmdから昇格したcmdを開く方法
- 隠されたトリックを使用してWindowsでスターウォーズを見る
- Windowsでコマンドプロンプトを使用してTelnetを有効にする方法
- Windowsコマンドプロンプトを使用してFTPサーバーにアクセスする(Access FTP Server using Windows Command Prompt)
- Windows7の全画面コマンドプロンプト
- Windowsコマンドプロンプトに機能と色を追加します。
Advanced Command Prompt or CMD Tricks for Windows 10
If you have been a Wіndows user fоr a long time, I am sure you muѕt have uѕed Command Prompt. Evеn today, the CMD helps in performing many advanced administrative functions, and in trоυbleshooting Windows related issues. We have earlier, already covered some Basic Command Prompt Tips. Today we will see some a-bit-more-advanced CMD tricks for Windows 10/8/7.
Command Prompt or CMD Tricks
1] Copying Error Commands to Clipboard Directly
Many times while performing an operation you get an error. So, you might feel the need for copying and pasting the error to the clipboard before reporting it to the concerned authorities via email or chatting. Well, with this trick you can easily store a command output to a clipboard.
To do this, launch Command Prompt and simply add the command | clip at the end of the command. For e.g. Dir /d | clip.
2] Finding your IP address, DNS Server address, and a lot more
CMD lets you find out your IP address. To do this:
- Type ipconfig /all at the command prompt and press Enter.
- Once done, the command prompt will return you information on IP address and DNS servers along with information on your hostname, node type, primary DNS suffix, etc.
Also, CMD will let you know whether IP Routing, Wins Proxy, and DHCP are enabled or not.
3] Check if anyone is stealing your WiFi connection
One highlight of the command prompt is that it can even let you know if someone is having unauthorized access to your Local Area Connection and using it. To check, follow these steps:
- Open your web browser and visit http://192.168.1.1 or http://192.168.0.1 or the default IP address for your broadband router.
- Search for the tab mentioning ‘Attached Devices’ or something similar.
- Then, find the computer name, IP address, and MAC Address or Physical Address or Hardware Address, of your computer. Use the above trick.
- Next, compare it with those displayed by your router in Step 2. If you notice some strange devices, then there is a possibility that your neighbor is sharing the internet connection without your consent. Set a password!
4] Know if someone is hacking your computer/Trace a Hacker
You can even know if someone is hacking your computer.
- Execute the netstat -a command and it will return you a list of computers that your computer is connected to.
- In the results returned, you will find the Proto column giving details on the type of data transmission taking place (TCP or UDP), Local address column giving information on the port with which your computer is connected to an external computer. In addition to this, you will also notice ‘State’ providing you information on the state of the connection (whether a connection is actually established, or waiting for transmission or is “Timed Out”).
- Thus, it will be easier for you to determine if someone you don’t know is actually connected to your computer or not.
5] Copy-Paste in Command Prompt
If you have been looking for a new method to copy-paste rather than the conventional one of using the option from the right-click context menu, try this!
- Right-click on the command Prompt title bar of the window and chose ‘Properties’
- Then, in the Properties window under the ‘Option’ table enable the ‘Quick Edit Mode’ option. That’s it!
- Now, you just need to select text string/strings by moving the cursor over it, press the ‘Enter’ key to copy the selected texts to Clipboard and do a left-click to paste it there.
6] Open the Command Prompt from Any Location
It can be really annoying to execute the cd/chdir command over and over again to get to the right directory you want to work from. With the trick mentioned below, you could open a Command Prompt window from any folder you’re viewing, in Windows. To do this:
- Open the folder in Windows Explorer and hold the Shift key while making a right-click on the folder.
- Then, select ‘Run command window here’ to open the CMD prompt.
- Click on the option and you’ll begin a new instance of the Command Prompt, ready and waiting at the right location!
7] Run multiple commands
You can run multiple commands by separating them with &&. This, however, is subjected to one condition!
- The command towards the left should be executed first
- Once it completes successfully then the second command can be made to run. If the first command fails, then the second command will not run.
8] Show folder structure
Use the following syntax to show the folder tree structure
Tree [drive:][path] [/F] [/A]
9] Drag and Drop files or folders in CMD window to enter path
To get the full path of the file or folder auto-entered into your command prompt window, simply drag and drop the file or folder into the window. This will not work in an elevated CMD window.
Let us know if you have any other CMD tricks up your sleeve!
You might want to also check out these posts:
- How to open an elevated cmd from a cmd
- Watch Star Wars in Windows using a hidden trick
- How to enable Telnet through Command Prompt in Windows
- Access FTP Server using Windows Command Prompt
- Full-screen command prompt in Windows 7
- Add features & color to Windows Command Prompt.