简体   繁体   中英

msdeploy delete ASP.NET Temporary files

I am using msdeploy to delete web sites using this command

msdeploy -verb:delete -dest:apphostconfig="Default Web Site/FOO",computerName="BAR"

however this does not delete the files under

C:\\Windows\\Microsoft.NET\\Framework64\\v4.0.30319\\Temporary ASP.NET Files\\FOO

Is there an argument for msdeploy to delete these files too? If that is not the case, is there something else I can use in a Power Shell or batch script from a remote computer?

You can use the runCommand MSDeploy provider:

msdeploy.exe -verb:sync -source:runCommand="net start MyService" -dest:auto 

https://technet.microsoft.com/en-us/library/ee619740(v=ws.10).aspx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM