2011-01-20 17 views
1

バッチファイルを使用してハードウェア構成をキャプチャするにはどうすればよいですか?バッチファイルを使用してWindowsのハードウェア構成をキャプチャするにはどうすればよいですか?

また、ハードウェア構成情報が格納されているレジストリの場所を知りたい場合。

誰でも手助けできますか?あなたはsysteminfoコマンドを実行し、出力をファイルにリダイレクトすることができます

+0

"ハードウェア構成"より具体的なものはありますか?正確に何をログに記録しますか? –

+0

私は確信していますが、私はhttp://superuser.comがより良い場所になると思います。 –

+0

ストレージの変更、N/Wカードの変更などのハードウェアの変更をキャプチャしたい。 私はタイムベースでこれらの情報をキャプチャし、古い情報と比較することでこれを行うと思います。 –

答えて

4

systeminfo > %computername%-systeminfo.txt. 

systeminfoは、リモートシステム上で実行することができ、あなたが使用できるいくつかの異なる出力形式があります

SYSTEMINFO [/S system [/U username [/P [password]]]] [/FO format] [/NH] 

Description: 
    This command line tool enables an administrator to query for basic 
    system configuration information. 

Parameter List: 
    /S  system   Specifies the remote system to connect to. 

    /U  [domain\]user Specifies the user context under which 
          the command should execute. 

    /P  [password]  Specifies the password for the given 
          user context. Prompts for input if omitted. 

    /FO  format   Specifies the format in which the output 
          is to be displayed. 
          Valid values: "TABLE", "LIST", "CSV". 

    /NH      Specifies that the "Column Header" should 
          not be displayed in the output. 
          Valid only for "TABLE" and "CSV" formats. 

    /?      Displays this help/usage. 

Examples: 
    SYSTEMINFO 
    SYSTEMINFO /? 
    SYSTEMINFO /S system 
    SYSTEMINFO /S system /U user 
    SYSTEMINFO /S system /U domain\user /P password /FO TABLE 
    SYSTEMINFO /S system /FO LIST 
    SYSTEMINFO /S system /FO CSV /NH 
関連する問題