我正在尝试使用批处理脚本安装exe。这是完美安装exe的命令:
C:\downloads\python-3.6.5-amd64.exe /silent /norestart
我真正想要的是在安装后创建的python36文件夹应该在特定目录中创建,例如
"C:\Program Files"
我尝试过
set pythonInstallDir= "C:\Program Files"
C:\Users\eyds\Downloads\python-3.6.5-amd64.exe /silent /norestart TargetDir=%pythonInstallDir%
它不起作用。该文件夹仍存储在默认位置。我该如何实现?
答案 0 :(得分:1)