MSFN Forum: How to register BSplayer 1.02 Pro silently? - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

How to register BSplayer 1.02 Pro silently? Rate Topic: -----

#1 User is offline   Adiel 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 401
  • Joined: 04-August 04

Posted 08 October 2004 - 06:58 AM

Hi,

new version of BSPlayer got out - 1.02 Pro, i found a thread with correct silent

install switch, but was unable to find how to register silently during / after / before

the installation.. anyone know how to?

Thanks.


#2 User is offline   lieblingsbesuch 

  • Member
  • PipPip
  • Group: Members
  • Posts: 170
  • Joined: 29-June 04

Posted 08 October 2004 - 08:55 AM

hi,

what switch do u use? did you already test it?

#3 User is offline   heho66 

  • Group: Members
  • Posts: 3
  • Joined: 31-May 04

Posted 08 October 2004 - 08:58 AM

Once you registered bsplayer, there is a key.reg in the bsplayer directory. Copy it to the bsplayer directory after the silent install.

heho66

#4 User is offline   CoffeeFiend 

  • Coffee Aficionado
  • Group: Super Moderator
  • Posts: 5,260
  • Joined: 14-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 08 October 2004 - 09:19 AM

I'd like to know if it's tested and working on different PCs as it uses some sort of hardware id iirc. Right now I'm using autoit to open it and send the proper keystrokes to register it. It works (never glitched) but if this works fine (for more than the PC the license was created onto) then it would definately be a better option.

#5 User is offline   heho66 

  • Group: Members
  • Posts: 3
  • Joined: 31-May 04

Posted 09 October 2004 - 04:57 AM

It works only on the PC you registered bsplayer.

#6 User is offline   CoffeeFiend 

  • Coffee Aficionado
  • Group: Super Moderator
  • Posts: 5,260
  • Joined: 14-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 09 October 2004 - 02:52 PM

OK, then I'll stick to my method then... :}

Here's my simplistic way of doing it with AutoIt 3:

BSPlayer.au3
Run("C:\Program Files\Webteh\BSplayerPro\bsplayer.exe")

WinWaitActive("BSplayer")
Send("{F1}r")
Send("YourName{TAB}1234567890ABCDEF1234567890ABCDEF12345{TAB}{ENTER 2}")


Replace YourName with your user name and 1234567890ABCDEF1234567890ABCDEF12345 with your actual serial no (of course). It's never failed so far.

#7 User is offline   BoardBabe 

  • MSFN Expert
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,419
  • Joined: 04-October 04

Posted 10 October 2004 - 01:31 PM

Any way to make it work like

Run("%programfiles%\Webteh\BSplayerPro\bsplayer.exe")
?

#8 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 10 October 2004 - 02:15 PM

Program Files = Progra~1

#9 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 10 October 2004 - 02:23 PM

another way with vbs script
after you sillent install bsplayer

Quote

Set WshShell = WScript.CreateObject("WScript.Shell")
'To Simulate Keystrokes
WshShell.Run app & "C:\Progra~1\Webteh\BSplayerPro\bsplayer.exe"
WScript.Sleep 3000
WshShell.SendKeys "{F1}"
WScript.Sleep 100
WshShell.SendKeys "{R}"
WScript.Sleep 500
WshShell.SendKeys "name"
WScript.Sleep 500
WshShell.SendKeys "{TAB}"
WScript.Sleep 700
WshShell.SendKeys "serial"
WScript.Sleep 600
WshShell.SendKeys "{TAB}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.Sleep 500
WshShell.SendKeys "{ENTER}"
WScript.quit


#10 User is offline   BoardBabe 

  • MSFN Expert
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,419
  • Joined: 04-October 04

Posted 11 October 2004 - 09:34 AM

Tried with AutoIt 3, made the script and converted to exe. However this opened Windows Help as this is launched on F1, didnt wait for bsplayer to be "active".

