Announcing Web Deploy 3.0 RTW

Web Deploy V3 RTM is now available. Plese follow our release announcement here

 

 

6 Comments

  • Where can we provide bug reports on msdeploy crashing? I love msdeploy, but dearly need runCommand to work more reliably.

  • Where can we provide bug reports on msdeploy crashing? I love msdeploy, but dearly need runCommand to work more reliably.

  • oops, sorry for the double post

  • And the Microsoft response would be???

  • There is strange bug we have noticed on Windows Server 2012 platform.
    Delegation rules cannot be properly installed, because powershell script used for detection of server OS has no knowledge about Server 2012.

    In C:\Program Files\IIS\Microsoft Web Deploy V3\Scripts\AddDelegationRules.ps1
    ---
    ...
    function NotServerOS
    {
    $sku = $((gwmi win32_operatingsystem).OperatingSystemSKU)
    $server_skus = @(7,8,9,10,12,13,14,15,17,18,19,20,21,22,23,24,25)

    return ($server_skus -notcontains $sku)
    }
    ...
    #================= Main Script =================

    if(NotServerOS)
    {
    write-log $SCRIPTERROR $Resources.NotServerOS
    break
    }
    ---

    System has another SKU:
    ---
    PS C:\Users\Administrator> write-host $((gwmi win32_operatingsystem).OperatingSystemSKU)
    79
    ---

    Could you please fix this issue?

  • As per the release document - In Web Deploy v3 RC this port can by changed by specifying the new port in the computername argument using the format computername=serverName:####, tempagent=true (where #### is the port number to use)
    How to change port number while using IIS Manager UI (from Import application option)? I want to use the current website port number in my config file, how to accomplish this task?

Comments have been disabled for this content.