Web sites azure pack

Hi Forum
How can i do for create websites for tenants users from powershell?
Thank you

Windows Azure Pack scripts and PowerShell cmdlets
http://technet.microsoft.com/en-us/library/dn282110.aspx
Install Windows Azure PowerShell updates for Windows Azure Pack – Download and install Windows Azure PowerShell, including updates and support for the Windows Azure Pack. You can also access the Windows
Azure PowerShell project on
GitHub.
# Add your Windows Azure Pack environment to your Microsoft Azure PowerShell installation.
# You will need to know the following information of your Windows Azure Pack environment.
# 1. URL to download the publish settings file    Mandatory
# 2. Management service endpoint                  Optional
# 3. Management Portal URL                        Optional
# 4. Storage service endpoint                     Optional
Add-WAPackEnvironment -Name "MyWAPackEnv"
`
    -PublishSettingsFileUrl "URL to download the publish settings file>"
`
    -ServiceEndpoint "<Management service endpoint>"
`
    -ManagementPortalUrl "<Storage service endpoint>"
`
    -StorageEndpoint "<Management Portal URL>"
# Download a file which contains the publish settings information of your subscription.
# Use the -Environment parameter to target your Windows Azure Pack environment.
# This will open a browser window and ask you to log in to get the file.
Get-WAPackPublishSettingsFile -Environment "MyWAPackEnv"
# Import the file you just downloaded.
# Notice that the file contains credential of your subscription so you don't want to make it public
# (like check in to source control, etc.).
Import-WAPackPublishSettingsFile "<file location>"
# Use the cmdlets to manage your services/applications
New-WAPackWebsite -Name mywebsite

