INTERACT FORUM

Please login or register.

Login with username, password and session length
Advanced search  
Pages: [1]   Go Down

Author Topic: Connected Media: How to Transfer to another PC?  (Read 2336 times)

AoXoMoXoA

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1551
  • I am a kangaroo . . . . no, really!
Connected Media: How to Transfer to another PC?
« on: November 21, 2011, 09:08:20 am »

I have added quite a number of websites under Connected Media in both Audio and Video. I'd like to add these to an MC installed on another computer without having to manually add each one by one.

I thought the Connected Media might follow in a Library Restore, but these 2 machines do not share a common library.

Is there a way I can 'package' these so they can be imported into another installation of MC on a different PC? I can't seem to export them as a Playlist.

thanks
Logged
. . . the game is rigged

AoXoMoXoA

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1551
  • I am a kangaroo . . . . no, really!
Re: Connected Media: How to Transfer to another PC?
« Reply #1 on: November 26, 2011, 02:53:57 pm »

bimp   ;D
Logged
. . . the game is rigged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: Connected Media: How to Transfer to another PC?
« Reply #2 on: November 27, 2011, 12:45:36 am »

you find "web media" in the registry : HKEY_CURRENT_USER\Software\JRiver\Media Center 1x\Properties
Logged
MT5FR

AoXoMoXoA

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1551
  • I am a kangaroo . . . . no, really!
Re: Connected Media: How to Transfer to another PC?
« Reply #3 on: November 27, 2011, 08:24:32 am »

Thank you for the assistance.

Unfortunately I cannot find it in the Registry under that heading/address.  Actually it is not there under MC16 or MC17.   ?
Logged
. . . the game is rigged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: Connected Media: How to Transfer to another PC?
« Reply #4 on: November 27, 2011, 08:51:40 am »

checked the root ?

i run xp, maybe win7 has another tree structure ?
Logged
MT5FR

mbagge

  • Galactic Citizen
  • ****
  • Posts: 255
Re: Connected Media: How to Transfer to another PC?
« Reply #5 on: November 27, 2011, 08:55:57 am »

In Windows 7 it hides in HKEY_CURRENT_USER\Software\JRiver\Media Center 17\Properties
Logged

AoXoMoXoA

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1551
  • I am a kangaroo . . . . no, really!
Re: Connected Media: How to Transfer to another PC?
« Reply #6 on: November 27, 2011, 09:15:52 am »

OK found it . . . forgot to mention Win7

Anyway, the Web Media is nested among all the other settings so I have no idea how to extract these in a way that they can be inserted into another install as a group.

Anyone have a clue?
Logged
. . . the game is rigged

mbagge

  • Galactic Citizen
  • ****
  • Posts: 255
Re: Connected Media: How to Transfer to another PC?
« Reply #7 on: November 27, 2011, 09:26:48 am »

Is the export function in Regedit.exe what you are looking for ? You can export the entire HKEY_CURRENT_USER\Software\JRiver\Media Center 17\Properties\WebMedia branch and import it elswhere.
Logged

AoXoMoXoA

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1551
  • I am a kangaroo . . . . no, really!
Re: Connected Media: How to Transfer to another PC?
« Reply #8 on: November 27, 2011, 09:58:41 am »

Is the export function in Regedit.exe what you are looking for ? You can export the entire HKEY_CURRENT_USER\Software\JRiver\Media Center 17\Properties\WebMedia branch and import it elswhere.

Yes, except that the Web Media branch contains only Netflix (which I do not use).

All my other entries are located in the general Properties root folder in the list of other settings, not within a specific Web Media folder. I could export that but it contains too many settings which I may not wish to restore/add/change into another install location.

Perhaps I did something in error in my method of how I added them for them to wind up there?
Logged
. . . the game is rigged

Lasse_Lus

  • Citizen of the Universe
  • *****
  • Posts: 999
Re: Connected Media: How to Transfer to another PC?
« Reply #9 on: November 27, 2011, 04:34:37 pm »

AoXoMoXoA, use a shovel  ;)

copy & paste + a decent text editor and you will success..
Logged
MT5FR

AoXoMoXoA

  • Regular Member
  • Citizen of the Universe
  • *****
  • Posts: 1551
  • I am a kangaroo . . . . no, really!
Re: Connected Media: How to Transfer to another PC?
« Reply #10 on: November 27, 2011, 04:45:12 pm »

a shovel eh? Then so be it.   :)
Logged
. . . the game is rigged

mbagge

  • Galactic Citizen
  • ****
  • Posts: 255
Re: Connected Media: How to Transfer to another PC?
« Reply #11 on: November 27, 2011, 05:21:24 pm »

Are you into Powershell ?

You could try:
Code: [Select]
write-host "Windows Registry Editor Version 5.00"
write-host ""
write-host "[HKEY_CURRENT_USER\Software\JRiver\Media Center 17\Properties]"

$Keys = get-itemproperty "HKCU:\Software\JRiver\Media Center 17\Properties" | gm -name "Web Media*"
foreach ($key in $keys) {
  $KeyType = $Key.Definition.Split()[0]
  $KeyValue = $Key.Definition.Split("=",2)[1]
  if ($KeyType -match "System.Int32") {$KeyValue1 = "dword:" + $KeyValue.padleft(8,"0")}
  if ($KeyType -match "System.String") {$KeyValue1 = '"' + $KeyValue + '"'}
  $regKey = '"' + $Key.Name + '"=' + $KeyValue1
  write-host $RegKey
}
write-host ""

You might have to invoke Powershell as administrator and run this command: Set-ExecutionPolicy unrestricted
And reset when you finish with: Set-ExecutionPolicy restricted

Then save the output as an .reg file and run it at your own risc  ;)
Logged
Pages: [1]   Go Up