bat,windows

Thumbnail of post image 005

画像認識で使っているファイル名をずらしたかったので作りました

バッチファイル

リネームを開始する番号を指定してください

リネームするコマンドをコメントにしてテストしてから使ってください

10以上あるフ ...

bat,windows

Thumbnail of post image 010

バッチファイル@echo offSETLOCAL enabledelayedexpansioncopy NUL .\\output.txtrem 1から100までの数字を増減しながらループfor/L %%i in (1, 1, 100) d ...

bat,PowerShell ,windows

Thumbnail of post image 196

Vbスクリプトを使用せずパワーシェルで行う方法です

ファイルダイアログFOR/F "usebackq" %%a IN (`powershell -command "Add-Type -assembl ...

bat,PowerShell ,windows

Thumbnail of post image 096

コードFOR/F "usebackq" %%a IN (`powershell -command " $contents = (Get-Content ./c_up_parab.txt ); return $c ...

bat,G'MIC,windows,画像

Thumbnail of post image 091

Windows でコマンドラインで命令を入れるとうまく解釈してくれず思い通りの動きをしてくれません

コマンドラインを確認する方法とうまく解釈してくれたコマンドを示します

-debug

うまくいかなかった例です。余 ...

bat,PowerShell ,windows

Thumbnail of post image 058

choiceコマンドを使って条件分岐でコマンドを実行できますが毎回の答えは大変です

バッチファイル

何かキーボードをしたらコマンドプロント 時間切れだとノートパッドを起動します

::powershell -Execut ...

bat,PowerShell ,windows

Thumbnail of post image 136

通常では bomがついて 出力されてしまいます

バージョンの確認$PSVersionTable新しいバージョンのパワーシェルPowerShellをインストール

Releases · PowerShell/PowerShell ...

bat,PowerShell ,windows

Thumbnail of post image 100

バッチファイルpowershell -command "(Get-Content .\hello.txt) | %%{ $_ -replace 'hello','konbanwa'} | set-c ...

bat,PowerShell ,windows

Thumbnail of post image 182

バッチファイルpowershell -command "Get-Content output1.txt -Head 2 | Out-Host"powershell -command "Get-Content o ...

bat,PowerShell ,windows

Thumbnail of post image 071

バッチファイルpowershell -command "$i=1;$inputF ='output1.txt';$baseName = ::GetFileNameWithoutExtension($inputF); ...