Exetools  

Go Back   Exetools > General > General Discussion

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 07-12-2015, 03:00
giv's Avatar
giv giv is offline
VIP
 
Join Date: Jan 2011
Location: Romania
Posts: 1,657
Rept. Given: 801
Rept. Rcvd 1,283 Times in 561 Posts
Thanks Given: 226
Thanks Rcvd at 562 Times in 240 Posts
giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299
Screen2SWF is free now

The famous screen recording software is free now;
Quote:
http://www.screen-record.com/dl/SCRSWFSetup.exe
Reply With Quote
The Following User Gave Reputation+1 to giv For This Useful Post:
niculaita (07-13-2015)
The Following 7 Users Say Thank You to giv For This Useful Post:
Black_Legion (10-19-2015), chessgod101 (07-12-2015), Kjacky (07-12-2015), ontryit (07-14-2015), the_beginner (07-12-2015), tK! (07-13-2015), uranus64 (07-12-2015)
  #2  
Old 10-09-2015, 04:15
niculaita's Avatar
niculaita niculaita is offline
Family
 
Join Date: Jun 2011
Location: here
Posts: 1,344
Rept. Given: 948
Rept. Rcvd 89 Times in 61 Posts
Thanks Given: 4,333
Thanks Rcvd at 479 Times in 338 Posts
niculaita Reputation: 89
screen anytime v4.7

any solution for this 60 trial days ?

http://www.screen-record.com/screen_anytime.htm

http://www.screen-record.com/dl/SASetup.exe
Reply With Quote
  #3  
Old 10-11-2015, 22:57
niculaita's Avatar
niculaita niculaita is offline
Family
 
Join Date: Jun 2011
Location: here
Posts: 1,344
Rept. Given: 948
Rept. Rcvd 89 Times in 61 Posts
Thanks Given: 4,333
Thanks Rcvd at 479 Times in 338 Posts
niculaita Reputation: 89
http://www.instant-screen-capture.com/index.html
http://www.instant-screen-capture.com/download.html
15 days trial
Reply With Quote
  #4  
Old 10-19-2015, 01:10
Black_Legion Black_Legion is offline
Friend
 
Join Date: May 2013
Posts: 22
Rept. Given: 7
Rept. Rcvd 5 Times in 4 Posts
Thanks Given: 40
Thanks Rcvd at 13 Times in 9 Posts
Black_Legion Reputation: 5
Wink

Quote:
Originally Posted by niculaita View Post
http://www.instant-screen-capture.com/index.html
http://www.instant-screen-capture.com/download.html
15 days trial
Code:
Serial: 4611
Name: [any]
Keygen hint: any 4digit number which first and second digits are not odd and none of them are zero
and remaining of summation of 1st and 2nd and 3rd digits divide by 10 should be equal to 4th digit
Reply With Quote
The Following 2 Users Gave Reputation+1 to Black_Legion For This Useful Post:
niculaita (10-19-2015), uranus64 (10-19-2015)
The Following 2 Users Say Thank You to Black_Legion For This Useful Post:
niculaita (10-19-2015), ontryit (10-19-2015)
  #5  
Old 10-19-2015, 06:16
wassim_ wassim_ is offline
Friend
 
Join Date: Nov 2002
Posts: 104
Rept. Given: 1
Rept. Rcvd 1 Time in 1 Post
Thanks Given: 14
Thanks Rcvd at 10 Times in 4 Posts
wassim_ Reputation: 2
credit goes to black legion...

this is just a translation of the algo he described and an easy way to generate serials fulfiling the requirements.

http://js.do/code/exetools
Reply With Quote
The Following 4 Users Say Thank You to wassim_ For This Useful Post:
Black_Legion (10-19-2015), daqstar (10-22-2015), ontryit (10-19-2015), uranus64 (10-19-2015)
  #6  
Old 10-19-2015, 15:02
ontryit ontryit is offline
Friend
 
Join Date: Nov 2011
Posts: 172
Rept. Given: 127
Rept. Rcvd 17 Times in 14 Posts
Thanks Given: 411
Thanks Rcvd at 70 Times in 43 Posts
ontryit Reputation: 17
Lightbulb Keygen for SPX Instant Screen Capture v7.0.0.0

