如何让此批处理文件读取所有物理和映射驱动器?它适用于C:但不会读取任何其他驱动器。
@echo off
set filePath=
for /R c:\ /d %%a in (*) do if exist "%%a\FileName" set filePath=%%a& goto continue
:continue
if defined filePath echo %COMPUTERNAME% %username% yes >> \\server\%computername%.txt
'接受它是合法的!
—
RookieTEC9
.bat
批处理文件,或者它可以是.ps
PowerShell文件? (您将Windows 7列为操作系统,Powershell是Windows 7的标准配置。就像cmd.exe
关于类固醇)