Similar Messages

  • Is this the best design for asynchronous notifications (such as email)? Current design uses Web Site, Azure Service Bus Queue, Table Storage and Cloud Service Worker Role.

    I am asking for feedback on this design. Here is an example user story:
    As a group admin on the website I want to be notified when a user in my group uploads a file to the group.
    Easiest solution would be that in the code handling the upload, we just directly create an email message in there and send it. However, this seems like it isn't really the appropriate level of separation of concerns, so instead we are thinking to have a separate
    worker process which does nothing but send notifications. So, the website in the upload code handles receiving the file, extracting some metadata from it (like filename) and writing this to the database. As soon as it is done handling the file upload it then
    does two things: Writes the details of the notification to be sent (such as subject, filename, etc...) to a dedicated "notification" table and also creates a message in a queue which the notification sending worker process monitors. The entire sequence
    is shown in the diagram below.
    My questions are: Do you see any drawbacks in this design? Is there a better design? The team wants to use Azure Worker Roles, Queues and Table storage. Is it the right call to use these components or is this design unnecessarily complex? Quality attribute
    requirements are that it is easy to code, easy to maintain, easy to debug at runtime, auditable (history is available of when notifications were sent, etc...), monitor-able. Any other quality attributes you think we should be designing for?
    More info:
    We are creating a cloud application (in Azure) in which there are at least 2 components. The first is the "source" component (for example a UI / website) in which some action happens or some condition is met that triggers a second component or "worker"
    to perform some job. These jobs have details or metadata associated with them which we plan to store in Azure Table Storage. Here is the pattern we are considering:
    Steps:
    Condition for job met.
    Source writes job details to table.
    Source puts job in queue.
    Asynchronously:
    Worker accepts job from queue.
    Worker Records DateTimeStarted in table.
    Queue marks job marked as "in progress".
    Worker performs job.
    Worker updates table with details (including DateTimeCompleted).
    Worker reports completion to queue.
    Job deleted from queue.
    Please comment and let me know if I have this right, or if there is some better pattern. For example sake, consider the work to be "sending a notification" such as an email whose template fields are filled from the "details" mentioned in
    the pattern.

    Hi,
    Thanks for your posting.
    This development mode can exclude some errors, such as the file upload complete at the same time... from my experience, this is a good choice to achieve the goal.
    Best Regards,
    Jambor  
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Azure Pack Web Sites tenant site returns: Sorry, we can't complete that request

    Stood up an Azure Pack Web Sites instance but I'm unable to access just the tenant site for some reason.  I can access the config site, admin site, usage site, etc.  I can't get into the tenant site.  I'm getting the following error:
    Sorry, we can't complete that request.  The identity provider configuration is not valid. Try to re-configure trust with an identity provider.
    Anyone know how to fix this?  I uninstalled the tenant and admin auth sites and reinstalled and configured.  No dice.  This worked at some point since I installed it but now is no longer working.  Any help?

    Anyone have an actual fix for this?  My tenant site was working just fine for a while and now, after no changes to the system, I am getting:
    Sorry, we can't complete that request.  The identify provider configuration is not valid.  Try and re-configure trust with an identity provider.
    I've rebooted the azure pack servers and DB box.  No dice.

  • Source control issues with Azure Pack Web Sites

    Struggling to get my Azure Pack Web Sites POC off the ground.  Infrastructure is built and I'm ready to deploy a .NET app.  I can successfully deploy an app from the gallery and tested and it works so we're good there.
    However I'm having an issue with source control and getting an app deployed.  We have a local instance of Github enterprise here we use for all code repositories.  Can I use this?  In my tenant site I have created a new web site and added
    an external repository for source control.  I put in the HTTP link to my local github enterprise repo and it tries for a minute and returns the following error:
    Command 'git.exe fetch external ...' aborted due to no output and CPU activity for 60 seconds. You may increase SCM_COMMAND_IDLE_TIMEOUT setting to solve the issue.
    git.exe fetch external --progress
    There's nowhere I can specify credentials or SSH keys so azure pack can communicate with my repo (i'm assume this is the issue).  I can't put company custom code out on codeplex or public github so that's out.  Am I trying to do something that
    isn't possible in Azure Pack? 

    I guess I'm confused.  When I go into my web site and click the Setup deployment from source control, under the External repository option it says both Git and Mercurial repositories are supported.  This is a different button than the GitHub option
    for source code.  So what's the point of that option is you can't actually use a git repo?  

  • Deploying Azure Web Site and Custom Domain Name

    I'm new to Azure and not at all familiar with the various methods of publishing to Azure via Git, etc. I belong to the old school of plain old IIS folder structures and uploading HTML files to Inetpub directory for deploying web contents.
    I have created an Azure web site at
    http://mysite.azurewebsites.net and have added a CNAME record on our DNS server to redirect traffic from www.mydomain.com to mysite.azurewebsites.net but to no avail. I have downloaded and installed the Azure
    PowerShell but can't seem to do anything with it. Any advice on how to configure the custom domain name for my azure web site as well as how to deploy contents to it, preferrably the old school way, would be much appreciated.
    Thanks!

    Hi,
    Azure web site support several development stacks, such as .net, node.js, php, python, and different stack has different deploy process, see more at:
    http://www.windowsazure.com/en-us/documentation/services/web-sites/
    refer to
    http://www.windowsazure.com/en-us/documentation/articles/web-sites-custom-domain-name/ for more information about how to configure the custom domain.
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cannot access web site hosted on Azure VM

    I have created Windows Server 2012R2 VM and after creating VM I have installed IIS and hosted my site and found it is working fine inside the VM.
    Then I have added HTTP end point to my VM from azure portal. After creating http end point I cannot access my web site using MyHostName.cloudapp.net.
    Can you help me why http end point is not working?
    Then I have crated VM with template and there I have defined HTTP endpoint before creating VM.
    Finally I found that if I create end point before creating VM then it works fine and if I create endpoint after creating VM then it doesn’t work.
    Can you kindly help me to solve this issue (so that end point works properly after creating VM)?
    Hasibul Haque,MCC2011,MCPD hasibulhaque.com

    Hi,
    You can check the port you bind for the website in IIS and make sure you have created endpoint with the correct port. You can also install Telnet client on your local computer and run "telnet xxx.cloudapp.net public_port_in_endpoint" at the command
    prompt to see it works.
    Have you enable SSL on the website hosted on Azure VM? If yes, please also create an endpoint with port 443 and open that port in Windows Firewall on the VM.
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Following web-sites-nodejs-store-data-mongodb tutorial get azure.err when execute site create

    I encountered azure.err message when executing site create while following tutorial from following URL
    http://azure.microsoft.com/zh-tw/documentation/articles/web-sites-nodejs-store-data-mongodb/
    execution stop at executing git init within powershell
    Sat Sep 13 2014 02:25:59 GMT+0800 (台北標準時間):
    { [Error: Command failed: 'git' ���O�����Υ~���R�O�B�i���檺�{���Χ妸�ɡC
      stack: [Getter/Setter],
      killed: false,
      code: 1,
      signal: null,
      __frame: 
       { name: 'LinkedRevisionControlClient_prototype_initGitOnCurrentDirectory__3',
         line: 119,
         file: 'C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI\\lib\\util\\git\\linkedrevisioncontrol.js',
         prev: 
          { name: 'GitClient_prototype_init__6',
            line: 204,
            file: 'C:\\Program Files (x86)\\Microsoft SDKs\\Azure\\CLI\\lib\\util\\git\\linkedrevisioncontrol.js',
            prev: [Object],
            active: false,
            offset: 2,
            col: 2 },
         active: false,
         offset: 4,
         col: 4 },
      rawStack: [Getter] }
    Error: Command failed: 'git' ���O�����Υ~���R�O�B�i���檺�{���Χ妸�ɡC
        at ChildProcess.exithandler (child_process.js:637:15)
        at ChildProcess.EventEmitter.emit (events.js:98:17)
        at maybeClose (child_process.js:735:16)
        at Process.ChildProcess._handle.onexit (child_process.js:802:5)
        at LinkedRevisionControlClient_prototype_initGitOnCurrentDirectory__3 (C:\Program Files (x86)\Microsoft SDKs\Azure\CLI\lib\util\git\linkedrevisioncontrol.js:123:4)
        at GitClient_prototype_init__6 (C:\Program Files (x86)\Microsoft SDKs\Azure\CLI\lib\util\git\linkedrevisioncontrol.js:206:2)
        at __4 (C:\Program Files (x86)\Microsoft SDKs\Azure\CLI\lib\commands\asm\site.js:267:12)
    If I use cygwin, git init works within the same directory.
    Please help 

    Hi Derickc,
    Thanks for your posting!
    Did you use administrator permission to start powershell?  And I am not sure your Git and powershell installed well, so I suggest you could refer to this blog (http://jdhnet.wordpress.com/2014/01/10/a-better-git-commandline-by-integrating-git-with-powershell/
    ) and this
    article.
    By the way, It seems that this issue is related to Azure VM. You could post this issue into VM forum like Tough_V reference.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error installing windows azure pack; websites v2

    When installing windows azure pack: websites v2 gives the error.  All dependencies are installed successfully on windows 2012 R2. Other windows azure pack express  installed successfully in another machine.  when I try install WAP websites
    v2 on another windows 2012 R2 gives the error.  The log file follows:
    === Verbose logging started: 1/2/2014  2:05:55  Build type: SHIP UNICODE 5.00.9600.00  Calling process: C:\Windows\system32\inetsrv\InetMgr.exe ===
    MSI (c) (34:94) [02:05:55:521]: Resetting cached policy values
    MSI (c) (34:94) [02:05:55:521]: Machine policy value 'Debug' is 0
    MSI (c) (34:94) [02:05:55:521]: ******* RunEngine:
               ******* Product: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\WebSitesFeed.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (c) (34:94) [02:05:55:521]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (34:94) [02:05:55:521]: Grabbed execution mutex.
    MSI (c) (34:94) [02:05:56:099]: Cloaking enabled.
    MSI (c) (34:94) [02:05:56:099]: Attempting to enable all disabled privileges before calling Install on Server
    MSI (c) (34:94) [02:05:56:115]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (A4:24) [02:05:56:271]: Running installation inside multi-package transaction C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\WebSitesFeed.msi
    MSI (s) (A4:24) [02:05:56:271]: Grabbed execution mutex.
    MSI (s) (A4:64) [02:05:56:302]: Resetting cached policy values
    MSI (s) (A4:64) [02:05:56:302]: Machine policy value 'Debug' is 0
    MSI (s) (A4:64) [02:05:56:302]: ******* RunEngine:
               ******* Product: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\WebSitesFeed.msi
               ******* Action:
               ******* CommandLine: **********
    MSI (s) (A4:64) [02:05:56:412]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (A4:64) [02:05:56:505]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038
    MSI (s) (A4:64) [02:05:56:599]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (A4:64) [02:05:56:662]: MSCOREE not loaded loading copy from system32
    MSI (s) (A4:64) [02:05:58:005]: End dialog not enabled
    MSI (s) (A4:64) [02:05:58:021]: Original package ==> C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\WebSitesFeed.msi
    MSI (s) (A4:64) [02:05:58:021]: Package we're running from ==> C:\Windows\Installer\fd7dc.msi
    MSI (s) (A4:64) [02:05:58:021]: APPCOMPAT: Uninstall Flags override found.
    MSI (s) (A4:64) [02:05:58:021]: APPCOMPAT: Uninstall VersionNT override found.
    MSI (s) (A4:64) [02:05:58:021]: APPCOMPAT: Uninstall ServicePackLevel override found.
    MSI (s) (A4:64) [02:05:58:130]: APPCOMPAT: looking for appcompat database entry with ProductCode '{7DE9D988-C892-43A6-884B-74A5008D6018}'.
    MSI (s) (A4:64) [02:05:58:177]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (A4:64) [02:05:58:849]: Machine policy value 'DisablePatch' is 0
    MSI (s) (A4:64) [02:05:58:849]: Machine policy value 'AllowLockdownPatch' is 0
    MSI (s) (A4:64) [02:05:58:849]: Machine policy value 'DisableLUAPatching' is 0
    MSI (s) (A4:64) [02:05:58:849]: Machine policy value 'DisableFlyWeightPatching' is 0
    MSI (s) (A4:64) [02:05:58:880]: APPCOMPAT: looking for appcompat database entry with ProductCode '{7DE9D988-C892-43A6-884B-74A5008D6018}'.
    MSI (s) (A4:64) [02:05:58:880]: APPCOMPAT: no matching ProductCode found in database.
    MSI (s) (A4:64) [02:05:58:880]: Transforms are not secure.
    MSI (s) (A4:64) [02:05:58:880]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\logs\install\2014-01-02T02.05.44\WebSitesFeed.txt'.
    MSI (s) (A4:64) [02:05:58:880]: Command Line: WEBSITES_FEED=http://go.microsoft.com/?linkid=9837345 FEED_HASH=826363D220C6EF0D8DBF36FA63172A339D16C268 FEED_FILE_NAME=WebSites0.9.0.xml WEBSITES_UPGRADE_ACTIONS=None ACTION=INSTALL REBOOT=ReallySuppress CURRENTDIRECTORY=C:\Windows\system32
    CLIENTUILEVEL=3 MSICLIENTUSESEXTERNALUI=1 CLIENTPROCESSID=2868
    MSI (s) (A4:64) [02:05:58:880]: PROPERTY CHANGE: Adding PackageCode property. Its value is '{F8DA307E-FEA1-4E30-8764-A09F1C1B8271}'.
    MSI (s) (A4:64) [02:05:58:880]: Product Code passed to Engine.Initialize:           '{7DE9D988-C892-43A6-884B-74A5008D6018}'
    MSI (s) (A4:64) [02:05:58:880]: Product Code from property table before transforms: '{7DE9D988-C892-43A6-884B-74A5008D6018}'
    MSI (s) (A4:64) [02:05:58:880]: Product Code from property table after transforms:  '{7DE9D988-C892-43A6-884B-74A5008D6018}'
    MSI (s) (A4:64) [02:05:58:880]: Product registered: entering maintenance mode
    MSI (s) (A4:64) [02:05:58:880]: Determined that existing product (either this product or the product being upgraded with a patch) is installed per-machine.
    MSI (s) (A4:64) [02:05:58:880]: PROPERTY CHANGE: Modifying ALLUSERS property. Its current value is '2'. Its new value: '1'.
    MSI (s) (A4:64) [02:05:58:880]: Product {7DE9D988-C892-43A6-884B-74A5008D6018} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (A4:64) [02:05:58:880]: Product {7DE9D988-C892-43A6-884B-74A5008D6018} is managed.
    MSI (s) (A4:64) [02:05:58:880]: MSI_LUA: Credential prompt not required, user is an admin
    MSI (s) (A4:64) [02:05:58:880]: PROPERTY CHANGE: Adding ProductState property. Its value is '5'.
    MSI (s) (A4:64) [02:05:58:880]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is '1'.
    MSI (s) (A4:64) [02:05:58:896]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer 3: 2
    MSI (s) (A4:64) [02:05:58:896]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (A4:64) [02:05:58:896]: Specifed source is already in a list.
    MSI (s) (A4:64) [02:05:58:896]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (A4:64) [02:05:58:896]: Machine policy value 'DisableBrowse' is 0
    MSI (s) (A4:64) [02:05:58:896]: Machine policy value 'AllowLockdownBrowse' is 0
    MSI (s) (A4:64) [02:05:58:896]: Adding new sources is allowed.
    MSI (s) (A4:64) [02:05:58:896]: Package name retrieved from configuration data: 'WebSitesFeed.msi'
    MSI (s) (A4:64) [02:05:58:896]: Note: 1: 2205 2:  3: Error
    MSI (s) (A4:64) [02:05:58:912]: Note: 1: 2262 2: AdminProperties 3: -2147287038
    MSI (s) (A4:64) [02:05:58:912]: Machine policy value 'DisableMsi' is 1
    MSI (s) (A4:64) [02:05:58:912]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (A4:64) [02:05:58:912]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (A4:64) [02:05:58:912]: Product {7DE9D988-C892-43A6-884B-74A5008D6018} is admin assigned: LocalSystem owns the publish key.
    MSI (s) (A4:64) [02:05:58:912]: Product {7DE9D988-C892-43A6-884B-74A5008D6018} is managed.
    MSI (s) (A4:64) [02:05:58:912]: Running product '{7DE9D988-C892-43A6-884B-74A5008D6018}' with elevated privileges: Product is assigned.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding WEBSITES_FEED property. Its value is 'http://go.microsoft.com/?linkid=9837345'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding FEED_HASH property. Its value is '826363D220C6EF0D8DBF36FA63172A339D16C268'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding FEED_FILE_NAME property. Its value is 'WebSites0.9.0.xml'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Modifying WEBSITES_UPGRADE_ACTIONS property. Its current value is 'CreateOrUpdateFeed'. Its new value: 'None'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding ACTION property. Its value is 'INSTALL'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding REBOOT property. Its value is 'ReallySuppress'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is 'C:\Windows\system32'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is '3'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding MSICLIENTUSESEXTERNALUI property. Its value is '1'.
    MSI (s) (A4:64) [02:05:58:912]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is '2868'.
    MSI (s) (A4:64) [02:05:58:912]: Machine policy value 'DisableAutomaticApplicationShutdown' is 0
    MSI (s) (A4:64) [02:05:59:084]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is '511fc0c519f6f7459d8de9cdea06010a'.
    MSI (s) (A4:64) [02:05:59:084]: RESTART MANAGER: Session opened.
    MSI (s) (A4:64) [02:05:59:084]: TRANSFORMS property is now:
    MSI (s) (A4:64) [02:05:59:084]: PROPERTY CHANGE: Adding PRODUCTLANGUAGE property. Its value is '1033'.
    MSI (s) (A4:64) [02:05:59:084]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is '300'.
    MSI (s) (A4:64) [02:05:59:084]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming
    MSI (s) (A4:64) [02:05:59:084]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\Favorites
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Network Shortcuts
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\Documents
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Printer Shortcuts
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Recent
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\SendTo
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Templates
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\ProgramData
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Local
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\Pictures
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu\Programs
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Start Menu
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Public\Desktop
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Administrative Tools
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu
    MSI (s) (A4:64) [02:05:59:099]: SHELL32::SHGetFolderPath returned: C:\Users\Administrator\Desktop
    MSI (s) (A4:64) [02:05:59:115]: SHELL32::SHGetFolderPath returned: C:\ProgramData\Microsoft\Windows\Templates
    MSI (s) (A4:64) [02:05:59:115]: SHELL32::SHGetFolderPath returned: C:\Windows\Fonts
    MSI (s) (A4:64) [02:05:59:115]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16
    MSI (s) (A4:64) [02:05:59:115]: MSI_LUA: Setting AdminUser property to 1 because the product is already installed managed and per-machine
    MSI (s) (A4:64) [02:05:59:115]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.
    MSI (s) (A4:64) [02:05:59:115]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is '1'.
    MSI (s) (A4:64) [02:05:59:115]: PROPERTY CHANGE: Adding Privileged property. Its value is '1'.
    MSI (s) (A4:64) [02:05:59:115]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (A4:64) [02:05:59:115]: PROPERTY CHANGE: Adding USERNAME property. Its value is 'Windows User'.
    MSI (s) (A4:64) [02:05:59:115]: Note: 1: 1402 2: HKEY_CURRENT_USER\Software\Microsoft\MS Setup (ACME)\User Info 3: 2
    MSI (s) (A4:64) [02:05:59:115]: PROPERTY CHANGE: Adding Installed property. Its value is '00:00:00'.
    MSI (s) (A4:64) [02:05:59:115]: PROPERTY CHANGE: Adding DATABASE property. Its value is 'C:\Windows\Installer\fd7dc.msi'.
    MSI (s) (A4:64) [02:05:59:115]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\WebSitesFeed.msi'.
    MSI (s) (A4:64) [02:05:59:115]: Machine policy value 'MsiDisableEmbeddedUI' is 0
    MSI (s) (A4:64) [02:05:59:115]: EEUI - Disabling MsiEmbeddedUI due to existing external or embedded UI
    MSI (s) (A4:64) [02:05:59:115]: EEUI - Disabling MsiEmbeddedUI for service because it's not a quiet/basic install
    MSI (s) (A4:64) [02:05:59:115]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (A4:64) [02:05:59:115]: Machine policy value 'DisableRollback' is 0
    MSI (s) (A4:64) [02:05:59:115]: User policy value 'DisableRollback' is 0
    MSI (s) (A4:64) [02:05:59:115]: PROPERTY CHANGE: Adding UILevel property. Its value is '2'.
    === Logging started: 1/2/2014  2:05:59 ===
    MSI (s) (A4:64) [02:05:59:115]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038
    MSI (s) (A4:64) [02:05:59:146]: APPCOMPAT: [DetectVersionLaunchCondition] Launch condition already passes.
    MSI (s) (A4:64) [02:05:59:146]: Doing action: INSTALL
    Action start 2:05:59: INSTALL.
    MSI (s) (A4:64) [02:05:59:177]: Running ExecuteSequence
    MSI (s) (A4:64) [02:05:59:177]: Doing action: AppSearch
    Action start 2:05:59: AppSearch.
    MSI (s) (A4:64) [02:05:59:177]: PROPERTY CHANGE: Adding IISINSTALLPATH property. Its value is 'C:\Windows\system32\inetsrv'.
    MSI (s) (A4:64) [02:05:59:177]: PROPERTY CHANGE: Adding IISMAJORVERSION property. Its value is '#8'.
    MSI (s) (A4:64) [02:05:59:177]: PROPERTY CHANGE: Adding IISMINORVERSION property. Its value is '#5'.
    MSI (s) (A4:64) [02:05:59:177]: PROPERTY CHANGE: Adding IISCOREWEBENGINEINSTALLED property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:177]: PROPERTY CHANGE: Adding IISW3SVCINSTALLED property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:177]: PROPERTY CHANGE: Adding IISMANAGEMENTCONSOLEINSTALLED property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding IISNETFXEXTENSIBILITYINSTALLED property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding IISASPNET property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:193]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\IISADMIN 3: 2
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding IISREMOTECHANNELINSTALLED property. Its value is 'Microsoft.Web.Management.Remoting.HttpChannel, Microsoft.Web.Management.Remoting, Version=7.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding NETFRAMEWORK20 property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding NETFRAMEWORK20_SP_LEVEL property. Its value is '#2'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding NETFRAMEWORK35_SP_LEVEL property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding POWERSHELLINSTALLED property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding WINDOWSUPDATE_START_TYPE property. Its value is '#3'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding WINDOWSEDITION property. Its value is 'ServerDatacenter'.
    MSI (s) (A4:64) [02:05:59:193]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WebPlatformInstaller\3 3: 2
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding WEBPI4INSTALLED property. Its value is '#1'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding SAVED_WEBSITES_FEED property. Its value is 'http://go.microsoft.com/?linkid=9837345'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding SAVED_FEED_HASH property. Its value is '826363D220C6EF0D8DBF36FA63172A339D16C268'.
    MSI (s) (A4:64) [02:05:59:193]: PROPERTY CHANGE: Adding SAVED_FEED_FILE_NAME property. Its value is 'WebSites0.9.0.xml'.
    MSI (s) (A4:64) [02:05:59:209]: PROPERTY CHANGE: Adding WEBPICMD property. Its value is 'C:\Program Files\Microsoft\Web Platform Installer\webpicmd.exe'.
    MSI (s) (A4:64) [02:05:59:209]: Doing action: FindRelatedProducts
    Action ended 2:05:59: AppSearch. Return value 1.
    MSI (s) (A4:64) [02:05:59:209]: Skipping FindRelatedProducts action: not run in maintenance mode
    Action start 2:05:59: FindRelatedProducts.
    MSI (s) (A4:64) [02:05:59:209]: Doing action: LaunchConditions
    Action ended 2:05:59: FindRelatedProducts. Return value 0.
    Action start 2:05:59: LaunchConditions.
    MSI (s) (A4:64) [02:05:59:209]: Doing action: SetFEED_FILE_NAME
    Action ended 2:05:59: LaunchConditions. Return value 1.
    Action start 2:05:59: SetFEED_FILE_NAME.
    MSI (s) (A4:64) [02:05:59:209]: Doing action: SetFEED_HASH
    Action ended 2:05:59: SetFEED_FILE_NAME. Return value 1.
    Action start 2:05:59: SetFEED_HASH.
    MSI (s) (A4:64) [02:05:59:209]: Doing action: SetWEBSITES_FEED
    Action ended 2:05:59: SetFEED_HASH. Return value 1.
    Action start 2:05:59: SetWEBSITES_FEED.
    MSI (s) (A4:64) [02:05:59:209]: Doing action: ValidateProductID
    Action ended 2:05:59: SetWEBSITES_FEED. Return value 1.
    Action start 2:05:59: ValidateProductID.
    MSI (s) (A4:64) [02:05:59:209]: Doing action: CostInitialize
    Action ended 2:05:59: ValidateProductID. Return value 1.
    MSI (s) (A4:64) [02:05:59:209]: Machine policy value 'MaxPatchCacheSize' is 10
    MSI (s) (A4:64) [02:05:59:224]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is 'C:\'.
    MSI (s) (A4:64) [02:05:59:224]: PROPERTY CHANGE: Adding CostingComplete property. Its value is '0'.
    MSI (s) (A4:64) [02:05:59:224]: Note: 1: 2205 2:  3: Patch
    MSI (s) (A4:64) [02:05:59:224]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (A4:64) [02:05:59:224]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (A4:64) [02:05:59:224]: Note: 1: 2205 2:  3: __MsiPatchFileList
    MSI (s) (A4:64) [02:05:59:224]: Note: 1: 2205 2:  3: PatchPackage
    MSI (s) (A4:64) [02:05:59:224]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId` 
    MSI (s) (A4:64) [02:05:59:224]: Note: 1: 2205 2:  3: Patch
    Action start 2:05:59: CostInitialize.
    MSI (s) (A4:64) [02:05:59:224]: Doing action: FileCost
    Action ended 2:05:59: CostInitialize. Return value 1.
    MSI (s) (A4:64) [02:05:59:240]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (A4:64) [02:05:59:240]: Note: 1: 2205 2:  3: Class
    MSI (s) (A4:64) [02:05:59:240]: Note: 1: 2205 2:  3: Extension
    MSI (s) (A4:64) [02:05:59:240]: Note: 1: 2205 2:  3: TypeLib
    Action start 2:05:59: FileCost.
    MSI (s) (A4:64) [02:05:59:240]: Doing action: CostFinalize
    Action ended 2:05:59: FileCost. Return value 1.
    MSI (s) (A4:64) [02:05:59:240]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is '0'.
    MSI (s) (A4:64) [02:05:59:240]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is '0'.
    MSI (s) (A4:64) [02:05:59:240]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is '0'.
    MSI (s) (A4:64) [02:05:59:240]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is '0'.
    MSI (s) (A4:64) [02:05:59:240]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is '0'.
    MSI (s) (A4:64) [02:05:59:240]: Note: 1: 2205 2:  3: MsiAssembly
    MSI (s) (A4:64) [02:05:59:240]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_`
    = `Component`.`Component` AND `MsiAssembly`.`Component_` = ?
    MSI (s) (A4:64) [02:05:59:240]: PROPERTY CHANGE: Adding DIR_WebSitesFeed property. Its value is 'C:\Program Files\IIS\Microsoft Web Sites\Feed'.
    MSI (s) (A4:64) [02:05:59:255]: Note: 1: 2205 2:  3: Patch
    MSI (s) (A4:64) [02:05:59:255]: Note: 1: 2205 2:  3: Condition
    MSI (s) (A4:64) [02:05:59:255]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is 'C:\'.
    MSI (s) (A4:64) [02:05:59:255]: PROPERTY CHANGE: Adding DIR_IIS property. Its value is 'C:\Program Files\IIS\'.
    MSI (s) (A4:64) [02:05:59:255]: PROPERTY CHANGE: Adding DIR_WebSites property. Its value is 'C:\Program Files\IIS\Microsoft Web Sites\'.
    MSI (s) (A4:64) [02:05:59:255]: PROPERTY CHANGE: Modifying DIR_WebSitesFeed property. Its current value is 'C:\Program Files\IIS\Microsoft Web Sites\Feed'. Its new value: 'C:\Program Files\IIS\Microsoft Web Sites\Feed\'.
    MSI (s) (A4:64) [02:05:59:255]: Target path resolution complete. Dumping Directory table...
    MSI (s) (A4:64) [02:05:59:255]: Note: target paths subject to change (via custom actions or browsing)
    MSI (s) (A4:64) [02:05:59:255]: Dir (target): Key: TARGETDIR , Object: C:\
    MSI (s) (A4:64) [02:05:59:255]: Dir (target): Key: WindowsFolder , Object: C:\Windows\
    MSI (s) (A4:64) [02:05:59:255]: Dir (target): Key: ProgramFiles64Folder , Object: C:\Program Files\
    MSI (s) (A4:64) [02:05:59:255]: Dir (target): Key: DIR_IIS , Object: C:\Program Files\IIS\
    MSI (s) (A4:64) [02:05:59:255]: Dir (target): Key: DIR_WebSites , Object: C:\Program Files\IIS\Microsoft Web Sites\
    MSI (s) (A4:64) [02:05:59:255]: Dir (target): Key: DIR_WebSitesFeed , Object: C:\Program Files\IIS\Microsoft Web Sites\Feed\
    MSI (s) (A4:64) [02:05:59:255]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is '1'.
    Action start 2:05:59: CostFinalize.
    MSI (s) (A4:64) [02:05:59:255]: Doing action: MigrateFeatureStates
    Action ended 2:05:59: CostFinalize. Return value 1.
    MSI (s) (A4:64) [02:05:59:255]: Skipping MigrateFeatureStates action: not run in maintenance mode
    Action start 2:05:59: MigrateFeatureStates.
    MSI (s) (A4:64) [02:05:59:255]: Doing action: InstallValidate
    Action ended 2:05:59: MigrateFeatureStates. Return value 0.
    MSI (s) (A4:64) [02:05:59:255]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is '511fc0c519f6f7459d8de9cdea06010a'.
    MSI (s) (A4:64) [02:05:59:271]: Feature: CommonFeature; Installed: Local;   Request: Null;   Action: Null
    MSI (s) (A4:64) [02:05:59:271]: Component: C_DiscoverabilityKey; Installed: Local;   Request: Null;   Action: Null
    MSI (s) (A4:64) [02:05:59:271]: Component: C_WebSitesSetupHelper.ps1; Installed: Local;   Request: Null;   Action: Null
    MSI (s) (A4:64) [02:05:59:271]: Component: C_WebSitesSetupHelperWrapper.ps1; Installed: Local;   Request: Null;   Action: Null
    MSI (s) (A4:64) [02:05:59:271]: Component: __C_DiscoverabilityKey65; Installed: Null;   Request: Null;   Action: Null
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Extension
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Font
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Class
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Icon
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: TypeLib
    Action start 2:05:59: InstallValidate.
    MSI (s) (A4:64) [02:05:59:271]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is '0'. Its new value: '1'.
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: BindImage
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: ProgId
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: PublishComponent
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: SelfReg
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Extension
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Font
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Shortcut
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Class
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: Icon
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: TypeLib
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2727 2: 
    MSI (s) (A4:64) [02:05:59:271]: Note: 1: 2205 2:  3: FilesInUse
    MSI (s) (A4:64) [02:05:59:287]: Note: 1: 2727 2: 
    MSI (s) (A4:64) [02:05:59:287]: Doing action: InstallInitialize
    Action ended 2:05:59: InstallValidate. Return value 1.
    MSI (s) (A4:64) [02:05:59:287]: Machine policy value 'AlwaysInstallElevated' is 0
    MSI (s) (A4:64) [02:05:59:287]: User policy value 'AlwaysInstallElevated' is 0
    MSI (s) (A4:64) [02:05:59:287]: BeginTransaction: Locking Server
    MSI (s) (A4:64) [02:05:59:302]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038
    MSI (s) (A4:64) [02:05:59:302]: SRSetRestorePoint skipped for this transaction.
    MSI (s) (A4:64) [02:05:59:302]: Note: 1: 2203 2: C:\Windows\Installer\inprogressinstallinfo.ipi 3: -2147287038
    MSI (s) (A4:64) [02:05:59:302]: Server not locked: locking for product {7DE9D988-C892-43A6-884B-74A5008D6018}
    Action start 2:05:59: InstallInitialize.
    MSI (s) (A4:64) [02:05:59:552]: Doing action: RemoveExistingProducts
    Action ended 2:05:59: InstallInitialize. Return value 1.
    MSI (s) (A4:64) [02:05:59:552]: Skipping RemoveExistingProducts action: current configuration is maintenance mode or an uninstall
    Action start 2:05:59: RemoveExistingProducts.
    MSI (s) (A4:64) [02:05:59:552]: Doing action: ProcessComponents
    Action ended 2:05:59: RemoveExistingProducts. Return value 0.
    Action start 2:05:59: ProcessComponents.
    MSI (s) (A4:64) [02:05:59:552]: Doing action: UnpublishFeatures
    Action ended 2:05:59: ProcessComponents. Return value 1.
    Action start 2:05:59: UnpublishFeatures.
    MSI (s) (A4:64) [02:05:59:552]: Doing action: RemoveRegistryValues
    Action ended 2:05:59: UnpublishFeatures. Return value 1.
    Action start 2:05:59: RemoveRegistryValues.
    MSI (s) (A4:64) [02:05:59:552]: Doing action: RemoveFiles
    Action ended 2:05:59: RemoveRegistryValues. Return value 1.
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2205 2:  3: RemoveFile
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2205 2:  3: RemoveFile
    Action start 2:05:59: RemoveFiles.
    MSI (s) (A4:64) [02:05:59:552]: Doing action: InstallFiles
    Action ended 2:05:59: RemoveFiles. Return value 0.
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2205 2:  3: Patch
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence`
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2205 2:  3: Error
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1302
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2205 2:  3: MsiSFCBypass
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ?
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2205 2:  3: MsiPatchHeaders
    MSI (s) (A4:64) [02:05:59:552]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ?
    Action start 2:05:59: InstallFiles.
    MSI (s) (A4:64) [02:05:59:568]: Skipping action: CA_SET_PROPERTY_UPDATE_OFFLINE_FEED (condition is false)
    MSI (s) (A4:64) [02:05:59:568]: Skipping action: CA_UPDATE_OFFLINE_FEED (condition is false)
    MSI (s) (A4:64) [02:05:59:568]: Doing action: WriteRegistryValues
    Action ended 2:05:59: InstallFiles. Return value 1.
    Action start 2:05:59: WriteRegistryValues.
    MSI (s) (A4:64) [02:05:59:584]: Doing action: RegisterUser
    Action ended 2:05:59: WriteRegistryValues. Return value 1.
    Action start 2:05:59: RegisterUser.
    MSI (s) (A4:64) [02:05:59:584]: Doing action: RegisterProduct
    Action ended 2:05:59: RegisterUser. Return value 0.
    Action start 2:05:59: RegisterProduct.
    MSI (s) (A4:64) [02:05:59:599]: Doing action: PublishFeatures
    Action ended 2:05:59: RegisterProduct. Return value 1.
    Action start 2:05:59: PublishFeatures.
    MSI (s) (A4:64) [02:05:59:599]: Doing action: PublishProduct
    Action ended 2:05:59: PublishFeatures. Return value 1.
    Action start 2:05:59: PublishProduct.
    MSI (s) (A4:64) [02:05:59:599]: Resolving source.
    MSI (s) (A4:64) [02:05:59:599]: Resolving source to launched-from source.
    MSI (s) (A4:64) [02:05:59:599]: Setting launched-from source as last-used.
    MSI (s) (A4:64) [02:05:59:599]: PROPERTY CHANGE: Adding SourceDir property. Its value is 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\'.
    MSI (s) (A4:64) [02:05:59:599]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is 'C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\'.
    MSI (s) (A4:64) [02:05:59:599]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is '{7DE9D988-C892-43A6-884B-74A5008D6018}'.
    MSI (s) (A4:64) [02:05:59:599]: SOURCEDIR ==> C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\
    MSI (s) (A4:64) [02:05:59:599]: SOURCEDIR product ==> {7DE9D988-C892-43A6-884B-74A5008D6018}
    MSI (s) (A4:64) [02:05:59:599]: Determining source type
    MSI (s) (A4:64) [02:05:59:599]: Source type from package 'WebSitesFeed.msi': 2
    MSI (s) (A4:64) [02:05:59:599]: Source path resolution complete. Dumping Directory table...
    MSI (s) (A4:64) [02:05:59:599]: Dir (source): Key: TARGETDIR , Object: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\ , LongSubPath:
     , ShortSubPath:
    MSI (s) (A4:64) [02:05:59:599]: Dir (source): Key: WindowsFolder , Object: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\ , LongSubPath:
     , ShortSubPath:
    MSI (s) (A4:64) [02:05:59:599]: Dir (source): Key: ProgramFiles64Folder , Object: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\ ,
    LongSubPath: x64\ , ShortSubPath:
    MSI (s) (A4:64) [02:05:59:599]: Dir (source): Key: DIR_IIS , Object: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\ , LongSubPath:
    x64\IIS\ , ShortSubPath:
    MSI (s) (A4:64) [02:05:59:599]: Dir (source): Key: DIR_WebSites , Object: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\ , LongSubPath:
    x64\IIS\Microsoft Web Sites\ , ShortSubPath: x64\IIS\f-y7bkar\
    MSI (s) (A4:64) [02:05:59:615]: Dir (source): Key: DIR_WebSitesFeed , Object: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\ , LongSubPath:
    x64\IIS\Microsoft Web Sites\Feed\ , ShortSubPath: x64\IIS\f-y7bkar\Feed\
    MSI (s) (A4:64) [02:05:59:615]: Doing action: InstallFinalize
    Action ended 2:05:59: PublishProduct. Return value 1.
    MSI (s) (A4:64) [02:05:59:630]: Running Script: C:\Windows\Installer\MSI963B.tmp
    MSI (s) (A4:64) [02:05:59:630]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is '1'.
    MSI (s) (A4:64) [02:05:59:662]: Note: 1: 2265 2:  3: -2147287035
    MSI (s) (A4:64) [02:05:59:662]: Machine policy value 'DisableRollback' is 0
    MSI (s) (A4:64) [02:05:59:677]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (A4:64) [02:05:59:677]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=1143083200,LangId=1033,Platform=589824,ScriptType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)
    Action start 2:05:59: InstallFinalize.
    MSI (s) (A4:64) [02:05:59:677]: Executing op: ProductInfo(ProductKey={7DE9D988-C892-43A6-884B-74A5008D6018},ProductName=Web Sites Local Feed,PackageName=WebSitesFeed.msi,Language=1033,Version=117778466,Assignment=1,ObsoleteArg=0,,,PackageCode={F8DA307E-FEA1-4E30-8764-A09F1C1B8271},,,InstanceType=0,LUASetting=0,RemoteURTInstalls=0,ProductDeploymentFlags=3)
    MSI (s) (A4:64) [02:05:59:677]: Executing op: DialogInfo(Type=0,Argument=1033)
    MSI (s) (A4:64) [02:05:59:677]: Executing op: DialogInfo(Type=1,Argument=Web Sites Local Feed)
    MSI (s) (A4:64) [02:05:59:677]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])
    MSI (s) (A4:64) [02:05:59:693]: Executing op: SetBaseline(Baseline=0,)
    MSI (s) (A4:64) [02:05:59:693]: Executing op: SetBaseline(Baseline=1,)
    MSI (s) (A4:64) [02:05:59:693]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])
    MSI (s) (A4:64) [02:05:59:693]: Executing op: UpdateEstimatedSize(EstimatedSize=0)
    MSI (s) (A4:64) [02:05:59:709]: Executing op: ProductCPDisplayInfoRegister()
    MSI (s) (A4:64) [02:05:59:724]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,)
    MSI (s) (A4:64) [02:05:59:724]: Executing op: CleanupConfigData()
    MSI (s) (A4:64) [02:05:59:724]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0)
    MSI (s) (A4:64) [02:05:59:724]: Executing op: SourceListRegisterLastUsed(SourceProduct={7DE9D988-C892-43A6-884B-74A5008D6018},LastUsedSource=C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\)
    MSI (s) (A4:64) [02:05:59:724]: Entering CMsiConfigurationManager::SetLastUsedSource.
    MSI (s) (A4:64) [02:05:59:724]: Specifed source is already in a list.
    MSI (s) (A4:64) [02:05:59:724]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (A4:64) [02:05:59:724]: Adding new sources is allowed.
    MSI (s) (A4:64) [02:05:59:724]: Set LastUsedSource to: C:\Users\Administrator\AppData\Local\Microsoft\Web Platform Installer\installers\HostingPrimaryControllerBootstrapper_v2\8679DB5B824AE838ACFF0353D295F7353D721621\.
    MSI (s) (A4:64) [02:05:59:724]: Set LastUsedType to: n.
    MSI (s) (A4:64) [02:05:59:724]: Set LastUsedIndex to: 1.
    MSI (s) (A4:64) [02:05:59:724]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=0)
    MSI (s) (A4:64) [02:05:59:771]: Note: 1: 2265 2:  3: -2147287035
    MSI (s) (A4:64) [02:05:59:771]: User policy value 'DisableRollback' is 0
    MSI (s) (A4:64) [02:05:59:771]: Machine policy value 'DisableRollback' is 0
    MSI (s) (A4:64) [02:05:59:802]: Note: 1: 2265 2:  3: -2147287035
    MSI (s) (A4:64) [02:05:59:865]: Note: 1: 2318 2: 
    MSI (s) (A4:64) [02:05:59:865]: No System Restore sequence number for this installation.
    MSI (s) (A4:64) [02:05:59:865]: Unlocking Server
    MSI (s) (A4:64) [02:05:59:974]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is '1'.
    Action ended 2:05:59: InstallFinalize. Return value 1.
    Action ended 2:05:59: INSTALL. Return value 1.
    MSI (s) (A4:64) [02:05:59:974]: Note: 1: 1728
    MSI (s) (A4:64) [02:05:59:974]: Note: 1: 2205 2:  3: Error
    MSI (s) (A4:64) [02:05:59:974]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1728
    MSI (s) (A4:64) [02:05:59:974]: Note: 1: 2205 2:  3: Error
    MSI (s) (A4:64) [02:05:59:974]: Note: 1: 2228 2:  3: Error 4: SELECT `Message` FROM `Error` WHERE `Error` = 1709
    MSI (s) (A4:64) [02:05:59:974]: Product: Web Sites Local Feed -- Configuration completed successfully.
    MSI (s) (A4:64) [02:05:59:974]: Windows Installer reconfigured the product. Product Name: Web Sites Local Feed. Product Version: 7.5.10274.0. Product Language: 1033. Manufacturer: Microsoft Corporation. Reconfiguration success or error status: 0.
    MSI (s) (A4:64) [02:06:00:084]: Deferring clean up of packages/files, if any exist
    MSI (s) (A4:64) [02:06:00:084]: MainEngineThread is returning 0
    MSI (s) (A4:24) [02:06:00:084]: RESTART MANAGER: Session closed.
    MSI (s) (A4:24) [02:06:00:084]: No System Restore sequence number for this installation.
    === Logging stopped: 1/2/2014  2:05:59 ===
    MSI (s) (A4:24) [02:06:00:084]: User policy value 'DisableRollback' is 0
    MSI (s) (A4:24) [02:06:00:084]: Machine policy value 'DisableRollback' is 0
    MSI (s) (A4:24) [02:06:00:084]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (A4:24) [02:06:00:084]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (A4:24) [02:06:00:099]: Note: 1: 2265 2:  3: -2147287035
    MSI (s) (A4:24) [02:06:00:099]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Installer\Rollback\Scripts 3: 2
    MSI (s) (A4:24) [02:06:00:099]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (34:94) [02:06:00:099]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (34:94) [02:06:00:099]: MainEngineThread is returning 0
    === Verbose logging stopped: 1/2/2014  2:06:00 ===
    Please help me to sort out this problem.

    Please check in the log files from the following path: %ProgramFiles%\IIS\Microsoft Web Sites\Logs
    HostingPrimaryControllerBootstrapper_v2 entry from the feed will execute a couple of powershell scripts after installing WebsitesFeed.msi. The output of this commands are saved in the Logs folder.

  • Upgrading Windows Azure Pack Websites from Update 4 to Update 6 SQL Schema Update Issues

    I'm running into this nasty bug with Windows Azure Pack Websites v2 Update 6 when I monitor the Microsoft\Windows\WebSitesUpdate Event Log:
    The upgrade action 'UpgradeDatabase' has failed. Error: Microsoft.Web.Hosting.WebHostingException: An error occurred executing script 'C:\Program Files\IIS\Microsoft Web Sites\Scripts\Update\0031.sql'. ---> Microsoft.Web.Hosting.WebHostingException: An error occurred executing script 'C:\Program Files\IIS\Microsoft Web Sites\Scripts\Update\0031.sql'. ---> Microsoft.SqlServer.Management.Common.ExecutionFailureException: An exception occurred while executing a Transact-SQL statement or batch. ---> System.Data.SqlClient.SqlException: Online index operations can only be performed in Enterprise edition of SQL Server.
    at Microsoft.SqlServer.Management.Common.ConnectionManager.ExecuteTSql(ExecuteTSqlAction action, Object execObject, DataSet fillDataSet, Boolean catchException)
    at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteNonQuery(String sqlCommand, ExecutionTypes executionType)
    --- End of inner exception stack trace ---
    at Microsoft.SqlServer.Management.Common.ServerConnection.ExecuteNonQuery(String sqlCommand, ExecutionTypes executionType)
    at Microsoft.Web.Hosting.RetryPolicy.ExecuteAction[R](Func`1 action, SqlExceptionMapper mapper)
    --- End of inner exception stack trace ---
    at Microsoft.Web.Hosting.RetryPolicy.ExecuteAction[R](Func`1 action, SqlExceptionMapper mapper)
    at Microsoft.Web.Hosting.SqlHelper.ExecuteScript(Server server, String scriptName, String sqlContent)
    --- End of inner exception stack trace ---
    at Microsoft.Web.Hosting.SqlHelper.ExecuteScript(Server server, String scriptName, String sqlContent)
    at Microsoft.Web.Hosting.Common.DatabaseUpdate.PerformTransactionalAction(Server server)
    at Microsoft.Web.Hosting.Common.DatabaseManager.PerformActions(Server server, IEnumerable`1 actions)
    at Microsoft.Web.Hosting.Common.DatabaseManager.ExecuteUpgradeActions(List`1 updateActions)
    at Microsoft.Web.Hosting.Common.DatabaseManager.UpgradeDatabase(InstallationResourcePaths paths)
    at Microsoft.Web.Hosting.UpgradeManager.UpgradeDatabaseInPlace()
    at Microsoft.Web.Hosting.Utilities.DatabaseUpdater.UpgradeHostingDatabase()
    at Microsoft.Web.Hosting.Utilities.DatabaseUpdater.DoHostingUpgradeWithLease()
    at Microsoft.Web.Hosting.Setup.Tasks.UpdateTasks.UpgradeDatabase(String scriptsLocation)
    at Microsoft.Web.Hosting.UpdateService.UpdateManager.DoWork(Object unused)
    It seems like the SQL script used to upgrade from Update 4 to Update 6 used a SQL Server Enterprise edition only feature and it's causing the update to fail on the controller. Is there an ETA from MSFT to resolve this issue?
    All posted advice may not be all that accurate. As always, test it in a lab before you try my advice! Best of all, the documentation is your friend.

    Hi,
    This is indeed an issue with the current bits for Windows Azure Pack WebSites Update 6. Thanks for reporting it, and apologies for the inconvenience.
    Can you please send email to the address kranthim at <our-company-name>.com? We will help you fix your deployment, while we fix the issue and update the public bits.
    Thanks,
    Kranthi.

  • Windows Azure Pack

    I am getting error in installation of Windows Azure Pack 
    please see the error given below 
    Web Sites service (Installed )
    Management Server (Web Sites REST API)
    500 Internal Server Error - Failed to configure databases and services: Timeout waiting for server ot type Management.
     File Server
    500 Internal Server Error - Failed to configure databases and services: Timeout waiting for server ot type FileServer.
    Date: 09-06-2014 00:40:55, Level: Verbose, Server HOSTING, Message: Machine 'hosting.satyam.nsdns.in' has the ownership of the controller.
    Date: 09-06-2014 00:40:56, Level: Info, Server HOSTING, Message: Running operation 'AddWebFarm'
    Date: 09-06-2014 00:40:57, Level: Info, Server satyam.nsdns.in, Message: Running operation 'AddServer'
    Date: 09-06-2014 00:40:57, Level: Info, Server HOSTING, Message: Running operation 'AddWebFarm'
    Date: 09-06-2014 00:40:57, Level: Info, Server satyam.nsdns.in, Message: Running operation 'FileServerQueryState (7.7.10699.8)'
    Date: 09-06-2014 00:40:57, Level: Info, Server HOSTING, Message: Running operation 'ManagementServerAddWebFarm (7.7.10699.8)'
    Date: 09-06-2014 00:40:57, Level: Info, Server satyam.nsdns.in, Message: Running operation 'CheckCloudId (7.7.10699.8)'
    Date: 09-06-2014 00:40:57, Level: Warning, Server HOSTING, Message: Web farm 'ManagementServers' has no load balancing integration configured or it is not in the correct format.
    Date: 09-06-2014 00:40:57, Level: Info, Server hosting.satyam.nsdns.in, Message: Running operation 'AddServer'
    Date: 09-06-2014 00:40:57, Level: Info, Server HOSTING, Message: Running operation 'AddWebFarm'
    Date: 09-06-2014 00:40:57, Level: Info, Server HOSTING, Message: Running operation 'ManagementServerAddServer (7.7.10699.8)' {Server=Microsoft.Web.Farm.ServerContext}
    Date: 09-06-2014 00:40:57, Level: Info, Server HOSTING, Message: Running operation 'PublisherAddWebFarm (7.7.10699.8)'
    Date: 09-06-2014 00:40:57, Level: Warning, Server HOSTING, Message: Web farm 'PublisherServers' has no load balancing integration configured or it is not in the correct format.
    Date: 09-06-2014 00:40:57, Level: Warning, Server HOSTING, Message: Web farm 'ManagementServers' has no load balancing integration configured or it is not in the correct format.
    Date: 09-06-2014 00:40:58, Level: Info, Server HOSTING, Message: Running operation 'AddWebFarm'
    Date: 09-06-2014 00:40:58, Level: Info, Server hosting.satyam.nsdns.in, Message: Running operation 'ManagementServerQueryState (7.7.10699.8)'
    Date: 09-06-2014 00:40:58, Level: Info, Server HOSTING, Message: Running operation 'FrontEndAddWebFarm (7.7.10699.8)'
    Date: 09-06-2014 00:40:58, Level: Warning, Server HOSTING, Message: Web farm 'FrontEndServers' has no load balancing integration configured or it is not in the correct format.
    Date: 09-06-2014 00:40:58, Level: Info, Server HOSTING, Message: Running operation 'AddWebFarm'
    Date: 09-06-2014 00:40:58, Level: Info, Server hosting.satyam.nsdns.in, Message: Running operation 'CheckCloudId (7.7.10699.8)'
    Date: 09-06-2014 00:40:59, Level: Error, Server hosting.satyam.nsdns.in, Message: Failed to run operation 'CheckCloudId (7.7.10699.8)'. Operation failed to complete. Server hosting.satyam.nsdns.in does not belong to web farm ManagementServers with cloud
    ID 5F50A1B3-171A-42E2-BCBA-62C324C79707, therefore no further operation will be performed.
    Date: 09-06-2014 00:40:59, Level: Error, Server satyam.nsdns.in, Message: Failed to run operation 'CheckCloudId (7.7.10699.8)'. Operation failed to complete. Server satyam.nsdns.in does not belong to web farm FileServers with cloud ID 5F50A1B3-171A-42E2-BCBA-62C324C79707,
    therefore no further operation will be performed.
    Date: 09-06-2014 00:41:00, Level: Error, Server hosting.satyam.nsdns.in, Message: Failed to run operation 'AddServer'. Operation failed to complete. Server hosting.satyam.nsdns.in does not belong to web farm ManagementServers with cloud ID 5F50A1B3-171A-42E2-BCBA-62C324C79707,
    therefore no further operation will be performed.
    Date: 09-06-2014 00:41:00, Level: Error, Server satyam.nsdns.in, Message: Failed to run operation 'AddServer'. Operation failed to complete. Server satyam.nsdns.in does not belong to web farm FileServers with cloud ID 5F50A1B3-171A-42E2-BCBA-62C324C79707,
    therefore no further operation will be performed.

    I have same error:
    status Management Server (Web Sites REST API)
    500 Internal Server Error - Failed to configure databases and services: Value cannot be null. Parameter name: value
    • status File Server
    500 Internal Server Error - Failed to configure databases and services: Value cannot be null. Parameter name: value
    Configuration events:
    •Date: 6/12/2014 3:51:38 PM, Level: Verbose, Server U1-SITES-CN1, Message: Machine 'u1-sites-cn1.my.fqdn' has the ownership of the controller.
    •Date: 6/12/2014 3:51:38 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'AddWebFarm'
    •Date: 6/12/2014 3:51:38 PM, Level: Info, Server u1-sites-fs1.my.fqdn, Message: Running operation 'AddServer'
    •Date: 6/12/2014 3:51:38 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'AddWebFarm'
    •Date: 6/12/2014 3:51:38 PM, Level: Info, Server u1-sites-fs1.my.fqdn, Message: Running operation 'FileServerQueryState (7.7.10699.8)'
    •Date: 6/12/2014 3:51:38 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'ManagementServerAddWebFarm (7.7.10699.8)'
    •Date: 6/12/2014 3:51:38 PM, Level: Warning, Server U1-SITES-CN1, Message: Web farm 'ManagementServers' has no load balancing integration configured or it is not in the correct format.
    •Date: 6/12/2014 3:51:38 PM, Level: Info, Server u1-sites-mn1.my.fqdn, Message: Running operation 'AddServer'
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'AddWebFarm'
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'ManagementServerAddServer (7.7.10699.8)' {Server=Microsoft.Web.Farm.ServerContext}
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'PublisherAddWebFarm (7.7.10699.8)'
    •Date: 6/12/2014 3:51:39 PM, Level: Warning, Server U1-SITES-CN1, Message: Web farm 'PublisherServers' has no load balancing integration configured or it is not in the correct format.
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'AddWebFarm'
    •Date: 6/12/2014 3:51:39 PM, Level: Warning, Server U1-SITES-CN1, Message: Web farm 'ManagementServers' has no load balancing integration configured or it is not in the correct format.
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'FrontEndAddWebFarm (7.7.10699.8)'
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server u1-sites-fs1.my.fqdn, Message: Running operation 'CheckCloudId (7.7.10699.8)'
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server u1-sites-mn1.my.fqdn, Message: Running operation 'ManagementServerQueryState (7.7.10699.8)'
    •Date: 6/12/2014 3:51:39 PM, Level: Warning, Server U1-SITES-CN1, Message: Web farm 'FrontEndServers' has no load balancing integration configured or it is not in the correct format.
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server U1-SITES-CN1, Message: Running operation 'AddWebFarm'
    •Date: 6/12/2014 3:51:39 PM, Level: Info, Server u1-sites-mn1.my.fqdn, Message: Running operation 'CheckCloudId (7.7.10699.8)'
    •Date: 6/12/2014 3:51:39 PM, Level: Error, Server u1-sites-mn1.my.fqdn, Message: Failed to run operation 'CheckCloudId (7.7.10699.8)'. Operation failed to complete. Server u1-sites-mn1.my.fqdn does not belong to web farm ManagementServers with cloud ID CE870136-AEDA-4787-883A-AFF24B99EC98, therefore no further operation will be performed.
    •Date: 6/12/2014 3:51:39 PM, Level: Error, Server u1-sites-mn1.my.fqdn, Message: Failed to run operation 'AddServer'. Operation failed to complete. Server u1-sites-mn1.my.fqdn does not belong to web farm ManagementServers with cloud ID CE870136-AEDA-4787-883A-AFF24B99EC98, therefore no further operation will be performed.
    •Date: 6/12/2014 3:51:39 PM, Level: Error, Server u1-sites-fs1.my.fqdn, Message: Failed to run operation 'CheckCloudId (7.7.10699.8)'. Operation failed to complete. Server u1-sites-fs1.my.fqdn does not belong to web farm FileServers with cloud ID BF8AAF68-9447-41E3-9B23-7B46D1F6BF0C, therefore no further operation will be performed.
    •Date: 6/12/2014 3:51:39 PM, Level: Error, Server u1-sites-fs1.my.fqdn, Message: Failed to run operation 'AddServer'. Operation failed to complete. Server u1-sites-fs1.my.fqdn does not belong to web farm FileServers with cloud ID BF8AAF68-9447-41E3-9B23-7B46D1F6BF0C, therefore no further operation will be performed.
    I have tried use WebPi 4.6 (http://social.msdn.microsoft.com/Forums/windowsazure/en-US/a2af8c20-7994-4fe5-92a6-b80e595c674e/are-fsrm-binaries-really-required-for-wap-web-sites-v2-worker-roles?forum=windowsazurepack) but got same error.
    With Powershell a I have non-informative errors:
    PS C:\Windows\system32> New-WebSitesServer -Name u1-sites-mn1 -ServerType ManagementServer
    New-WebSitesServer : Value cannot be null.
    Parameter name: value
    At line:1 char:1
    + New-WebSitesServer -Name u1-sites-mn1 -ServerType ManagementServer
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (:) [New-WebSitesServer], ArgumentNullException
    + FullyQualifiedErrorId : System.ArgumentNullException,Microsoft.Web.Hosting.PowerShell.NewServerCommand

  • Windows Azure Pack setup - 500 Internal Server Error - failed to configure databases and services

    Hi,
    I am trying to setup the Windows Azure pack to use the site to configure the Service bus 1.1 installation. When I try to configure the Windows Azure Pack I get the following error:
    Admin Authentication Site
    500 Internal Server Error - Failed to configure databases and services: Object reference not set to an instance of an object.
    I'm not sure where the logs are to see what is causing this error. I have tried running as admin, running as a different user with no luck.
    thanks,
    Georgi
    Georgi

    Here's what I'm getting for this error:
    Log Name:      Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite/Operational
    Source:        Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite
    Date:          3/27/2014 12:52:03 PM
    Event ID:      103
    Task Category: (65431)
    Level:         Error
    Keywords:      None
    User:          CLINICALSYSTEMS\Administrator
    Computer:      SERVER-PC.clinicalsystems.com
    Description:
    ##### Application_Error: Exception=System.Web.HttpException (0x80004005): Failed to configure databases and services: Object reference not set to an instance of an object. ---> System.Management.Automation.CmdletInvocationException: Object reference not
    set to an instance of an object. ---> System.NullReferenceException: Object reference not set to an instance of an object.
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.AddUserToGroup(GroupPrincipal group, UserPrincipal user)
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureDefaultTrusts()
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureClaimSecurity(Hashtable settings)
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureCore(Hashtable settings)
       at Microsoft.WindowsAzure.Config.PowerShell.Configurer.FeatureConfigurer.Configure(Hashtable settings)
       at Microsoft.WindowsAzure.Server.PowerShell.Common.BaseCmdlet.ProcessRecord()
       at System.Management.Automation.CommandProcessor.ProcessRecord()
       --- End of inner exception stack trace ---
       at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable input)
       at Microsoft.MgmtSvc.Config.Controllers.PowerShell.PSClient.RunCommand(Command command)
       at Microsoft.MgmtSvc.Config.Controllers.PowerShell.ConfigurationPSClient.InitializeFeature(String name, Hashtable settings)
       at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.<>c__DisplayClass3.<ConfigureFeature>b__0()
       at System.Threading.Tasks.Task`1.InnerInvoke()
       at System.Threading.Tasks.Task.Execute()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.<ConfigureFeature>d__5.MoveNext()
       at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.<ConfigureFeature>d__5.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at lambda_method(Closure , Task )
       at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3f.<BeginInvokeAsynchronousActionMethod>b__3e(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<>c__DisplayClass39.<BeginInvokeActionMethodWithFilters>b__33()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<BeginInvokeActionMethodWithFilters>b__36(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<>c__DisplayClass2a.<BeginInvokeAction>b__20()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<BeginInvokeAction>b__22(IAsyncResult asyncResult)
       at System.Web.Mvc.Controller.<>c__DisplayClass1d.<BeginExecuteCore>b__18(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
       at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
       at System.Web.Mvc.MvcHandler.<>c__DisplayClass8.<BeginProcessRequest>b__3(IAsyncResult asyncResult)
       at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass4.<MakeVoidDelegate>b__3(IAsyncResult ar)
       at System.Web.HttpApplication.CallHandlerExecutionStep.OnAsyncHandlerCompletion(IAsyncResult ar).
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
    <System>
    <Provider Name="Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite" Guid="{1F742CC8-BDAA-56B6-A4B8-49F946D19CD1}" />
    <EventID>103</EventID>
    <Version>0</Version>
    <Level>2</Level>
    <Task>65431</Task>
    <Opcode>0</Opcode>
    <Keywords>0x0</Keywords>
    <TimeCreated SystemTime="2014-03-27T16:52:03.223741300Z" />
    <EventRecordID>111</EventRecordID>
    <Correlation />
    <Execution ProcessID="8068" ThreadID="7680" />
    <Channel>Microsoft-WindowsAzurePack-MgmtSvc-ConfigSite/Operational</Channel>
    <Computer>SERVER-PC.clinicalsystems.com</Computer>
    <Security UserID="S-1-5-21-3021050346-1670805799-1320812125-500" />
    </System>
    <EventData>
    <Data Name="exceptionInfo">System.Web.HttpException (0x80004005): Failed to configure databases and services: Object reference not set to an instance of an object. ---&gt; System.Management.Automation.CmdletInvocationException: Object reference not set to an instance of an object. ---&gt; System.NullReferenceException: Object reference not set to an instance of an object.
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.AddUserToGroup(GroupPrincipal group, UserPrincipal user)
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureDefaultTrusts()
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureClaimSecurity(Hashtable settings)
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.CustomTokenServiceConfigurer.ConfigureCore(Hashtable settings)
    at Microsoft.WindowsAzure.Config.PowerShell.Configurer.FeatureConfigurer.Configure(Hashtable settings)
    at Microsoft.WindowsAzure.Server.PowerShell.Common.BaseCmdlet.ProcessRecord()
    at System.Management.Automation.CommandProcessor.ProcessRecord()
    --- End of inner exception stack trace ---
    at System.Management.Automation.Runspaces.PipelineBase.Invoke(IEnumerable input)
    at Microsoft.MgmtSvc.Config.Controllers.PowerShell.PSClient.RunCommand(Command command)
    at Microsoft.MgmtSvc.Config.Controllers.PowerShell.ConfigurationPSClient.InitializeFeature(String name, Hashtable settings)
    at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.&lt;&gt;c__DisplayClass3.&lt;ConfigureFeature&gt;b__0()
    at System.Threading.Tasks.Task`1.InnerInvoke()
    at System.Threading.Tasks.Task.Execute()
    --- End of stack trace from previous location where exception was thrown ---
    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
    at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.&lt;ConfigureFeature&gt;d__5.MoveNext()
    at Microsoft.MgmtSvc.Config.Controllers.ConfigurationController.&lt;ConfigureFeature&gt;d__5.MoveNext()
    --- End of stack trace from previous location where exception was thrown ---
    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
    at lambda_method(Closure , Task )
    at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass3f.&lt;BeginInvokeAsynchronousActionMethod&gt;b__3e(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;&gt;c__DisplayClass39.&lt;BeginInvokeActionMethodWithFilters&gt;b__33()
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;BeginInvokeActionMethodWithFilters&gt;b__36(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;&gt;c__DisplayClass2a.&lt;BeginInvokeAction&gt;b__20()
    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;BeginInvokeAction&gt;b__22(IAsyncResult asyncResult)
    at System.Web.Mvc.Controller.&lt;&gt;c__DisplayClass1d.&lt;BeginExecuteCore&gt;b__18(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncResultWrapper.&lt;&gt;c__DisplayClass4.&lt;MakeVoidDelegate&gt;b__3(IAsyncResult ar)
    at System.Web.Mvc.Controller.EndExecuteCore(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncResultWrapper.&lt;&gt;c__DisplayClass4.&lt;MakeVoidDelegate&gt;b__3(IAsyncResult ar)
    at System.Web.Mvc.MvcHandler.&lt;&gt;c__DisplayClass8.&lt;BeginProcessRequest&gt;b__3(IAsyncResult asyncResult)
    at System.Web.Mvc.Async.AsyncResultWrapper.&lt;&gt;c__DisplayClass4.&lt;MakeVoidDelegate&gt;b__3(IAsyncResult ar)
    at System.Web.HttpApplication.CallHandlerExecutionStep.OnAsyncHandlerCompletion(IAsyncResult ar)</Data>
    </EventData>
    </Event>
    Kori Francis Lead Software Developer Clinical Support Systems, Inc.

  • Discover Web Site Cloud's websites in SCOM

    May be i am missing something here but the websites created in WAP are not being discovered in SCOM. I am not talking about Infrastructure sites like tenant portal, admin portal etc. I am talking about the websites created by tenants in the Web Site Cloud.
    Am i missing Management Pack or something here? I already have imported
    System Center Management Pack for Windows Azure Pack but it only discovers infrastructure related components.

    Azure Pack Websites uses some components from IIS like w3wp.exe but we use a specialized version of WAS called DWAS. Unfortunately, Azure Pack Websites has not being tested to work with IIS Management Pack. However you can install the Azure Pack Websites
    Management pack from the SCOM catalog.

  • Release Management Azure Pack (website cloud)

    Is it possible to integrate Release Management 2013 with Azure Pack? (as in deploying to for example an on premise website cloud using the controls that Release Management provides?)

    Hi Kameel88,  
    Thanks for your reply.
    According the information in this
    document, we can download the publish file from Azure Pack web site to deploy TFS web application to Azure Pack, so I think you create the PowerShell script to run that publish file, and invoke/run this PS Script in your release template to complete the
    deploy. http://www.visualstudio.com/get-started/deploy-no-agents-vs.
    For more information about deploy to Windows Azure Pack, please post in
    Azure Pack forum for the better response.     
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Wordpress Gallery Item for Azure Pack

    Hi,
    I have a fully functioning azure pack web sites implementation, in the available gallery items I have lots of web apps available including Better CMS, BlogEngine.net, DasBlog, Ghost, Orchard CMS etc. However I don't see Wordpress, Joomla and Drupal... I
    was under the impression that these were available? Am I missing something or is there further installation required?
    Thanks in advance.
    Microsoft Partner

    Hi,
    You need MySQL servers implemented and added to your subscription in order to choose sites that have a dependency on MySQL
    Best regards, Mark Scholman. Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Creation of web site 'name' failed. Provisioning failed

    I had installed Windows Azure Pack: website v2 installation package successfully in my environment to build private cloud without any issue but when I am trying to create new
    website I am getting below error which seems to odd for me. I have given each time new website name but still its saying  “Web space with name defaultwebspace already exists for subscription
    d9966d87-2f60-46f3-a015-efcf7e31c3f1.”
    I can see below warning and error message in system event log. Any kind of help is appreciated.
    Warning:
    Log Name:      Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational Source:        Microsoft-WindowsAzurePack-MgmtSvc-TenantSite
    Date:          3/2/2014 10:43:22 PM Event ID:      350 Task Category: (65184) Level:         Warning Keywords:      None
    User:          IIS APPPOOL\MgmtSvc-TenantSite Computer:      AzureP-L7U6WENS.compose1b02.com Description: Rest client received unsucessful response message with status code '409' and body
    '{"Code":"Conflict","Message":"Web space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.","ExtendedCode":"03004","MessageTemplate":"Web
    space with name {0} already exists for subscription {1}.","Parameters":["defaultwebspace","d9966d87-2f60-46f3-a015-efcf7e31c3f1"],"InnerErrors":null}'. Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>     <Provider Name="Microsoft-WindowsAzurePack-MgmtSvc-TenantSite" Guid="{1AEFE747-B4B6-5C96-A6F0-4455628C98F5}" />     <EventID>350</EventID>     <Version>0</Version>
        <Level>3</Level>     <Task>65184</Task>     <Opcode>0</Opcode>     <Keywords>0x0</Keywords>     <TimeCreated SystemTime="2014-03-03T06:43:22.463206100Z"
    />     <EventRecordID>76</EventRecordID>     <Correlation ActivityID="{B704CC06-20D7-4AA8-8EB3-9BB325D67C6F}" />     <Execution ProcessID="3432" ThreadID="2340"
    />     <Channel>Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational</Channel>     <Computer>AzureP-L7U6WENS.compose1b02.com</Computer>     <Security UserID="S-1-5-82-2412073939-1629192209-1361556002-1973534042-2256616803"
    />   </System>   <EventData>     <Data Name="httpStatusCode">409</Data>     <Data Name="messageBody">{"Code":"Conflict","Message":"Web
    space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.","ExtendedCode":"03004","MessageTemplate":"Web space with name {0} already exists for subscription {1}.","Parameters":["defaultwebspace","d9966d87-2f60-46f3-a015-efcf7e31c3f1"],"InnerErrors":null}</Data>
      </EventData> </Event>
    Error:
    Log Name:      Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational Source:        Microsoft-WindowsAzurePack-MgmtSvc-TenantSite
    Date:          3/2/2014 10:43:22 PM Event ID:      12 Task Category: (65522) Level:         Error Keywords:      None User:         
    IIS APPPOOL\MgmtSvc-TenantSite Computer:      AzureP-L7U6WENS.compose1b02.com Description: Error:AggregateException: One or more errors occurred. <Exception>   <Type>AggregateException</Type>   <Message>One
    or more errors occurred.</Message>   <StackTrace><![CDATA[    at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)    at Microsoft.Azure.Portal.ServerAppManager.ProvisioningSequencer.StartProvisioningSteps(String
    subscriptionId, List`1 internalResources)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplication(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources,
    List`1 internalResources, String location)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplicationAsync(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources,
    List`1 internalResources, String location)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.CreateSiteApplication(String subscriptionId, SiteId siteId, String region, String packageUri, Boolean UseIntegratedSqlScript,
    MsDeployParameter[] parameters, DatabaseResourceInfo dbResourceInfo, String offerId)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.OnPremProvisionAndDeploySite(String subscriptionId, String region, DatabaseOptions
    databaseOptions, IDictionary`2 applicationEntry, DeploymentAnswers deploymentAnswers)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.<ProvisionAndDeploySite>d__0.MoveNext() --- End of stack trace from previous
    location where exception was thrown ---    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)    at
    lambda_method(Closure , Task )    at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3f.<BeginInvokeAsynchronousActionMethod>b__3e(IAsyncResult
    asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<>c__DisplayClass39.<BeginInvokeActionMethodWithFilters>b__33()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<BeginInvokeActionMethodWithFilters>b__36(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<>c__DisplayClass2a.<BeginInvokeAction>b__20()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<BeginInvokeAction>b__22(IAsyncResult asyncResult)]]></StackTrace>   <InnerException>     <Type>JsonException</Type>
        <Message>Web space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.</Message>     <StackTrace><![CDATA[    at Microsoft.Azure.Portal.ServerAppManager.TaskExtensions.<>c__DisplayClass1`1.<HandleException>b__0(Task`1
    e)    at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke()    at System.Threading.Tasks.Task.Execute()]]></StackTrace>   </InnerException>   <HttpContext>     <User
    IsAuthenticated="true" Name="[email protected]" />     <Request>       <RawUrl>/Extensions/MarketplaceExtension/d9966d87-2f60-46f3-a015-efcf7e31c3f1/ProvisionAndDeploySite</RawUrl>
          <UserHostAddress>fe80::80f7:9d:f916:b5b0%12</UserHostAddress>       <Headers>         <Header Key="Cache-Control" Value="no-cache"
    />         <Header Key="Connection" Value="Keep-Alive" />         <Header Key="Content-Length" Value="374" />        
    <Header Key="Content-Type" Value="application/json" />         <Header Key="Accept" Value="application/json, text/javascript, */*; q=0.01" />        
    <Header Key="Accept-Encoding" Value="gzip, deflate" />         <Header Key="Accept-Language" Value="en-US" />         <Header Key="Host"
    Value="azurep-l7u6wens.compose1b02.com:30081" />         <Header Key="Referer" Value="https://azurep-l7u6wens.compose1b02.com:30081/#Workspaces/WebsiteExtension/websites"
    />         <Header Key="User-Agent" Value="Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" />         <Header Key="x-ms-client-session-id"
    Value="260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0" />         <Header Key="x-ms-client-antiforgery-id" Value="4OB7eSUNtvQqgk4u1m53UXr9lCJunTqhC31lnAN1C3/nIo39pPB5p9VKQbiG+K5KvBuTXpu0Gpkt3tiPkJxDsbylCi4hYGeoc4tVU+mnR4CxquInZrhCKvhXhyPpGcY8Gch4XCOKpy1xmbPisnQ5mg=="
    />         <Header Key="x-ms-client-request-id" Value="8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z" />         <Header Key="X-Requested-With"
    Value="XMLHttpRequest" />         <Cookies>           <Cookie Name="__RequestVerificationToken_Admin" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" />           <Cookie Name="__RequestVerificationToken_MemebershipAuthentication" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" />           <Cookie Name="__RequestVerificationToken_Tenant" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" />           <Cookie Name="MembershipSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (1656 characters)" />           <Cookie Name="TenantSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (1372 characters)" />           <Cookie Name="__aux" Secure="false" Expires="0001-01-01T00:00:00Z" Domain=""
    Path="/" Value="Redacted (152 characters)" />           <Cookie Name="AdminSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z" Domain="" Path="/"
    Value="Redacted (2000 characters)" />           <Cookie Name="AdminSiteFedAuth1" Secure="false" Expires="0001-01-01T00:00:00Z" Domain="" Path="/"
    Value="Redacted (56 characters)" />           <Cookie Name="sub" Secure="false" Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted
    (4 characters)" />         </Cookies>       </Headers>     </Request>   </HttpContext> </Exception>, operationName:Marketplace.ProvisionAndDeploySite,
    version:, accept language:en-US, subscription Id:d9966d87-2f60-46f3-a015-efcf7e31c3f1, client request Id:8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z, principal Id:[email protected], page request Id:260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0, server
    request id: Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">   <System>     <Provider Name="Microsoft-WindowsAzurePack-MgmtSvc-TenantSite"
    Guid="{1AEFE747-B4B6-5C96-A6F0-4455628C98F5}" />     <EventID>12</EventID>     <Version>0</Version>     <Level>2</Level>     <Task>65522</Task>
        <Opcode>0</Opcode>     <Keywords>0x0</Keywords>     <TimeCreated SystemTime="2014-03-03T06:43:22.525709700Z" />     <EventRecordID>77</EventRecordID>
        <Correlation ActivityID="{7473B6A3-FF02-4264-83CF-E1E731E1F524}" />     <Execution ProcessID="3432" ThreadID="3064" />     <Channel>Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational</Channel>
        <Computer>AzureP-L7U6WENS.compose1b02.com</Computer>     <Security UserID="S-1-5-82-2412073939-1629192209-1361556002-1973534042-2256616803" />   </System>   <EventData>    
    <Data Name="message">AggregateException: One or more errors occurred. &lt;Exception&gt;   &lt;Type&gt;AggregateException&lt;/Type&gt;   &lt;Message&gt;One or more errors occurred.&lt;/Message&gt;
      &lt;StackTrace&gt;&lt;![CDATA[    at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)    at Microsoft.Azure.Portal.ServerAppManager.ProvisioningSequencer.StartProvisioningSteps(String subscriptionId,
    List`1 internalResources)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplication(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources, List`1 internalResources,
    String location)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplicationAsync(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources, List`1 internalResources,
    String location)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.CreateSiteApplication(String subscriptionId, SiteId siteId, String region, String packageUri, Boolean UseIntegratedSqlScript, MsDeployParameter[] parameters,
    DatabaseResourceInfo dbResourceInfo, String offerId)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.OnPremProvisionAndDeploySite(String subscriptionId, String region, DatabaseOptions databaseOptions, IDictionary`2
    applicationEntry, DeploymentAnswers deploymentAnswers)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.&lt;ProvisionAndDeploySite&gt;d__0.MoveNext() --- End of stack trace from previous location where exception
    was thrown ---    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)    at lambda_method(Closure ,
    Task )    at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass3f.&lt;BeginInvokeAsynchronousActionMethod&gt;b__3e(IAsyncResult
    asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;&gt;c__DisplayClass39.&lt;BeginInvokeActionMethodWithFilters&gt;b__33()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;BeginInvokeActionMethodWithFilters&gt;b__36(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;&gt;c__DisplayClass2a.&lt;BeginInvokeAction&gt;b__20()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;BeginInvokeAction&gt;b__22(IAsyncResult asyncResult)]]&gt;&lt;/StackTrace&gt;   &lt;InnerException&gt;    
    &lt;Type&gt;JsonException&lt;/Type&gt;     &lt;Message&gt;Web space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.&lt;/Message&gt;     &lt;StackTrace&gt;&lt;![CDATA[
       at Microsoft.Azure.Portal.ServerAppManager.TaskExtensions.&lt;&gt;c__DisplayClass1`1.&lt;HandleException&gt;b__0(Task`1 e)    at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke()   
    at System.Threading.Tasks.Task.Execute()]]&gt;&lt;/StackTrace&gt;   &lt;/InnerException&gt;   &lt;HttpContext&gt;     &lt;User IsAuthenticated="true" Name="[email protected]"
    /&gt;     &lt;Request&gt;       &lt;RawUrl&gt;/Extensions/MarketplaceExtension/d9966d87-2f60-46f3-a015-efcf7e31c3f1/ProvisionAndDeploySite&lt;/RawUrl&gt;       &lt;UserHostAddress&gt;fe80::80f7:9d:f916:b5b0%12&lt;/UserHostAddress&gt;
          &lt;Headers&gt;         &lt;Header Key="Cache-Control" Value="no-cache" /&gt;         &lt;Header Key="Connection"
    Value="Keep-Alive" /&gt;         &lt;Header Key="Content-Length" Value="374" /&gt;         &lt;Header Key="Content-Type" Value="application/json"
    /&gt;         &lt;Header Key="Accept" Value="application/json, text/javascript, */*; q=0.01" /&gt;         &lt;Header Key="Accept-Encoding"
    Value="gzip, deflate" /&gt;         &lt;Header Key="Accept-Language" Value="en-US" /&gt;         &lt;Header Key="Host" Value="azurep-l7u6wens.compose1b02.com:30081"
    /&gt;         &lt;Header Key="Referer" Value="https://azurep-l7u6wens.compose1b02.com:30081/#Workspaces/WebsiteExtension/websites"
    /&gt;         &lt;Header Key="User-Agent" Value="Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" /&gt;         &lt;Header Key="x-ms-client-session-id"
    Value="260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0" /&gt;         &lt;Header Key="x-ms-client-antiforgery-id" Value="4OB7eSUNtvQqgk4u1m53UXr9lCJunTqhC31lnAN1C3/nIo39pPB5p9VKQbiG+K5KvBuTXpu0Gpkt3tiPkJxDsbylCi4hYGeoc4tVU+mnR4CxquInZrhCKvhXhyPpGcY8Gch4XCOKpy1xmbPisnQ5mg=="
    /&gt;         &lt;Header Key="x-ms-client-request-id" Value="8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z" /&gt;         &lt;Header Key="X-Requested-With"
    Value="XMLHttpRequest" /&gt;         &lt;Cookies&gt;           &lt;Cookie Name="__RequestVerificationToken_Admin" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" /&gt;           &lt;Cookie Name="__RequestVerificationToken_MemebershipAuthentication" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (128 characters)" /&gt;           &lt;Cookie Name="__RequestVerificationToken_Tenant" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (128 characters)" /&gt;           &lt;Cookie Name="MembershipSiteFedAuth" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (1656 characters)" /&gt;           &lt;Cookie Name="TenantSiteFedAuth" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (1372 characters)" /&gt;           &lt;Cookie Name="__aux" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (152 characters)" /&gt;           &lt;Cookie Name="AdminSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (2000 characters)" /&gt;           &lt;Cookie Name="AdminSiteFedAuth1" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (56 characters)" /&gt;           &lt;Cookie Name="sub" Secure="false" Expires="0001-01-01T00:00:00Z" Domain=""
    Path="/" Value="Redacted (4 characters)" /&gt;         &lt;/Cookies&gt;       &lt;/Headers&gt;     &lt;/Request&gt;   &lt;/HttpContext&gt;
    &lt;/Exception&gt;</Data>     <Data Name="requestId">     </Data>     <Data Name="subscriptionId">d9966d87-2f60-46f3-a015-efcf7e31c3f1</Data>    
    <Data Name="clientRequestId">8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z</Data>     <Data Name="principalId">[email protected]</Data>
        <Data Name="version">     </Data>     <Data Name="pageRequestId">260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0</Data>     <Data Name="acceptLanguage">en-US</Data>
        <Data Name="operationName">Marketplace.ProvisionAndDeploySite</Data>   </EventData> </Event>

    I had installed Windows Azure Pack: website v2 installation package successfully in my environment to build private cloud without any issue but when I am trying to create new
    website I am getting below error which seems to odd for me. I have given each time new website name but still its saying  “Web space with name defaultwebspace already exists for subscription
    d9966d87-2f60-46f3-a015-efcf7e31c3f1.”
    I can see below warning and error message in system event log. Any kind of help is appreciated.
    Warning:
    Log Name:      Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational Source:        Microsoft-WindowsAzurePack-MgmtSvc-TenantSite
    Date:          3/2/2014 10:43:22 PM Event ID:      350 Task Category: (65184) Level:         Warning Keywords:      None
    User:          IIS APPPOOL\MgmtSvc-TenantSite Computer:      AzureP-L7U6WENS.compose1b02.com Description: Rest client received unsucessful response message with status code '409' and body
    '{"Code":"Conflict","Message":"Web space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.","ExtendedCode":"03004","MessageTemplate":"Web
    space with name {0} already exists for subscription {1}.","Parameters":["defaultwebspace","d9966d87-2f60-46f3-a015-efcf7e31c3f1"],"InnerErrors":null}'. Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>     <Provider Name="Microsoft-WindowsAzurePack-MgmtSvc-TenantSite" Guid="{1AEFE747-B4B6-5C96-A6F0-4455628C98F5}" />     <EventID>350</EventID>     <Version>0</Version>
        <Level>3</Level>     <Task>65184</Task>     <Opcode>0</Opcode>     <Keywords>0x0</Keywords>     <TimeCreated SystemTime="2014-03-03T06:43:22.463206100Z"
    />     <EventRecordID>76</EventRecordID>     <Correlation ActivityID="{B704CC06-20D7-4AA8-8EB3-9BB325D67C6F}" />     <Execution ProcessID="3432" ThreadID="2340"
    />     <Channel>Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational</Channel>     <Computer>AzureP-L7U6WENS.compose1b02.com</Computer>     <Security UserID="S-1-5-82-2412073939-1629192209-1361556002-1973534042-2256616803"
    />   </System>   <EventData>     <Data Name="httpStatusCode">409</Data>     <Data Name="messageBody">{"Code":"Conflict","Message":"Web
    space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.","ExtendedCode":"03004","MessageTemplate":"Web space with name {0} already exists for subscription {1}.","Parameters":["defaultwebspace","d9966d87-2f60-46f3-a015-efcf7e31c3f1"],"InnerErrors":null}</Data>
      </EventData> </Event>
    Error:
    Log Name:      Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational Source:        Microsoft-WindowsAzurePack-MgmtSvc-TenantSite
    Date:          3/2/2014 10:43:22 PM Event ID:      12 Task Category: (65522) Level:         Error Keywords:      None User:         
    IIS APPPOOL\MgmtSvc-TenantSite Computer:      AzureP-L7U6WENS.compose1b02.com Description: Error:AggregateException: One or more errors occurred. <Exception>   <Type>AggregateException</Type>   <Message>One
    or more errors occurred.</Message>   <StackTrace><![CDATA[    at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)    at Microsoft.Azure.Portal.ServerAppManager.ProvisioningSequencer.StartProvisioningSteps(String
    subscriptionId, List`1 internalResources)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplication(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources,
    List`1 internalResources, String location)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplicationAsync(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources,
    List`1 internalResources, String location)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.CreateSiteApplication(String subscriptionId, SiteId siteId, String region, String packageUri, Boolean UseIntegratedSqlScript,
    MsDeployParameter[] parameters, DatabaseResourceInfo dbResourceInfo, String offerId)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.OnPremProvisionAndDeploySite(String subscriptionId, String region, DatabaseOptions
    databaseOptions, IDictionary`2 applicationEntry, DeploymentAnswers deploymentAnswers)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.<ProvisionAndDeploySite>d__0.MoveNext() --- End of stack trace from previous
    location where exception was thrown ---    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)    at
    lambda_method(Closure , Task )    at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass3f.<BeginInvokeAsynchronousActionMethod>b__3e(IAsyncResult
    asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<>c__DisplayClass39.<BeginInvokeActionMethodWithFilters>b__33()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass4f.<InvokeActionMethodFilterAsynchronously>b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass37.<BeginInvokeActionMethodWithFilters>b__36(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<>c__DisplayClass2a.<BeginInvokeAction>b__20()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.<>c__DisplayClass25.<BeginInvokeAction>b__22(IAsyncResult asyncResult)]]></StackTrace>   <InnerException>     <Type>JsonException</Type>
        <Message>Web space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.</Message>     <StackTrace><![CDATA[    at Microsoft.Azure.Portal.ServerAppManager.TaskExtensions.<>c__DisplayClass1`1.<HandleException>b__0(Task`1
    e)    at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke()    at System.Threading.Tasks.Task.Execute()]]></StackTrace>   </InnerException>   <HttpContext>     <User
    IsAuthenticated="true" Name="[email protected]" />     <Request>       <RawUrl>/Extensions/MarketplaceExtension/d9966d87-2f60-46f3-a015-efcf7e31c3f1/ProvisionAndDeploySite</RawUrl>
          <UserHostAddress>fe80::80f7:9d:f916:b5b0%12</UserHostAddress>       <Headers>         <Header Key="Cache-Control" Value="no-cache"
    />         <Header Key="Connection" Value="Keep-Alive" />         <Header Key="Content-Length" Value="374" />        
    <Header Key="Content-Type" Value="application/json" />         <Header Key="Accept" Value="application/json, text/javascript, */*; q=0.01" />        
    <Header Key="Accept-Encoding" Value="gzip, deflate" />         <Header Key="Accept-Language" Value="en-US" />         <Header Key="Host"
    Value="azurep-l7u6wens.compose1b02.com:30081" />         <Header Key="Referer" Value="https://azurep-l7u6wens.compose1b02.com:30081/#Workspaces/WebsiteExtension/websites"
    />         <Header Key="User-Agent" Value="Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" />         <Header Key="x-ms-client-session-id"
    Value="260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0" />         <Header Key="x-ms-client-antiforgery-id" Value="4OB7eSUNtvQqgk4u1m53UXr9lCJunTqhC31lnAN1C3/nIo39pPB5p9VKQbiG+K5KvBuTXpu0Gpkt3tiPkJxDsbylCi4hYGeoc4tVU+mnR4CxquInZrhCKvhXhyPpGcY8Gch4XCOKpy1xmbPisnQ5mg=="
    />         <Header Key="x-ms-client-request-id" Value="8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z" />         <Header Key="X-Requested-With"
    Value="XMLHttpRequest" />         <Cookies>           <Cookie Name="__RequestVerificationToken_Admin" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" />           <Cookie Name="__RequestVerificationToken_MemebershipAuthentication" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" />           <Cookie Name="__RequestVerificationToken_Tenant" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" />           <Cookie Name="MembershipSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (1656 characters)" />           <Cookie Name="TenantSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (1372 characters)" />           <Cookie Name="__aux" Secure="false" Expires="0001-01-01T00:00:00Z" Domain=""
    Path="/" Value="Redacted (152 characters)" />           <Cookie Name="AdminSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z" Domain="" Path="/"
    Value="Redacted (2000 characters)" />           <Cookie Name="AdminSiteFedAuth1" Secure="false" Expires="0001-01-01T00:00:00Z" Domain="" Path="/"
    Value="Redacted (56 characters)" />           <Cookie Name="sub" Secure="false" Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted
    (4 characters)" />         </Cookies>       </Headers>     </Request>   </HttpContext> </Exception>, operationName:Marketplace.ProvisionAndDeploySite,
    version:, accept language:en-US, subscription Id:d9966d87-2f60-46f3-a015-efcf7e31c3f1, client request Id:8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z, principal Id:[email protected], page request Id:260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0, server
    request id: Event Xml: <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">   <System>     <Provider Name="Microsoft-WindowsAzurePack-MgmtSvc-TenantSite"
    Guid="{1AEFE747-B4B6-5C96-A6F0-4455628C98F5}" />     <EventID>12</EventID>     <Version>0</Version>     <Level>2</Level>     <Task>65522</Task>
        <Opcode>0</Opcode>     <Keywords>0x0</Keywords>     <TimeCreated SystemTime="2014-03-03T06:43:22.525709700Z" />     <EventRecordID>77</EventRecordID>
        <Correlation ActivityID="{7473B6A3-FF02-4264-83CF-E1E731E1F524}" />     <Execution ProcessID="3432" ThreadID="3064" />     <Channel>Microsoft-WindowsAzurePack-MgmtSvc-TenantSite/Operational</Channel>
        <Computer>AzureP-L7U6WENS.compose1b02.com</Computer>     <Security UserID="S-1-5-82-2412073939-1629192209-1361556002-1973534042-2256616803" />   </System>   <EventData>    
    <Data Name="message">AggregateException: One or more errors occurred. &lt;Exception&gt;   &lt;Type&gt;AggregateException&lt;/Type&gt;   &lt;Message&gt;One or more errors occurred.&lt;/Message&gt;
      &lt;StackTrace&gt;&lt;![CDATA[    at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)    at Microsoft.Azure.Portal.ServerAppManager.ProvisioningSequencer.StartProvisioningSteps(String subscriptionId,
    List`1 internalResources)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplication(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources, List`1 internalResources,
    String location)    at Microsoft.Azure.Portal.ServerAppManager.ServerAppManagerDataAccessor.CreateApplicationAsync(String subscriptionId, String primaryResourceName, ResourceType primaryResourceType, List`1 externalResources, List`1 internalResources,
    String location)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.CreateSiteApplication(String subscriptionId, SiteId siteId, String region, String packageUri, Boolean UseIntegratedSqlScript, MsDeployParameter[] parameters,
    DatabaseResourceInfo dbResourceInfo, String offerId)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.OnPremProvisionAndDeploySite(String subscriptionId, String region, DatabaseOptions databaseOptions, IDictionary`2
    applicationEntry, DeploymentAnswers deploymentAnswers)    at Microsoft.Azure.Portal.Marketplace.Proxy.Controllers.MarketplaceController.&lt;ProvisionAndDeploySite&gt;d__0.MoveNext() --- End of stack trace from previous location where exception
    was thrown ---    at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)    at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)    at lambda_method(Closure ,
    Task )    at System.Web.Mvc.Async.TaskAsyncActionDescriptor.EndExecute(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass3f.&lt;BeginInvokeAsynchronousActionMethod&gt;b__3e(IAsyncResult
    asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;&gt;c__DisplayClass39.&lt;BeginInvokeActionMethodWithFilters&gt;b__33()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass4f.&lt;InvokeActionMethodFilterAsynchronously&gt;b__49()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass37.&lt;BeginInvokeActionMethodWithFilters&gt;b__36(IAsyncResult asyncResult)    at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;&gt;c__DisplayClass2a.&lt;BeginInvokeAction&gt;b__20()
       at System.Web.Mvc.Async.AsyncControllerActionInvoker.&lt;&gt;c__DisplayClass25.&lt;BeginInvokeAction&gt;b__22(IAsyncResult asyncResult)]]&gt;&lt;/StackTrace&gt;   &lt;InnerException&gt;    
    &lt;Type&gt;JsonException&lt;/Type&gt;     &lt;Message&gt;Web space with name defaultwebspace already exists for subscription d9966d87-2f60-46f3-a015-efcf7e31c3f1.&lt;/Message&gt;     &lt;StackTrace&gt;&lt;![CDATA[
       at Microsoft.Azure.Portal.ServerAppManager.TaskExtensions.&lt;&gt;c__DisplayClass1`1.&lt;HandleException&gt;b__0(Task`1 e)    at System.Threading.Tasks.ContinuationResultTaskFromResultTask`2.InnerInvoke()   
    at System.Threading.Tasks.Task.Execute()]]&gt;&lt;/StackTrace&gt;   &lt;/InnerException&gt;   &lt;HttpContext&gt;     &lt;User IsAuthenticated="true" Name="[email protected]"
    /&gt;     &lt;Request&gt;       &lt;RawUrl&gt;/Extensions/MarketplaceExtension/d9966d87-2f60-46f3-a015-efcf7e31c3f1/ProvisionAndDeploySite&lt;/RawUrl&gt;       &lt;UserHostAddress&gt;fe80::80f7:9d:f916:b5b0%12&lt;/UserHostAddress&gt;
          &lt;Headers&gt;         &lt;Header Key="Cache-Control" Value="no-cache" /&gt;         &lt;Header Key="Connection"
    Value="Keep-Alive" /&gt;         &lt;Header Key="Content-Length" Value="374" /&gt;         &lt;Header Key="Content-Type" Value="application/json"
    /&gt;         &lt;Header Key="Accept" Value="application/json, text/javascript, */*; q=0.01" /&gt;         &lt;Header Key="Accept-Encoding"
    Value="gzip, deflate" /&gt;         &lt;Header Key="Accept-Language" Value="en-US" /&gt;         &lt;Header Key="Host" Value="azurep-l7u6wens.compose1b02.com:30081"
    /&gt;         &lt;Header Key="Referer" Value="https://azurep-l7u6wens.compose1b02.com:30081/#Workspaces/WebsiteExtension/websites"
    /&gt;         &lt;Header Key="User-Agent" Value="Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko" /&gt;         &lt;Header Key="x-ms-client-session-id"
    Value="260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0" /&gt;         &lt;Header Key="x-ms-client-antiforgery-id" Value="4OB7eSUNtvQqgk4u1m53UXr9lCJunTqhC31lnAN1C3/nIo39pPB5p9VKQbiG+K5KvBuTXpu0Gpkt3tiPkJxDsbylCi4hYGeoc4tVU+mnR4CxquInZrhCKvhXhyPpGcY8Gch4XCOKpy1xmbPisnQ5mg=="
    /&gt;         &lt;Header Key="x-ms-client-request-id" Value="8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z" /&gt;         &lt;Header Key="X-Requested-With"
    Value="XMLHttpRequest" /&gt;         &lt;Cookies&gt;           &lt;Cookie Name="__RequestVerificationToken_Admin" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (128 characters)" /&gt;           &lt;Cookie Name="__RequestVerificationToken_MemebershipAuthentication" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (128 characters)" /&gt;           &lt;Cookie Name="__RequestVerificationToken_Tenant" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (128 characters)" /&gt;           &lt;Cookie Name="MembershipSiteFedAuth" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (1656 characters)" /&gt;           &lt;Cookie Name="TenantSiteFedAuth" Secure="false"
    Expires="0001-01-01T00:00:00Z" Domain="" Path="/" Value="Redacted (1372 characters)" /&gt;           &lt;Cookie Name="__aux" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (152 characters)" /&gt;           &lt;Cookie Name="AdminSiteFedAuth" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (2000 characters)" /&gt;           &lt;Cookie Name="AdminSiteFedAuth1" Secure="false" Expires="0001-01-01T00:00:00Z"
    Domain="" Path="/" Value="Redacted (56 characters)" /&gt;           &lt;Cookie Name="sub" Secure="false" Expires="0001-01-01T00:00:00Z" Domain=""
    Path="/" Value="Redacted (4 characters)" /&gt;         &lt;/Cookies&gt;       &lt;/Headers&gt;     &lt;/Request&gt;   &lt;/HttpContext&gt;
    &lt;/Exception&gt;</Data>     <Data Name="requestId">     </Data>     <Data Name="subscriptionId">d9966d87-2f60-46f3-a015-efcf7e31c3f1</Data>    
    <Data Name="clientRequestId">8e007110-f918-4452-a26f-9eb0fca98e2d-2014-03-03 06:43:21Z</Data>     <Data Name="principalId">[email protected]</Data>
        <Data Name="version">     </Data>     <Data Name="pageRequestId">260e75ef-5f8f-4ddb-9d8b-b3f2e5315dd0</Data>     <Data Name="acceptLanguage">en-US</Data>
        <Data Name="operationName">Marketplace.ProvisionAndDeploySite</Data>   </EventData> </Event>

Maybe you are looking for