Azure Powershell: Import-AzurePublishSettingsFile

Hi there,
I have a Windows Azure Account, containing one Single Website. I tried to connect to this site with the Azure Powershell with the command 
Import-AzurePublishSettingsFile -PublishSettingsFile "Path"
This results in the following error:
Import-AzurePublishSettingsFile : There is an error in XML document (1, 2).
In Zeile:1 Zeichen:1
+ Import-AzurePublishSettingsFile -PublishSettingsFile "C:\Users\d.puritscher\Down ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : CloseError: (:) [Import-AzurePublishSettingsFile], InvalidOperationException
    + FullyQualifiedErrorId : Microsoft.WindowsAzure.Commands.Subscription.ImportAzurePublishSettingsCommand
Any idea what could be the problem? At first sight it looks to me like a syntax failure within the XML-File, but I just downloaded the PublishSettings-File from the portal and did no modification at all. 
Thanks in advance
Dominik

here is my .publishfile. It's as I took it from the Azure-Portal, I just replaced the personal information with "ABC"
<publishData>
<publishProfile profileName="ABC - Web Deploy" publishMethod="MSDeploy" publishUrl="ABC.azurewebsites.windows.net:443" msdeploySite="ABC" userName="ABC" userPWD="ABC" destinationAppUrl="http://ABC.azurewebsites.net" SQLServerDBConnectionString="Data Source=ABC.database.windows.net,1433;Initial Catalog=ABC;User ID=ABC@ABC;Password=ABC" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" targetDatabaseEngineType="sqlazuredatabase" targetServerVersion="Version100">
<databases>
<add name="ABC" connectionString="Data Source=tcp:ABC.database.windows.net,1433;Initial Catalog=ABC;UserID=ABC@ABC;Password=ABC" providerName="System.Data.SqlClient" type="Sql"targetDatabaseEngineType="sqlazuredatabase" targetServerVersion="Version100"/>
</databases>
</publishProfile>
<publishProfile profileName="ABC - FTP" publishMethod="FTP" publishUrl="ABC" ftpPassiveMode="True" userName="ABC\ABC" userPWD="ABC" destinationAppUrl="http://ABC.azurewebsites.net" SQLServerDBConnectionString="Data Source=tcp:ABC.database.windows.net,1433;Initial Catalog=ABC;User ID=ABC@ABC;Password=ABC" mySQLDBConnectionString="" hostingProviderForumLink="" controlPanelLink="http://windows.azure.com" targetDatabaseEngineType="sqlazuredatabase" targetServerVersion="Version100">
<databases>
<add name="ABC" connectionString="Data Source=tcp:ABC.database.windows.net,1433;Initial Catalog=ABC;User ID=ABC@ABC;Password=ABC" providerName="System.Data.SqlClient" type="Sql" targetDatabaseEngineType="sqlazuredatabase" targetServerVersion="Version100"/>
</databases>
</publishProfile>
</publishData>
Thanks again for your support.