SPX Instant Screen Capture v7.0.0.0

Homepage : http://www.instant-screen-capture.com
Download : http://www.instant-screen-capture.com/spxsetup.exe

Keygen coded with Delphi 7 - D10 (works)

Code:
function GenerateSN: string;
const
  EvenNum : array[0..3] of byte = (2, 4, 6, 8);
  OddNum : array[0..4] of byte = (1, 3, 5, 7, 9);
var
  FirstNum, SecondNum, ThirdNum, FourNum: byte;
  SN: string;
begin
  FirstNum := EvenNum[Round(Random * 3)];
  SecondNum := EvenNum[Round(Random * 3)];
  ThirdNum := OddNum[Round(Random * 4)];
  FourNum := (FirstNum + SecondNum + ThirdNum) mod 10;
  SN := IntToStr(FirstNum) + IntToStr(SecondNum) + IntToStr(ThirdNum) + IntToStr(FourNum);
  Result := SN;
end;
The correct serial no will save in "config.dat" file on %USERPROFILE%\AppData\Local\SPX

Last edited by ontryit; 10-19-2015 at 15:09. Reason: fix code
Reply With Quote
The Following 2 Users Say Thank You to ontryit For This Useful Post:
Black_Legion (10-19-2015), giv (10-19-2015)
  #7  
Old 10-19-2015, 16:48
giv's Avatar
giv giv is offline
VIP
 
Join Date: Jan 2011
Location: Romania
Posts: 1,657
Rept. Given: 801
Rept. Rcvd 1,283 Times in 561 Posts
Thanks Given: 226
Thanks Rcvd at 562 Times in 240 Posts
giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299 giv Reputation: 1100-1299
Thank you but is not easyer to use ALT+Print Scrn instead of use this software?
Reply With Quote
The Following User Says Thank You to giv For This Useful Post:
ontryit (10-19-2015)
  #8  
Old 10-20-2015, 00:31
niculaita's Avatar
niculaita niculaita is offline
Family
 
Join Date: Jun 2011
Location: here
Posts: 1,344
Rept. Given: 948
Rept. Rcvd 89 Times in 61 Posts
Thanks Given: 4,333
Thanks Rcvd at 479 Times in 338 Posts
niculaita Reputation: 89
some videos online sites can not be captured as screen shot when video is paused
and after Print screen and Paste in mspaint.exe windows is black. so I was looking for
an other way to save an shot from movie.
Reply With Quote
  #9  
Old 10-21-2015, 01:21
Black_Legion Black_Legion is offline
Friend
 
Join Date: May 2013
Posts: 22
Rept. Given: 7
Rept. Rcvd 5 Times in 4 Posts
Thanks Given: 40
Thanks Rcvd at 13 Times in 9 Posts
Black_Legion Reputation: 5
Wink

Quote:
Originally Posted by niculaita View Post
any solution for this 60 trial days ?

http://www.screen-record.com/screen_anytime.htm

http://www.screen-record.com/dl/SASetup.exe
- removed nag screen
- bypassed 60 days checking jump

please check and report any problem
Attached Files
File Type: txt ScreenAnytime47.v0.1.txt (68 Bytes, 5 views)
Reply With Quote
The Following User Says Thank You to Black_Legion For This Useful Post:
niculaita (10-21-2015)
  #10  
Old 10-21-2015, 01:57
niculaita's Avatar
niculaita niculaita is offline
Family
 
Join Date: Jun 2011
Location: here
Posts: 1,344
Rept. Given: 948
Rept. Rcvd 89 Times in 61 Posts
Thanks Given: 4,333
Thanks Rcvd at 479 Times in 338 Posts
niculaita Reputation: 89
I replaced files and try to run exe, but soft does not work
it is made for win x64 bits ? with CFF explorer I seen in your patched Portable Executable 64

This app can't run on your PC

To find a version for your PC, check with software publisher.

I have win 10 x86. Please download and also make solution for x86 32 bits

