04/27: Windows > Sysinternals
Windows管理者必携、Sysinternalsでシステムを把握する - @IT
link.exe/junction.exe Win2K junction creator and reparse point viewerなどは便利
mkdir test_dir
junction test_dir C:\www\original_dir
link.exe/junction.exe Win2K junction creator and reparse point viewerなどは便利
mkdir test_dir
junction test_dir C:\www\original_dir
04/24: Windows: svchost.exeプロセスとは?
@IT:Windows TIPS -- Knowledge:svchost.exeプロセスとは?
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SvcHost
HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SvcHost
04/23: robocopyでフォルダをバックアップ/同期させる
robocopyでフォルダをバックアップ/同期させる - @IT
Windows Server 2003 Resource Kit Tools
ROBOCOPY "C:\Documents and Settings\user\My Documents\My Briefcase" "E:\My Documents\My Briefcase" /E /XO /XJ
ROBOCOPY "C:\work" "E:\My Documents\workspace" /E /XO /XJ /XD ".svn" /XF "*.mpg" /XF "*.wmv"
/E :: copy subdirectories, including Empty ones.
/XO :: eXclude Older files.
/XJ :: eXclude Junction points. (normally included by default).
/XD dirs [dirs]... :: eXclude Directories matching given names/paths.
/XF file [file]... :: eXclude Files matching given names/paths/wildcards.
Windows Server 2003 Resource Kit Tools
ROBOCOPY "C:\Documents and Settings\user\My Documents\My Briefcase" "E:\My Documents\My Briefcase" /E /XO /XJ
ROBOCOPY "C:\work" "E:\My Documents\workspace" /E /XO /XJ /XD ".svn" /XF "*.mpg" /XF "*.wmv"
/E :: copy subdirectories, including Empty ones.
/XO :: eXclude Older files.
/XJ :: eXclude Junction points. (normally included by default).
/XD dirs [dirs]... :: eXclude Directories matching given names/paths.
/XF file [file]... :: eXclude Files matching given names/paths/wildcards.