在 Linux 上,使用 winexe 我需要获取注册表项的值。
reg 键的路径包含空格。
我使用这个命令:
/usr/bin/winexe -U domain/user%"password" //host 'REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Antimalware\Signature Updates" /v ScheduleDay'
我尝试使用简单的引号,双引号,两者的混合,但我不断收到密钥无效的消息。
在Windows上我试过这个并且它有效:
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft Antimalware\Signature Updates" /v ScheduleDay
如何使用 winexe 正确处理 bash 中的空格?