Similar Messages

  • Windows Azure Powershell Automate Login

    Hello,
    I am stumped and starting to feel beat by this one.
    I'm trying to automate tasks from a website to Windows Azure. Specifically, when a new user signs up, I want to create a Remote-PSSession and run a few commands on the server to set up the new user. I have the remote parts working but I can't seem to log
    in without the manual intervention of entering my username and password in the browser, thus, I have to run the commands from PowerShell and not from C#.
    Most recently, I was following this tutorial:
    http://michaelcollier.wordpress.com/2013/02/28/configuring-connectivity-with-windows-azure-powershell-cmdlets/
    This seems like exactly what I need but maybe I'm misunderstanding some of the fundamental concepts.
    Here's what I tried most recently:
    To attempt to get a fresh start I deleted all of the certificates out of my Current User\Personal\Certificates directory. Which (as far as I can tell) is the same directory referenced in Michael's post above when using:
    Get-Item cert:\\CurrentUser\My\$thumbprint
    I then ran the following commands, and when prompted downloaded and saved the .publishsettings file to my desktop:
    Get-AzurePublishSettingsFile
    Import-AzurePublishSettingsFile "C:\Users\<My User>\Desktop\myPubSettings.publishsettings"
    At that point I tried the following:
    # I started with:
    cd cert:\\CurrentUser\My
    dir
    # to look up the thumbprint, then proceeded to set the variables...
    $thumbPrint = "the thumbprint I looked up above."
    $subscriptionName = "My Azure Subscription"
    # Not actually my subscription:
    $subscriptionId = "e234a9-4asb-9asdf-8loremIpsum"
    $mgmtCert = Get-Item cert:\\CurrentUser\My\$thumbprint
    Set-AzureSubscription -SubscriptionName $subscriptionName -SubscriptionId $subscriptionId -Certificate $mgmtCert
    # This line failed, saying Default Subscription was not a valid parameter
    Set-AzureSubscription -DefaultSubscription $subscriptionName
    Set-AzureSubscription -SubscriptionName $subscriptionName –CurrentStorageAccount ‘mystorageaccount’
    After that, I felt reasonably confident that I was logged in. So I tried to run:
    Get-AzureVM
    Which returned the error:
    "Get-AzureVM : Your credentials have expired. Please use Add-AzureAccount to log in again."
    I feel like there are a lot of tips on the internet, but none that I've been able to get working. Is there a known bug, or is it clear based on what I tried above what is wrong? Is it possible to to automate the login to Azure so that I can run scripts from
    C# to perform some of my tasks?
    Thanks for your help, 
    Wes

    Hi,
    Thank you for sharing your solutions and experience here. It will be very beneficial for other community members who have similar questions. If you have any difficulty in future programming, we welcome you to post in forums again.
    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.

  • How to create Redis cache using Azure powershell?

    Is it possible to create Redis cache using Azure powershell? I tried to search the solution from internet, but cannot find one.

    I ran into this issue as well and the answer was not obvious when trying to write a deploy script in powershell.
    The issue stems from how you setup your azure subscription in powershell. If you chose to use certificate-based authentication (i.e. import-azurepublishsettings), then any cmdlet using the resource management api will NOT work, failing with an authorization
    header error. Powershell even lets you know. After you have setup your subscription, run Get-AzureSubscription and look for the line starting with "SupportedModes". You will notice that only AzureServiceManagement shows up. You need it to contain
    AzureResourceManager as well. 
    The Add-AzureAccount cmdlet will add the AzureResourceManager mode to your subscription
    But you want to use this in an automated fashion? Read on.
    1) If your Microsoft account is not also linked to an organizational account OR your organizational account contains the subscription you are attempting to use, then simply login using Add-AzureAccount. That will give you access to both modes.
    2) If you do have a Microsoft account linked to an organizational account, you can use Active Directory service principals. Be warned that it requires setup, but it will give you access to AzureResourceManager cmdlets. Here is a guide: http://blog.davidebbo.com/2014/12/azure-service-principal.html.
    There is another caveat: you will not be able to use both modes in the course of your script with a service principal account. Service Principal accounts use Role Based Access Control, which is not currently supported in the Service Management API. I have
    not found a great solution to overcome this--other than creating a new Microsoft account and linking that to the subscription you want to use which I find distasteful.
    Hope this helps.
    -Mike

  • How to get Windows Azure Powershell on a HDInsight VM?

    I've already searched MSDN and Bing and didn't find an answer to my question below -> So how do I install Windows Azure Powershell on my HDInsight cluster?
    Overall, I'm trying to execute the tutorial here:
    http://azure.microsoft.com/en-us/documentation/articles/hdinsight-analyze-twitter-data/
    1) I provisioned a single HDInsight cluster. I have a pre-existing storage account. I can use Azure Storage Explorer to browse around so I know it's ok.
    2) I am able to open a remote desktop connection to my cluster.
    3) To run any of the PowerShell scripts in the tutorial linked above I need "Windows Azure Powershell". Regular "Windows Powershell" doesn't seem to have some cmdlets.
    4) After I remote into my cluster I go to this page
    http://azure.microsoft.com/en-us/documentation/articles/install-configure-powershell/ and launch the link that says "You can download and install the Azure PowerShell modules by running the
    Microsoft Web Platform Installer...".
    5) I choose that installer link.
    6) I choose "Run"
    7) It says "The system administrator has set policies to prevent this installation."
    So how do I install Windows Azure Powershell on my HDInsight cluster?
    Thanks in advance.

    Hi CraigGu,
    User won't get admin access on HDInsight cluster so that's the reason you were getting the error.
    It's not recommended to install any software/do any customization(via rdp) on headnode of HDInsight cluster. The reason is that changes will not be preserved due to cluster reimage process.
    To answer your question please install and configure PowerShell on your desktop/laptop and submit jobs.
    Thank you for choosing Microsoft HDInsight
    Thanks and Regards,
    Please marked it as answered if it answer your question.  
    Sudhir Rawat

  • Azure Powershell - Calling Set-AzureServiceDiagnosticsExtension results in BadRequest error

    I'm trying to set Azure diagnostics on a deployed cloud service using v0.8.11 Azure Powershell cmdlets and the Set-AzureServiceDiagnosticsExtension command:
        Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $diagnosticsConfiguration.FullName -ServiceName $serviceName -Slot Production -Role "MyService.Web"-Verbose
    Doing so I get the following error
        Exception: Microsoft.WindowsAzure.CloudException: BadRequest: The extension ID
        MyService.Web-PaaSDiagnostics-Production-Ext-0 is invalid.
           at Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task
        task)
           at Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(Task
        task)
           at Microsoft.WindowsAzure.HostedServiceOperationsExtensions.AddExtension(IHo
        stedServiceOperations operations, String serviceName,
        HostedServiceAddExtensionParameters parameters)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.ExtensionMan
        ager.AddExtension(HostedServiceAddExtensionParameters extensionInput)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.ExtensionMan
        ager.InstallExtension(ExtensionConfigurationInput context, String slot,
        ExtensionConfiguration extConfig)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.SetAzureServ
        iceDiagnosticsExtensionCommand.ExecuteCommand()
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.SetAzureServ
        iceDiagnosticsExtensionCommand.OnProcessRecord()
           at Microsoft.WindowsAzure.Commands.Utilities.Common.CloudBaseCmdlet`1.Proces
        sRecord()
           at System.Management.Automation.Cmdlet.DoProcessRecord()
           at System.Management.Automation.CommandProcessor.ProcessRecord()
            + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorExcep
           tion
            + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorExceptio
           n,UpdateDiagnosticsBuildStep.ps1
    It works when I don't use the "-Role" parameter but then I have to call Remove-AzureServiceDiagnosticsExtension for each role prior to calling the Set command which adds 2-3 minutes per role to the script execution time.
    The Role parameter matches my role name in the Azure Cloud Service. Am I doing something wrong or is this a bug?

    Hi dontijee,
    Please look at this article:
    http://blogs.msdn.com/b/kwill/archive/2014/12/02/windows-azure-diagnostics-upgrading-from-azure-sdk-2-4-to-azure-sdk-2-5.aspx, there is one person who encounter the same issue in the comments part of this article, please pay attention to this article. If
    any update, I will post here.
    [update]
    Please have a look at the kevin's reply, it seems like a powershell bug, here is a snippet.
    The problem has been identified as an issue with the extension name code in the Powershell cmdlet.  The REST API that Powershell calls doesn't support dots in the extension name.  Visual Studio will correctly remove the dots from the role name,
    but Powershell preserves the full role name including dots.  We will fix the Powershell code, but in the meantime the workarounds are:
    1) Remove the '.' from your role name.
    2) Use Visual Studio to enable diagnostics.
    3) Instead of using Set-AzureServiceDiagnosticsExtension, use the generic New-AzureServiceExtensionConfig / Set-AzureServiceExtension methods.
    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.

  • Powershell Import-SPWeb problem....

    This is driving me nuts because it's such a simple thing that should just work.  We are trying to export a site from one SC to another. The export works fine.   Here is the command I used:
    PS C:\Users\x> Export-SPWeb http://myteam.company.com/is/issites/ism/ -Path d:\ism\ism2.bak -IncludeUserSecurity -IncludeVersions All -NoFileCompression
    Here are some of the commands we’ve used to try to restore.  Note that we've done SEVERAL exports with different parameters and such which might explain the differences.:
    PS D:\> Import-SPWeb -Identity "http://myteam.company.com/ismgmt" -Path "d:\ism\ism2.bak"
    Import-SPWeb : The file d:\ism\ism2.bak does not exist.
    At line:1 char:13
    + Import-SPWeb <<<<  -Identity "http://myteam.company.com/ismgmt" -Path "d:\ism\ism2.bak"
        + CategoryInfo          : InvalidData: (Microsoft.Share...CmdletImportWeb:
       SPCmdletImportWeb) [Import-SPWeb], SPException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletImportWeB
    PS C:\Users\x> Import-SPWeb -Identity
    http://myteam.company.com/ismgmt/ -Path d:\ismnew
    Import-SPWeb : The file d:\ismnew does not exist.
    At line:1 char:13
    + Import-SPWeb <<<<  -Identity
    http://myteam.company.com/ismgmt/ -Path d:\ismnew
        + CategoryInfo          : InvalidData: (Microsoft.Share...CmdletImportWeb:
       SPCmdletImportWeb) [Import-SPWeb], SPException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletImportWeb
    PS D:\> Import-SPWeb -Identity "http://myteam.company.com/ismgmt" -Path d:\ism\ism2
     Import-SPWeb : The file d:\ism\ism2 does not exist.
    At line:1 char:13
    + Import-SPWeb <<<<  -Identity "http://myteam.company.com/ismgmt" -Path d:\ism\ism2
        + CategoryInfo          : InvalidData: (Microsoft.Share...CmdletImportWeb:
       SPCmdletImportWeb) [Import-SPWeb], SPException
        + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletImportWeB
    I've tried this exporting to files with new names, some names with .cmp extension, (because I saw a few examples with that online), tried not specifying an extension name on the export, and so on.  The files definitely exist and I've verified that there
    aren't any trailing spaces on the end of the names. 
    I think the whole "file does not exist" is a complete red herring and the problem is completely different, but I can't figure out what.
    I’m using my id that has both domain admin as well as farm admin, and we’ve even gone into the ISM folder and shared it with everyone with no luck.  We’ve verified that the file exists and is spelled right.  We’ve tried with –nofilecompression
    as well as with out it.  We’ve tried with different file extensions as well as with none.   We've tried doing "Run as administrator" on Powershell. We’ve tried other things I’m sure but I’m starting to forget them.
    Can you see what we are missing?  This should be such a simple thing and I can’t figure out what is going wrong with it.
    Thanks in advance for the help.
    Ted

    What I ended up doing was just using Central Admin to export the site, list or whatever. I used powershell Import-SPWeb. For some reason the powershell command is not functioning Export-SPWeb. Doing
    it this way worked for me.
    Chris
    I don't have time right now to figure it out.

  • Microsoft SQL Server Express LocalDB / Windows Azure Powershell install fail - SQL writer failed to start

    I'm trying to install Windows Azure PowerShell on my Windows 7 SP1 Enterprise laptop. As a prerequisite, it needs to install Microsoft SQL Server 2012 Express LocalDB, I but keep receiving an error:
    Service 'SQL Server VSS Writer' (SQLWriter) failed to start. Verify that you have
    sufficient privileges to start system services.
    The service that it tries to use by default is the Local Service. I verified that it has log on as a service privileges and even did a restart. Same error.
    any ideas?
    Cross posted in Windows
    Azure

    Hi ,
    According to your description, when you install SQL Server 2012 Local DB , it encounter the error about SQLWriter. We need to verify if you invoke SQLLOcalDB.msi directly, and check
    MSSQL service is running and other service’s status.In addition, you can go to event viewer and check the error logs for analysis.
    There is a similar issue about Service SQL Server VSS Writer and troubleshooting SQL Server 2012 Express LocalDB, you can review the following article.
    http://blog.andreloker.de/post/2008/07/17/SQL-Server-hotfix-KB948109-fails-with-error-1920.aspx#!
    http://social.technet.microsoft.com/wiki/contents/articles/4609.troubleshoot-sql-server-2012-express-localdb.aspx
    Thanks,
    Sofiya Li
    Your Name
    TechNet Community Support

  • Azure powershell gives the error :Your credentials have expired Please use Add-AzureAccount to login again.

    Azure powershell gives the error :Your credentials have expired Please use Add-AzureAccount to login again.
    Keep receiving the same error even after logging in again and again.
    I want to create credentials for my storage account and want to take backup of a database on azure storage account.
    Please help.

    I had the same error and it was caused by the newest versions of Azure PowerShell. I had to install back to version 8.14 (February 2015) in order for it to work.
    http://az412849.vo.msecnd.net/downloads04/azure-powershell.0.8.14.msi

  • How to get Virtual Network name for Virtual Machine in Azure PowerShell?

    I want to know what Virtual Network name is for specific Virtual Machine.
    How can I get this through Azure PowerShell?

    If this is SCVMM (since SCVMM has things called 'virtual networks') you would:
    $vm = Get-SCVirtualMachine -Name foo
    $vm.virtualNetworkAdapters will display the VM network adapter objects.  Each VM Network Adapter object has a "VM Network"  and a "Logical Network" property.
    So you can walk the chain of objects.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.
    Disclaimer: Attempting change is of your own free will.

  • Azure PowerShell :: Set-AzureSqlDatabase :: "Service Objective Assignment" in progress

    When I run the Set-AzureSqlDatabase command to update the SQL Edition, using the
    -Edition parameter, and try to change it back to the previously configured edition, I receive a message saying:
    Set-AzureSqlDatabase : A service objective assignment on server 'cvhgaeh2v0' and database 'Trevor01DB' is already in progress. Please wait until the service objective assignment state for the database is marked as 'Completed'.
    Can someone please help me understand what this means? What exactly is a
    service objective assignment?
    I am using Windows PowerShell 5.0 September Preview on Windows
    8.1 Professional with Update, and the Azure PowerShell module version
    0.8.8.
    Cheers,
    Trevor Sullivan
    Microsoft MVP: PowerShell
    If this post was helpful, please click the little "Vote as Helpful" button :)
    Trevor Sullivan
    Trevor Sullivan's Tech Room
    Twitter Profile

    Hi,
    You can Specify the service tier, the performance level, and the maximum size for the database by using Set-AzureSqlDatabase –ServiceObjective.
    More information :
    http://msdn.microsoft.com/en-us/library/azure/dn369872.aspx
    -ServiceObjective<ServiceObjective>
    If specified, an object representing the new service objective for this database.
    http://msdn.microsoft.com/library/azure/dn546732.aspx
    Regards,
    Mekh.

  • Azure Powershell Get Public IP of Staging Cloud Service

    I also posted my question here..
    http://stackoverflow.com/questions/20690307/azure-powershell-get-public-ip-of-staging-cloud-service
    I am using this answer to look up our cloud service's public ip via azure powershell.
    Azure
    Powershell: Get public virtual IP of service
    This only returns the endpoints for the production cloud services. We also need to easily look up our staging cloud service endpoints.
    Does anyone know how to look these up with Azure Powershell?
    Thanks!

    hi TWilly,
    Thanks for psoting!
    You could use "Slot" in your powershell.
    Please see the description about "Slot":
    -Slot<String>
    Specifies the Windows Azure deployment environment. Choices are "Production" or "Staging".
    You could use it to specify the emviroment.Like this sample :
    C:\PS>Get-AzureRole –ServiceName "MySvc1" –Slot Staging –RoleName "MyTestVM3"
    You could refer to this document:
    http://msdn.microsoft.com/en-us/library/jj152869.aspx
    Please try it.
    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.

  • Azure powershell script runs locally bu not in webjob

    I downloaded Azure commandlets locally and changed the Azure website size by just running an Azure powershell script i wrote. However, uploading it to run as a webjob on my Azure website it fails with the same errors it did locally Before installing Azure
    Powersehll. Looking in kudu I see windows powershell but no azure powershell. Do I need to install Azure powershell to my website somehow?

    Done! >And it already got some attention :)
    http://feedback.azure.com/forums/169385-websites/suggestions/7155775-add-azure-commandlets

  • Check Windows Update and Remote by Azure PowerShell

    Hi everyone,
    I've been dealing with a case in which my recent security update has broken the AD authentication. As a result, I can't remotely connect to the virtual machine by RDP. I'm wondering whether it's possible to check and remove Windows Update by Azure PowerShell
    from my laptop.
    Your suggestion would be greatly appreciated.
    Regards,
    -T.s
    Thuan Soldier
    A 23-year-old man loving Microsoft technologies and making crazy ideas on business journey.
    SharePoint Vietnam |
    Blog | Twitter

    Hi Thuan;
    This script is tested on these platforms by the author.:
    Verified on the following platforms
    Windows Server 2012
    Yes
    Windows Server 2008 R2
    Yes
    Windows Server 2008
    Yes
    Windows Server 2003
    No
    Windows 8
    Yes
    Windows 7
    Yes
    Windows Vista
    Yes
    Windows XP
    No
    Windows 2000
    No
    Regards
    Prasant

  • Windows Azure powershell Not able to install

    Hello
    I tried to download the Windows azure powerhsell from site
    http://www.windowsazure.com/en-us/downloads/?fb=en-us
    But when i ran the exe , it says
    Can you please help me how to install windows azure powershell.
    thanks
    Vimal
    regards Vimal

     Yes i don't have powershell 3 installed, but i do have .net 4 installed.
    But now when i am trying to install the powershell 3 it gave me error.
    Log file log:- 
    DownloadManager Information: 0 : Contextual entry products: WindowsAzurePowerShell
    DownloadManager Information: 0 : Skipping contextual product 'WindowsAzurePowerShell'
    DownloadManager Information: 0 : Contextual navigation to 'product not supported' page
    DownloadManager Information: 0 : Content-Encoding header: 'gzip'
    DownloadManager Information: 0 : Number of bytes downloaded over the internet: '21394'
    DownloadManager Information: 0 : Number of bytes after possible decompression: '72230'
    DownloadManager Warning: 0 : Error getting last-modified header, error code: 12150
    DownloadManager Warning: 0 : HttpQueryInfoWithRetry for HTTP_QUERY_LAST_MODIFIED failed.
    DownloadManager Information: 0 : Ratings file loaded successfully
    DownloadManager Information: 0 : Adding product Windows PowerShell 3.0 (PowerShell3) to cart
    DownloadManager Information: 0 : Adding product 'PowerShell3'
    DownloadManager Information: 0 : Setting current install to 1
    DownloadManager Information: 0 : Starting install sequence
    DownloadManager Information: 0 : Starting EXE command for product 'Windows PowerShell 3.0'. Commandline is: 'C:\Windows\sysnative\dism.exe /online /enable-feature /featureName:MicrosoftWindowsPowerShell /all'. Process Id: 10684
    DownloadManager Information: 0 : Install exit code for product 'Windows PowerShell 3.0' is '87'
    DownloadManager Error: 0 : Install return code for product 'Windows PowerShell 3.0' is Failure
    DownloadManager Information: 0 : Product Windows PowerShell 3.0 done install completed
    DownloadManager Information: 0 : Increasing current install to 2
    regards Vimal

  • Can't login to azure powershell with the same login.

    Hello,
    Last day i installed a VM in the managemend portal, and used Azure powershell to give some static ip's.
    Next day i try to login to my azure powershell and it says that my azure account is not valid....
    I still can use my account on the portal and msdn etc.
    How is this posible ?
    Greatings

    Hi,
    This is weird, may be related to the azure powershell subscription, however, I am glad to hear that this issue has been fixed, I will close this thread, if you have any further issues, welcome to our forum, thank your for posting.
    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.

Maybe you are looking for

  • Time Delay when Initiating BPEL from Oracle ESB

    Hi there, I am currently working with a client who have an on-going integration project. They are using the BPEL and Oracle ESB components of the Oracle SOA Suite 10.1.3.3.1. There is an issue that periodically occurs. The scenario that we are occasi

  • PDF generation of existing PSP pages

    We have a web application that uses psp or mod_plsql to build dynamic web pages. We're wanting take this a step further and turn these pages into a pdf report or even an html file as a start which could then be converted to pdf with other tools. Has

  • Where is user name and password stored for database adapter

    dear all, does any body know where is the password stored in database adapters. I noticed it mentioned in wsdl file in encrypted format, but is there any other place it stored. a ) before deployment b) aftre deployment . Thanks in advance . Regards A

  • Selecting set no of records

    I have a report that is being grouped by a consultant name. I need to only interrogate the last 100 sales since the date the report is ran. I have listed all sales by consultant and ordered them so that the most recent sale appears at the top of the

  • How does columnSpan work? [JS][CC2014]

    Some background info: I'm using InDesign CC 2014 latest version I have a simple table set up: 6 columns by 5 rows I want to check if the first cell in the first row is merged, and if it isn't merged, merge the first 4 columns of the first row. So I w