バッチファイルの中でPowershellスクリプトから値を取得する方法

2024年4月24日

コード

FOR /F "usebackq" %%a IN (`powershell -command " $contents = (Get-Content ./c_up_parab.txt ); return $contents "`) DO @SET contents=%%a
echo %contents%
timeout /t 22

テキストファイルを読んで値を変数に入れる例です

returnの前の処理を変えると他のこともすることが可能です。適宜変更してください

bat,PowerShell ,windows

Posted by eightban