Estou tentando escrever um script em lote que altere o esquema da janela.
O problema parece que algo dá errado. O script imprime:
Invalid format.
Hint: <paramlist> = <param> [, <paramlist>].
Enquanto corro:
@echo off
set "command=rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:\C:\Windows\Resources\Themes\aero.theme\"
set pid=0
for /f "tokens=2 delims==; " %%a in ('wmic process call create "%command%"^,"%~dp0." ^| find "ProcessId"') do set pid=%%a
echo %pid%
timeout 2
taskkill /pid %pid%
Se eu definir command=notepad.exe
, o script funciona bem. Estou assumindo que estou formatando o parâmetro command
errado, mas não consigo descobrir o que é preciso para tornar isso interpretável.
A execução do seguinte parece funcionar:
> wmic process call create "rundll32.exe %SystemRoot%\shell32.dll"
Executing (Win32_Process)->Create()
Method execution successful.
Out Parameters:
instance of __PARAMETERS
{
ProcessId = 10980;
ReturnValue = 0;
};
mas apenas adicionar Control_RunDLL
como um parâmetro parece causar um problema:
> wmic process call create "rundll32.exe %SystemRoot%\shell32.dll,Control_RunDLL"
Executing (Win32_Process)->Create()
Method execution successful.
Out Parameters:
instance of __PARAMETERS
{
ReturnValue = 9;
};
Tags batch