如何通过 Octopus 部署在 IIS 中创建嵌套虚拟目录?
How can I create a nested virtual directory in IIS through Octopus deploy?
我有一个创建虚拟的 powershell 脚本 directory.However,我想使用 PowerShell 脚本通过 Octopus 部署在 IIS 中创建一个嵌套的虚拟目录。
你能用下面这样的东西吗?
#Create a virtual directory
New-WebVirtualDirectory -Name 'Test' -Site 'Default Web Site\Website1' -PhysicalPath 'C:\inetpub'
#Create a nested virtual directory
New-WebVirtualDirectory -Name 'Test2' -Site 'Default Web Site\Website1\Test' -PhysicalPath 'C:\inetpub'
如果可能,您应该利用该工具并避免编写需要维护的定制 PowerShell,并从 Octopus Deploy Template Library
.
导入经过测试的模板
https://library.octopusdeploy.com/step-template/actiontemplate-iis-virtual-directory-create
我有一个创建虚拟的 powershell 脚本 directory.However,我想使用 PowerShell 脚本通过 Octopus 部署在 IIS 中创建一个嵌套的虚拟目录。
你能用下面这样的东西吗?
#Create a virtual directory
New-WebVirtualDirectory -Name 'Test' -Site 'Default Web Site\Website1' -PhysicalPath 'C:\inetpub'
#Create a nested virtual directory
New-WebVirtualDirectory -Name 'Test2' -Site 'Default Web Site\Website1\Test' -PhysicalPath 'C:\inetpub'
如果可能,您应该利用该工具并避免编写需要维护的定制 PowerShell,并从 Octopus Deploy Template Library
.
https://library.octopusdeploy.com/step-template/actiontemplate-iis-virtual-directory-create