Is Visual Studio Community a 30 day trial?

前端 未结 15 992
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 04:19

I installed the supposedly free VS Community 2017 on my PC and 30 days later I get this message from VS saying that my license has expired.

License? Expired? I thoug

相关标签:
15条回答
  • 2020-12-02 05:11

    No, Community edition is free, so just sign-in and rid the warning. For more detail please check following link.
    https://visualstudio.microsoft.com/vs/support/community-edition-expired-buy-license/

    0 讨论(0)
  • 2020-12-02 05:12

    A. Sign in if you are not signed in already.

    B. If signed in already, click the link Check for an updated license on the account settings page.

    C. "We could not download a license. Please ensure your accounts are authenticated." If this message is encountered, sign out and sign back in. You can either sign out by clicking on the Sign out link and then signing back in by clicking on the account icon in the upper right corner of Visual Studio. Or you can just click the link Reenter your credentials. This link is a good indication that your account is not synced up with Microsoft servers and the error message is right in that your account is not authenticated and the license cannot be refreshed.

    Once you have signed back in and your account is successfully authenticated, you will see that the "Reenter your credentials" link is gone. This is a good indicator that you can now go ahead and refresh the license. If it does not do that automatically you can click the Check for an updated license link once again. This time you will see a short confirmation message and your associated email address will be listed.

    Signing in is inevitable if you want to get rid of this annoying warning. But even if you have always been signed from day one, you may still run into this warning. Based on my experience, this may happen if you have recently changed the password for your account, or you have added 2FA (two step verification) to your account, or you have reset the recovery code for the account and with it the app passwords. It may also have to do with inactivity or the recent changes Microsoft has been making to the "sign in experience" for Microsoft accounts.

    Whatever the reason may be, signing in, or signing out and then signing back in again appears to be the best treatment for this annoyance.

    0 讨论(0)
  • 2020-12-02 05:14

    For VS2019 I was able to signup with my github account:

    Then it will send password to your email and you will be able to sign.

    0 讨论(0)
  • 2020-12-02 05:17

    Remember, if you are inside of private red with some proxy, you must be logout and relogin with an external WIFI for example.

    0 讨论(0)
  • 2020-12-02 05:19

    I'm using Visual Studio Professional licensed over the MAPS Action Pack subscription. Since the new version of the Microsoft Partner Center one have to add the subscribed user to the partner benefit software.

    Partner Center->Benefits->Visual Studio Subscriptions->Add user

    After that one have to sign out and reenter the credentials in the account settings of VS.

    0 讨论(0)
  • 2020-12-02 05:20

    For my case the problem was in fact that i broke machine.config and looks like VS couldn't have a connection I've added the following lines to my machine.config

    <!--
    <system.net>
     <defaultProxy>
      <proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
     </defaultProxy>
    </system.net>
    <!--
    -->
    

    After replacing the previous section to:

    <!--
    <system.net>
     <defaultProxy>
      <proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
     </defaultProxy>
    </system.net>
    -->
    

    VS started to work.

    0 讨论(0)
提交回复
热议问题