Visual Studio 2013 License
-
Nice to see that the license manager on VS 2013 lives up to expectations. I regularly get the following error when firing up Visual Studio This license will expire in 2147483647 days. Your license has gone stale and must be updated. Ah good, so it isn't expiring anytime soon then :doh: Clicking the "Check for an updated license" clears it for another month (or however long it is until it reappears again). Think they forgot to do some testing around that feature...
Dave Find Me On: Web|Facebook|Twitter|LinkedIn|GitHub
Folding Stats: Team CodeProject
-
Nice to see that the license manager on VS 2013 lives up to expectations. I regularly get the following error when firing up Visual Studio This license will expire in 2147483647 days. Your license has gone stale and must be updated. Ah good, so it isn't expiring anytime soon then :doh: Clicking the "Check for an updated license" clears it for another month (or however long it is until it reappears again). Think they forgot to do some testing around that feature...
Dave Find Me On: Web|Facebook|Twitter|LinkedIn|GitHub
Folding Stats: Team CodeProject
Try to contact Soma Somasegar :). "Tat is wat we all been tinking abot!" (© 2012 Soma Somasegar). Sorry for the bad spelling in the quote, but I've been trying to express his accent (I kinda like it). Here is the video http://channel9.msdn.com/Events/Visual-Studio/Visual-Studio-Live/Soma-Somasegar-Visual-Studio-2012-Launch[^] by the way (it's about Visual Studio 2012, but nevertheless).
lifecycle of a lifecycle of a lifecycle
-
Nice to see that the license manager on VS 2013 lives up to expectations. I regularly get the following error when firing up Visual Studio This license will expire in 2147483647 days. Your license has gone stale and must be updated. Ah good, so it isn't expiring anytime soon then :doh: Clicking the "Check for an updated license" clears it for another month (or however long it is until it reappears again). Think they forgot to do some testing around that feature...
Dave Find Me On: Web|Facebook|Twitter|LinkedIn|GitHub
Folding Stats: Team CodeProject
That's because you are not logged in to your MSDN account... (top-right corner under the title bar). The funny thing that we have a corporate license - so we all logged in with the same user...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
-
That's because you are not logged in to your MSDN account... (top-right corner under the title bar). The funny thing that we have a corporate license - so we all logged in with the same user...
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
-
Be careful! They will fix it to -1!!!
I'm not questioning your powers of observation; I'm merely remarking upon the paradox of asking a masked man who he is. (V)
-
Nice to see that the license manager on VS 2013 lives up to expectations. I regularly get the following error when firing up Visual Studio This license will expire in 2147483647 days. Your license has gone stale and must be updated. Ah good, so it isn't expiring anytime soon then :doh: Clicking the "Check for an updated license" clears it for another month (or however long it is until it reappears again). Think they forgot to do some testing around that feature...
Dave Find Me On: Web|Facebook|Twitter|LinkedIn|GitHub
Folding Stats: Team CodeProject
2147483647, thats 2 ^ (32-1) -1, I wonder what the significance of that is! :laugh:
PB 369,783 wrote:
I just find him very unlikeable, and I think the way he looks like a prettier version of his Mum is very disturbing.[^]
-
Nice to see that the license manager on VS 2013 lives up to expectations. I regularly get the following error when firing up Visual Studio This license will expire in 2147483647 days. Your license has gone stale and must be updated. Ah good, so it isn't expiring anytime soon then :doh: Clicking the "Check for an updated license" clears it for another month (or however long it is until it reappears again). Think they forgot to do some testing around that feature...
Dave Find Me On: Web|Facebook|Twitter|LinkedIn|GitHub
Folding Stats: Team CodeProject
int daysToExpire = Int32.MaxValue; //Ensure never expires.
try {
DateTime expiryDate = GetExpiryDate();
daysToExpire = expiryDate - DateTime.Today;
}
catch {
//Shhhhhhh................ Don't tell anyone that we could not infer the expiry date
}MessageBox.Show(string.Format("This license will expire in {0} days.", daysToExpire));
-
2147483647, thats 2 ^ (32-1) -1, I wonder what the significance of that is! :laugh:
PB 369,783 wrote:
I just find him very unlikeable, and I think the way he looks like a prettier version of his Mum is very disturbing.[^]
-
There may have been a small amount of sarcasm in that statement. Source: I'm British.
PB 369,783 wrote:
I just find him very unlikeable, and I think the way he looks like a prettier version of his Mum is very disturbing.[^]
-
There may have been a small amount of sarcasm in that statement. Source: I'm British.
PB 369,783 wrote:
I just find him very unlikeable, and I think the way he looks like a prettier version of his Mum is very disturbing.[^]
-
Nice to see that the license manager on VS 2013 lives up to expectations. I regularly get the following error when firing up Visual Studio This license will expire in 2147483647 days. Your license has gone stale and must be updated. Ah good, so it isn't expiring anytime soon then :doh: Clicking the "Check for an updated license" clears it for another month (or however long it is until it reappears again). Think they forgot to do some testing around that feature...
Dave Find Me On: Web|Facebook|Twitter|LinkedIn|GitHub
Folding Stats: Team CodeProject
-
Use your MSDN account to get a product code, enter that instead of renewing the license. End of problem.
We can program with only 1's, but if all you've got are zeros, you've got nothing.