我试图理解批处理文件中的FOR循环。这段代码:
FOR /F %%V IN ('bcdedit') DO @echo %%V
pause
exit
给出这个输出:
C:\Users\me\Desktop>FOR /F %V IN ('bcdedit') DO @echo %V
The
Access
C:\Users\me\Desktop>pause
Press any key to continue . . .
bcdedit是一个配置启动管理器的程序。 在控制台上运行bcdedit给出:
Windows Boot Manager
--------------------
identifier {bootmgr}
device partition=\Device\HarddiskVolume1
description Windows Boot Manager
locale en-US
inherit {globalsettings}
integrityservices Enable
default {current}
resumeobject {5af9a946-5290-11e3-bd93-d2aed7e9b7a5}
displayorder {current}
toolsdisplayorder {memdiag}
timeout 30
Windows Boot Loader
-------------------
identifier {current}
device partition=C:
path \Windows\system32\winload.exe
description Windows 8.1
locale en-US
inherit {bootloadersettings}
recoverysequence {5af9a948-5290-11e3-bd93-d2aed7e9b7a5}
integrityservices Enable
recoveryenabled Yes
allowedinmemorysettings 0x15000075
osdevice partition=C:
systemroot \Windows
resumeobject {5af9a946-5290-11e3-bd93-d2aed7e9b7a5}
nx OptIn
bootmenupolicy Standard
useplatformclock Yes
“The”和“Access”这两个词来自何处?
答案 0 :(得分:3)
您在没有管理员权限的情况下运行了bcdedit,这会产生以下输出:
The boot configuration data store could not be opened.
Access is denied.
您的输出来自每行的第一个单词。确保您在提升的命令提示符下运行。
答案 1 :(得分:1)
我试试
FOR /F "delims=" %V IN ('bcdedit') DO @echo %V
看整行。
我建议Access
可能是回复中的第一个令牌Access Denied