Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
任何人都可以帮助我处理一个(尽可能简单的)批处理文件,我可以在用户个人资料上释放以搜索 PST 文件。我需要查看找到的任何 PST 文件的位置。
谢谢大家
尽可能简单:)
dir C:\*.pst /s /b
变量 %USERPROFILE% 给出当前登录用户的配置文件目录。您可以使用 DIR 命令以递归方式列出所有 *.PST 文件。最简单的脚本是
ECHO using directory %USERPROFILE% DIR /B /P /S %USERPROFILE%\*.PST
您可以更改 DIR 命令的开关以格式化输出。