Skip to content

Commit

Permalink
Updated installer
Browse files Browse the repository at this point in the history
  • Loading branch information
binarymaster committed Nov 13, 2014
1 parent bca7e90 commit c146bb8
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
Binary file modified bin/RDPWInst.exe
Binary file not shown.
17 changes: 15 additions & 2 deletions src-installer/RDPWInst.dpr
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,10 @@ begin
SuppLvl := 2;
if (FV.Release = 6002) and (FV.Build = 18005) then
SuppLvl := 2;
if (FV.Release = 6002) and (FV.Build = 19214) then
SuppLvl := 2;
if (FV.Release = 6002) and (FV.Build = 23521) then
SuppLvl := 2;
end;
if (FV.Version.w.Major = 6) and (FV.Version.w.Minor = 1) then begin
SuppLvl := 1;
Expand All @@ -699,6 +703,10 @@ begin
SuppLvl := 2;
if (FV.Release = 7601) and (FV.Build = 22750) then
SuppLvl := 2;
if (FV.Release = 7601) and (FV.Build = 18637) then
SuppLvl := 2;
if (FV.Release = 7601) and (FV.Build = 22843) then
SuppLvl := 2;
end;
if (FV.Version.w.Major = 6) and (FV.Version.w.Minor = 2) then begin
if (FV.Release = 8102) and (FV.Build = 0) then
Expand All @@ -725,17 +733,22 @@ begin
if (FV.Version.w.Major = 6) and (FV.Version.w.Minor = 4) then begin
if (FV.Release = 9841) and (FV.Build = 0) then
SuppLvl := 2;
if (FV.Release = 9860) and (FV.Build = 0) then
SuppLvl := 2;
end;
case SuppLvl of
0: begin
Writeln('[!] This version of Terminal Services is not supported.');
Writeln('[-] This version of Terminal Services is not supported.');
Writeln('Send your termsrv.dll to project developer for support.');
end;
1: begin
Writeln('[!] This version of Terminal Services is supported partially.');
Writeln('It means you may have some limitations such as only 2 concurrent sessions.');
Writeln('Send your termsrv.dll to project developer for adding full support.');
end;
2: begin
Writeln('[+] This version of Terminal Services is fully supported.');
end;
end;
end;

Expand Down Expand Up @@ -868,7 +881,7 @@ end;
var
I: Integer;
begin
Writeln('RDP Wrapper Library v1.3');
Writeln('RDP Wrapper Library v1.4');
Writeln('Installer v2.2');
Writeln('Copyright (C) Stas''M Corp. 2014');
Writeln('');
Expand Down
Binary file modified src-installer/resource.res
Binary file not shown.

0 comments on commit c146bb8

Please sign in to comment.