用 for…in…do命令将200个目录的共享取消的命令为()

7 查阅

用 for…in…do命令将200个目录的共享取消的命令为()

A.for /l %%a in(1,200)do net share d:\ws\w%%a /del

B.for /l %%a in(1,1,200)do net share d:\ws\w%%a

C.for /l %%a in(1,1,200)do net share d:\ws\w%%a /del

D.for /l %%a in(1,200)do net share d:\ws\w%%a /del

参考答案:

答案:for /l %%a in(1,1,200)do net share d:\ws\w%%a /del