type(テキスト 結合/追記)
VBA
rem 結合
type *.txt > 結合結果.txt
rem 追記
type 追記元.txt >> 追記先.txt
net use(ネットワークドライブ)
BAT (Batchfile)
rem 変数定義
set Folder=\\1.1.1.1\test
set UserId=TEST\admin
set PW=password
rem Xドライブ割当
net use X: %Folder% /user:%UserId% %PW%
rem Xドライブ切断(/y付与で強制切断)
net use X: /delete /y
net start(サービス 開始/停止)
BAT (Batchfile)
rem サービスを開始
net start サービス名
rem サービスを停止
net stop サービス名
exist(ファイル/フォルダ存在判定)
BAT (Batchfile)
rem ファイル/フォルダが存在する場合
if exist test.txt (
処理
)
rem ファイル/フォルダが存在しない場合
if exist test.txt (
処理
)
move(ファイル移動)
BAT (Batchfile)
rem 変数設定
set filename=C:\test.txt
set BackFolder=C:\
rem ファイル移動
move %filename% %BackFolder%