English 中文(简体)
3. 管理发展 在恢复档案时如何改变目的地网站的物理途径
原标题:MSDeploy How to change Physical path of the destination website when restoring an archive
  • 时间:2011-03-23 15:55:07
  •  标签:
  • msdeploy

我创建了一个网站名称“测试”档案,其物理地点C:在2003年使用国际数据系统6.0窗口服务器上估算

 msdeploy.exe -verb:sync -source:metakey="test" -dest:archivedir=c:	estbackup

然后,我利用以下指挥系统,恢复2003年目的地服务器IIS 6.0窗户服务器上的档案,并希望该台能够点到C的物理地点:估计 目的地服务器上线

 msdeploy.exe -verb:sync -source:archivedir=c:	estbackup -dest:metakey="testOnDest",computername="destserver",username="...",password="..." -setParam:kind=DestinationVirtualDirectory,scope="testOnDest",value="C:	estOnDest"

然而,在指挥之后,现场测试 病虫害的产生,但其目录的物理途径是C:而不是C:

请注意,我是在一个网站上浏览并非虚拟或应用的网站。

任何想法对上述指挥有什么错误?

问题回答

我陷入了同一个问题,试图恢复使用key子产生的后遗症,无法找到答案。 它还改变了IP地址和东道名称,恢复了这一地址,可能还有我不想改变的其他情况。 我确实发现,这种工作是利用取代“Metakey”的“ContentPath”交换来创造和恢复支持。 这推动了档案,创建了虚拟名录,但并没有改变基址的配置。 它还请你具体说明你希望部署该网站的夹。

这是一种微薄的精力,但似乎在发挥作用。 如果你找到办法利用梅塔基公司开展工作,我很想知道你是如何这样做的。

您“检测”和“检测结果”是否对国际调查局的路径进行了核实? 我可以告诉你,我有多少次被遗忘在克隆IIS站点改变道路。

可通过<代码>PowerShell对站点的物理途径进行修改。

Import-Module WebAdministration
Set-ItemProperty IIS:Sites<site-name> -name PhysicalPath -value "C:wwwroot<new-path>"




相关问题
How can I get TFS2010 to run MSDEPLOY for me through MSBUILD?

There is an excellent PDC talk available here from Vishal Joshi which describes the new MSDEPLOY features in Visual Studio 2010 - as well as how to deploy an application within TFS. (There s also a ...

MSBuild target package not found

I want to package my VS2010 web application project ready for deployment with msdeploy. On development machine I can do this using: MSBuild.exe "C:path oWebApp.csproj" /target:package But on my ...

_CopyWebApplication with web.config transformations

I am trying to have my web application automatically Publish when a Release build is performed. I m doing this using the _CopyWebApplication target. I added the following to my .csproj file: <!--...

Opinions on MSDeploy

You know, the next "big" and "enterprisey" thing from Microsoft. Is it just me, or is it really hardly for humans? Main highlights are (IMO): Absolutely cryptic syntax (-skip:objectName=filePath,...

热门标签