#11 User is offline   CoffeeFiend 

  • Coffee Aficionado
  • Group: Super Moderator
  • Posts: 5,260
  • Joined: 14-July 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 11 October 2004 - 10:06 AM

That's odd, because WinWaitActive("BSplayer") does exactly that (make it wait). Unless you got a different window title (different language maybe?). And even then, it should be waiting forever instead of not waiting. It's always waited and sent proper keys for me :}

#12 User is offline   BoardBabe 

  • MSFN Expert
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,419
  • Joined: 04-October 04

Posted 12 October 2004 - 04:26 AM

Thats what i thought too, weird...

However if i launch just the .au3 it works perfectly!?
just not when i make it an exe

#13 User is offline   coucou 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 811
  • Joined: 01-January 04

Posted 18 April 2005 - 12:11 PM

NOT works neither as .au3 nor the .exe files

It gave error message
Send(& #34;MyName{TAB}1234567890ABCDEF1234567890ABCDEF1234{TAB}{ENTER 2}")
Send(& ^ERROR

Error: Unable to parse line.


TNX for yr help
coucou

#14 User is offline   coucou 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 811
  • Joined: 01-January 04

Posted 19 April 2005 - 07:36 AM

Here the solution from AutoIt Support. Replace & #34; with ".

In fact, & #34; is the ascii code of ". It generated by the MSFN editor text.

I tested on 2 PC's... working

coucou

#15 User is offline   Solid as a rock 

  • So solid as a rock is
  • PipPipPipPipPip
  • Group: Members
  • Posts: 718
  • Joined: 30-May 04

Posted 07 August 2006 - 05:31 PM

View Postcoucou, on Apr 19 2005, 02:36 PM, said:

Here the solution from AutoIt Support. Replace & #34; with ".

In fact, & #34; is the ascii code of ". It generated by the MSFN editor text.

I tested on 2 PC's... working

coucou

Thanks :thumbup

For other people to be clearer:

Run("C:\Progra~1\Webteh\BSplayerPro\bsplayer.exe")

WinWaitActive("BSplayer")
Send("{F1}r")
Send("YOURNAME{TAB}SERIAL{TAB}{ENTER 2}")


#16 User is offline   MGadAllah 

  • Brain Voice
  • PipPipPipPipPip
  • Group: Banned
  • Posts: 786
  • Joined: 03-January 06

Posted 07 August 2006 - 08:31 PM

http://www.msfn.org/board/index.php?s=&...st&p=521534

#17 User is offline   polera 

  • Group: Members
  • Posts: 4
  • Joined: 24-January 07

Posted 13 February 2007 - 08:25 PM

View Postmgadallah, on Aug 7 2006, 08:31 PM, said:



this dont upgrade the reg in the program, only the silent instalation

#18 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 13 February 2007 - 10:30 PM

check with F1 if it register or u dont have the right code.

#19 User is offline   polera 

  • Group: Members
  • Posts: 4
  • Joined: 24-January 07

Posted 15 February 2007 - 09:24 PM

i trying this, but, press f1 and dont stay the reg information, then i trying crahak method and this work but when finish de install the program open the reg window, i close this window and automatically start again the same window (f1) and in this moment enter silenty the reg, but i have close the first window for run the crahak method silent

PS: sorry my english i speak spanish

#20 User is offline   --=ddSHADOW=-- 

  • --=ddSHADOW=--
  • PipPip
  • Group: Members
  • Posts: 209
  • Joined: 08-August 04

Posted 16 February 2007 - 08:26 AM

try to change next
;Close Bsplayer
ProcessWait("Bsplayer.exe")
Sleep(5000)
ProcessClose("Bsplayer.exe")
Exit


Sleep(5000) to Sleep(10000)

whats your computer specification (CPU,RAM)

This post has been edited by --=ddSHADOW=--: 16 February 2007 - 08:26 AM


Share this topic:


  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy