Eu tenho o seguinte loop for dentro do arquivo em lote:
for /l %%x in (1, 1, %k%) do (
set "psCommand=powershell -Command "$pword = read-host 'Enter Password2' -AsSecureString ; $BSTR=[System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($pword) ; [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)""
for /f "usebackq delims=" %%p in (`%psCommand%`) do set password=%%p
)
E sempre recebo o seguinte erro: [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)"" foi inesperado neste momento.
Quando executo o comando fora do loop for, ele funciona.
O que está errado?
Responder1
O problema é que o loop for pensa que o colchete final está dentro do comando powershell.
A solução possível é criar uma função e chamá-la do loop:
for /l %%x in (1, 1, %k%) do (
call :getPassword password
)
:getPassword
set "psCommand=powershell -Command "$pword = read-host 'Enter Password' -AsSecureString ; ^
$BSTR=[System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($pword); ^
[System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR)""
for /f "usebackq delims=" %%p in (`%psCommand%`) do set password=%%p
EXIT /B 0