« エクセル VBA ピポットテーブルを作成 | Main | 不用品全国無料回収 パソコンファーム »

Apr 19, 2009

WinXP ユーザープロファイル コピー バッチ

WindowsXPにおいて、ユーザープロファイルをコピーするバッチです。
基本"xcopy"にオプションをつけているだけなのですが、
/EXCLUDE オプションをつけると、コピー除外ファイルリストを設定できます。

--P-copy.bat
@echo off

REN set copy log file
set logfile=d:\profile_copy_log_%1.txt

REN Profile xcopy : exclusion list is excludelist.txt
xcopy "C:\Documents and Settings\%1" "D:\Profile\%1.A5008" /EXCLUDE:excludelist.txt /s /e /h /c /y /r >> %logfile%
----

--excludelist.txt
$~
~$
~WRL
.tmp
.temp
NTUSER.DAT
ntuser.dat.LOG
\Local Settings\Temp\
\Local Settings\Temporary Internet Files\
----

使用方法はコマンドプロンプトを起動して、
> cd P-back.batのあるフォルダ
> P-copy.bat USER_NAME

--参考ページ
http://www.atmarkit.co.jp/fwin2k/win2ktips/446xcopy/xcopy.html


  ブログランキング

|

« エクセル VBA ピポットテーブルを作成 | Main | 不用品全国無料回収 パソコンファーム »

Windows」カテゴリの記事

コマンド」カテゴリの記事

Script」カテゴリの記事

Comments

The comments to this entry are closed.

TrackBack


Listed below are links to weblogs that reference WinXP ユーザープロファイル コピー バッチ:

« エクセル VBA ピポットテーブルを作成 | Main | 不用品全国無料回収 パソコンファーム »