Last edited by niculaita; 10-21-2015 at 02:16.
Reply With Quote
  #11  
Old 10-21-2015, 05:29
Black_Legion Black_Legion is offline
Friend
 
Join Date: May 2013
Posts: 22
Rept. Given: 7
Rept. Rcvd 5 Times in 4 Posts
Thanks Given: 40
Thanks Rcvd at 13 Times in 9 Posts
Black_Legion Reputation: 5
Quote:
Originally Posted by niculaita View Post
I replaced files and try to run exe, but soft does not work
it is made for win x64 bits ? with CFF explorer I seen in your patched Portable Executable 64

This app can't run on your PC

To find a version for your PC, check with software publisher.

I have win 10 x86. Please download and also make solution for x86 32 bits
I just downloaded the SASetup.exe and installed that. no 32 bit setup or 64 bt has been placed in the site.
you mean that 32bit version will be installed when setup runs on windows x86?
Reply With Quote
  #12  
Old 10-21-2015, 10:02
ontryit ontryit is offline
Friend
 
Join Date: Nov 2011
Posts: 172
Rept. Given: 127
Rept. Rcvd 17 Times in 14 Posts
Thanks Given: 411
Thanks Rcvd at 70 Times in 43 Posts
ontryit Reputation: 17
Quote:
Originally Posted by Black_Legion View Post
I just downloaded the SASetup.exe and installed that. no 32 bit setup or 64 bt has been placed in the site.
you mean that 32bit version will be installed when setup runs on windows x86?
Yes, the setup was detect the platform architecture and installed the suitable version for that platform. You should install it on Windows x86 to works with version x86 vice versa.

Btw, can you post your attachment outside this forum because i have no access to download it. TIA

//ontryit
Reply With Quote
The Following User Says Thank You to ontryit For This Useful Post:
Black_Legion (10-22-2015)
  #13  
Old 10-21-2015, 20:55
Black_Legion Black_Legion is offline
Friend
 
Join Date: May 2013
Posts: 22
Rept. Given: 7
Rept. Rcvd 5 Times in 4 Posts
Thanks Given: 40
Thanks Rcvd at 13 Times in 9 Posts
Black_Legion Reputation: 5
Screen Anytime v4.7

Screen Anytime v4.7
- 32bit and 64bit
- removed nag screen
- bypassed 60 days checking jump

please check and report any problem

Code:
32bit:
http://www65.zippyshare.com/v/P9RLbHVd/file.html
pass: exetools.com
Code:
64bit:
http://www65.zippyshare.com/v/NffYH3Ra/file.html
pass: exetools.com
Reply With Quote
The Following User Gave Reputation+1 to Black_Legion For This Useful Post:
niculaita (10-21-2015)
The Following 2 Users Say Thank You to Black_Legion For This Useful Post:
niculaita (10-21-2015), ontryit (10-22-2015)
  #14  
Old 10-23-2015, 00:12
daqstar's Avatar
daqstar daqstar is offline
Family
 
Join Date: Jun 2006
Posts: 97
Rept. Given: 34
Rept. Rcvd 59 Times in 22 Posts
Thanks Given: 37
Thanks Rcvd at 31 Times in 17 Posts
daqstar Reputation: 59
Just a translation, yes, but the Keygen's algorithm requires that the 3rd digit be odd!

Quote:
Originally Posted by wassim_ View Post
credit goes to black legion...

this is just a translation of the algo he described and an easy way to generate serials fulfiling the requirements.

http://js.do/code/exetools
__________________
0z0n3
Reply With Quote
  #15  
Old 10-23-2015, 01:44
daqstar's Avatar
daqstar daqstar is offline
Family
 
Join Date: Jun 2006
Posts: 97
Rept. Given: 34
Rept. Rcvd 59 Times in 22 Posts
Thanks Given: 37
Thanks Rcvd at 31 Times in 17 Posts
daqstar Reputation: 59
JavaScript Keygen Fixed

__________________
0z0n3
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



All times are GMT +8. The time now is 03:31.


Always Your Best Friend: Aaron, JMI, ahmadmansoor, ZeNiX, chessgod101
( 1998 - 2024 )