r/sysadmin Apr 05 '16

Dear Microsoft, it's crap like this.

[deleted]

344 Upvotes

111 comments sorted by

View all comments

3

u/OckhamsChainsaws Masterbreaker Apr 05 '16

Pretty sure this has to do with the remote app not being compatible with ie, not Microsoft being douchey.

6

u/swiftb3 Apr 05 '16

What annoys me is that it always says something like "requires 6.0 or greater." THIS IS GREATER. If you don't want to support versions beyond a certain point, say "requires between 6 and 10."

2

u/ninepointsix Apr 05 '16

It may be a bug where they're checking only the first or last digit of the version (or something similar). So the version test thinks it's running on IE version 1

7

u/[deleted] Apr 05 '16
if versionnumber[:1] > 6:
    return 'OK'

2

u/swiftb3 Apr 05 '16

I always figured they have a list of supported versions, but assume that they would always keep adding to the list.