Forum Discussion

buraktas's avatar
buraktas
Frequent Visitor
1 year ago
Solved

Connect-PowerBIServiceAccount gets stuck without any error

Hey there, I have a powershell script that setups a DataGateway where I need to connect with `Connect-DataGatewayServiceAccount`. Later on, I have to run `Connect-PowerBIServiceAccount` to create a DataSource which always gets stuck. There is no any error. I suspect that the reason is using two Connect commands within the same session. Because if I first execute Connect-PowerBIServiceAccount then it works. Do you have any thoughts on this? I appreciate for the help. Thanks!

  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi, buraktas 
    Thanks for reaching out to the Microsoft fabric community forum.

     

    Based on my testing, your findings are indeed accurate. After successfully executing Connect-DataGatewayServiceAccount, followed by Connect-PowerBIServiceAccount, there is no occurrence of public cloud user authentication. The conflict may arise due to the use of two different connection commands within the same PowerShell session, which might share certain session states or resources, leading to the conflict.

    Below are my test screenshots:

     

    From my testing, the most effective solution currently is to split your code into two parts and execute them in separate session windows. Here are my test results:

    For further details, please refer to:

    Connect-PowerBIServiceAccount (MicrosoftPowerBIMgmt.Profile) | Microsoft Learn
    Connect-DataGatewayServiceAccount (DataGateway.Profile) | Microsoft Learn

    Of course, if you have any new discoveries or questions, please feel free to get in touch with us.
     

    Best Regards,

    Leroy Lu

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
     

3 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi, buraktas 
    Thanks for reaching out to the Microsoft fabric community forum.

     

    Based on my testing, your findings are indeed accurate. After successfully executing Connect-DataGatewayServiceAccount, followed by Connect-PowerBIServiceAccount, there is no occurrence of public cloud user authentication. The conflict may arise due to the use of two different connection commands within the same PowerShell session, which might share certain session states or resources, leading to the conflict.

    Below are my test screenshots:

     

    From my testing, the most effective solution currently is to split your code into two parts and execute them in separate session windows. Here are my test results:

    For further details, please refer to:

    Connect-PowerBIServiceAccount (MicrosoftPowerBIMgmt.Profile) | Microsoft Learn
    Connect-DataGatewayServiceAccount (DataGateway.Profile) | Microsoft Learn

    Of course, if you have any new discoveries or questions, please feel free to get in touch with us.
     

    Best Regards,

    Leroy Lu

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
     

  • buraktas's avatar
    buraktas
    Frequent Visitor

    I used separate sessions by running one as a background job which did the trick.

  • buraktas's avatar
    buraktas
    Frequent Visitor

    Hey Anonymous , thanks a lot for confirming it from your side as well. It is glad to see that my assumption wasn't wrong. I will try to separate my script into two parts as suggested, and test it that way.