当我使用 appcmd.exe 创建网站时,我需要命令中的物理路径地址。运行此地址时如何创建目录:
%systemroot%\system32\inetsrv\AppCmd.exe add site /name:websitename /id:4 /physicalPath:C:\inetpub\wwwroot\example12 /bindings:http/*:80:example.com
在上面的命令中,“example12”目录不存在。我希望在运行命令时,该目录自动创建该地址。
当我使用 appcmd.exe 创建网站时,我需要命令中的物理路径地址。运行此地址时如何创建目录:
%systemroot%\system32\inetsrv\AppCmd.exe add site /name:websitename /id:4 /physicalPath:C:\inetpub\wwwroot\example12 /bindings:http/*:80:example.com
在上面的命令中,“example12”目录不存在。我希望在运行命令时,该目录自动创建该地址。
我从来没有真正使用过
Appcmd.exe
,但它是用于操作 IIS 对象而不是文件系统对象。所以我认为没有办法在使用 AppCmd.exe 时自动创建目录在您的批处理文件中,只需使用:
或者更好地使用 PowerShell cmdlet 而不是
AppCmd.exe