开发者论坛

 找回密码
 注册 (请使用非IE浏览器)
查看: 18877|回复: 5

Infragistics NetAdvantage Ultimate 2016.1

[复制链接]

0

精华

0

贡献

3

赞扬

帖子
5
软币
77
在线时间
3 小时
注册时间
2016-1-8
发表于 2016-5-6 09:58:01 | 显示全部楼层 |阅读模式
Infragistics NetAdvantage Ultimate 2016.1: http://dl.infragistics.com/produ ... hSamplesAndHelp.zip

Key:

9124-1500724-8577040
9124-1500307-2602450
9124-1500315-4157072
9124-1500639-8454367
9124-1500946-0855617
9124-1500124-8672428
9124-1500780-0421385
9124-1500899-7452335
9124-1500901-2254921

Use Any Of This.......

评分

参与人数 3赞扬 +3 收起 理由
raingoli + 1 感谢分享
yanghao_zsu + 1
cutelasty + 1 赞一个

查看全部评分

回复

使用道具 举报

0

精华

0

贡献

0

赞扬

帖子
13
软币
148
在线时间
8 小时
注册时间
2016-7-26
发表于 2016-7-28 09:20:30 | 显示全部楼层
Infragistics NetAdvantage Ultimate ok
回复

使用道具 举报

0

精华

500

贡献

243

赞扬

正版授权组

Rank: 14Rank: 14Rank: 14Rank: 14

帖子
240
软币
3754
在线时间
444 小时
注册时间
2014-1-3
发表于 2017-4-24 12:08:14 | 显示全部楼层
这个好,不知有没有更新的版本呢
回复

使用道具 举报

0

精华

0

贡献

0

赞扬

帖子
7
软币
152
在线时间
7 小时
注册时间
2015-4-30
发表于 2017-5-5 16:14:20 | 显示全部楼层
chiangson 发表于 2017-4-24 12:08
这个好,不知有没有更新的版本呢

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Infragistics_2016._2_Key
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Generate();
        }

        private void Generate()
        {
            string ProductCode = "91";
            int MajorVersion = 2016;
            int MinorVersion = 2;
            int VersionCode = ((MajorVersion - 2000) * 2) + MinorVersion - 9;

            Dictionary<string, int[]> dictMsk = new Dictionary<string, int[]>()
            {
                { "91", new int[] {40,14,22,10,11,10,13,20,11,12,10,23,15,23,15,14,13,24,14,11,22,18,11,10,21,20,20,23,22,20,15,24,17,21,20,20,23,23,10,21,14,12} },
                { "92", new int[] {23,21,33,13,23,10,14,13,17,12,29,33,12,23,10,14,13,12,38,11,21,14,12,19,10,13,12,23,32,13,17,14,12,15,14,20,24,24,11,12,10,14} }
            };
            
            string MskCode = dictMsk[ProductCode][VersionCode - 12].ToString("00");
            Random rnd = new Random();
            int nCount = 10;
            string strLog = nCount.ToString() + " LicenseKeys for " + MajorVersion.ToString() + "." + MinorVersion.ToString() + ": \r\n\r\n";
            for (int LV = 1; LV <= nCount; LV++)
            {
                string RandomValue = rnd.Next(111, 999).ToString();
                string LicenseKey = ProductCode + VersionCode.ToString("00") + MskCode + "00" + RandomValue;
                for (int k = 1; k <= 4; k++)
                {
                    long num = 0x1bL;
                    long num2 = 0x1fL;
                    long num4 = 0x31ddL;
                    long num5 = 0x178L;
                    for (int l = 0; l < LicenseKey.Length; l++)
                    {
                        long num3 = (long)LicenseKey[l];
                        num3 = (num3 * 3L) + num2;
                        num5 += num * (num3 * num3);
                        num2 = (long)LicenseKey[l];
                        num2 *= 3L;
                        num4 += num5;
                        num += 1L;
                        long[] value = new long[] { num5, num4, num4 };
                        int[] maximum = new int[] { 0xf423f, 0x1869f, 0x270f };
                        int[] factor = new int[] { 0xaa4c7, 0xe4c7, 0x270d };
                        for (int m = 0; m <= 2; m++)
                        {
                            if (value[m] > maximum[m])
                            {
                                long num11 = value[m] - maximum[m];
                                long num22 = num11 / ((long)factor[m]);
                                if ((num11 % ((long)factor[m])) != 0L)
                                { num22 += 1L; }
                                value[m] -= num22 * factor[m];
                            }
                            if (m == 0) num5 = value[0];
                            else
                            { num4 = value[m]; if (m == 1) value[2] = num4; }
                        }
                    }
                    LicenseKey = LicenseKey + ((char)((ushort)(0x30L + (((num4 + 1552) % 72) % 10L)))).ToString();
                    if (k < 4) LicenseKey = LicenseKey + rnd.Next(1, 9).ToString();
                }
                LicenseKey = LicenseKey.Insert(4, "-").Insert(12, "-");
                strLog = strLog + LicenseKey + "\r\n";
            }
            Clipboard.SetText(strLog);
            MessageBox.Show(nCount.ToString() + " LicenseKeys for " + MajorVersion.ToString() + "." + MinorVersion.ToString() + " copied to clipboard !");
        }
            
    }
}
回复

使用道具 举报

0

精华

18

贡献

3699

赞扬

帖子
100
软币
11284
在线时间
1572 小时
注册时间
2015-6-30
发表于 2017-5-19 13:28:49 | 显示全部楼层
本帖最后由 CyberUser 于 2017-6-10 21:38 编辑
chiangson 发表于 2017-4-24 12:08
这个好,不知有没有更新的版本呢

搬去:
Infragistics NetAdvantage Ultimate 2016.2
http://www.dxper.net/thread-9324-1-1.html


回复

使用道具 举报

Archiver|手机版|小黑屋|开发者网 ( 苏ICP备08004430号-2 )
版权所有:南京韵文教育信息咨询有限公司

GMT+8, 2024-4-24 13:46

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表