Comments on: iTunes 7 https://www.krunk4ever.com/blog/2006/09/14/itunes-7/ After eliminating all other possibilities, the one remaining-no matter how unlikely-must be the truth. Mon, 02 Oct 2006 20:31:22 +0000 hourly 1 https://wordpress.org/?v=6.1.9 By: Krunk https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-10374 Mon, 02 Oct 2006 20:31:22 +0000 http://www.krunk4ever.com/blog/?p=717#comment-10374 With iTunes 7.0.1 (the new update), I was able to launch iTunes through RDP and have the audio brought to current computer.

Guess they fixed it after so much complaints.

//krunk (^_^x)

]]>
By: Krunk https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-9046 Sat, 23 Sep 2006 05:53:03 +0000 http://www.krunk4ever.com/blog/?p=717#comment-9046 Actually now that I understand your problem, you don’t need to go through all that trouble. When you start mstsc, click on Options>>

Goto “Local Resources” tab
And under “Remote computer sound”, change from “Bring to this computer” to “Leave at remote computer”

With this setting, I was able to start iTunes remotely and play music w/o any problems.

//krunk (^_^x)

]]>
By: Krunk https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-9038 Sat, 23 Sep 2006 00:49:09 +0000 http://www.krunk4ever.com/blog/?p=717#comment-9038 Haha! Yah, I’ve confirmed that audio through TS isn’t working. It’s a completely different beast than what you want to do. iTunes still plays, but no audio coming out from my end.

I do have an iPod, 2 in fact. An 3rd Gen iPod 15GB and an 1st Gen iPod Nano 4GB. I do carry it with me, but my home library is just so much easier since I TS home anyway already. No need to take out the iPod and put on earphones.

//krunk (^_^x)

]]>
By: Chris Wiltshire https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-8994 Fri, 22 Sep 2006 12:54:45 +0000 http://www.krunk4ever.com/blog/?p=717#comment-8994 Oh, I just re-read your recent response to my earlier message, you’re trying to push audio through TS?? I’ve never heard of this being done before… Sorry, out needs / setups are different.

Mines all about iTunes 7 running on an XP Media Center PC, running TS for remote access into it. I was having the same problems launching iTunes over a TS session. Sounds like you want to listen to your music at work?? – Why not buy an iPod? – 🙂 – They rock. 🙂

Over and out, sorry for all of the irrelevant responses. I’ll leave you in peace.

]]>
By: Chris Wiltshire https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-8993 Fri, 22 Sep 2006 12:51:54 +0000 http://www.krunk4ever.com/blog/?p=717#comment-8993 Yo.. more news.. It’s all working… Here’s the overview ::

– TweakUI set to login on bootup.
– New .js script file which I’ve been hacking around with shortcut copied into the Startup Program group which spawns and plays ITunes:

—- SNIP —-
/*
File: iTunesCMD.js
*/

var iTunesApp = WScript.CreateObject(“iTunes.Application”);

if(WScript.Arguments.length == 1){
if ( WScript.Arguments(0) == “play” || WScript.Arguments(0) == “PLAY”){
iTunesApp.play();
} else if (WScript.Arguments(0) == “pause” || WScript.Arguments(0) == “PAUSE”) {
iTunesApp.pause();
} else if (WScript.Arguments(0) == “stop” || WScript.Arguments(0) == “STOP”) {
iTunesApp.stop();
} else if (WScript.Arguments(0) == “next” || WScript.Arguments(0) == “NEXT”) {
iTunesApp.nexttrack();
} else if (WScript.Arguments(0) == “previous” || WScript.Arguments(0) == “PREVIOUS”) {
iTunesApp.previoustrack();
} else if (WScript.Arguments(0) == “voldown” || WScript.Arguments(0) == “VOLDOWN”) {
iTunesApp.SoundVolume = iTunesApp.SoundVolume – 25;
} else if (WScript.Arguments(0) == “volup” || WScript.Arguments(0) == “VOLUP”) {
iTunesApp.SoundVolume = iTunesApp.SoundVolume + 25;
} else if (WScript.Arguments(0) == “loud” || WScript.Arguments(0) == “LOUD”) {
iTunesApp.SoundVolume = 100;
} else if (WScript.Arguments(0) == “mute” || WScript.Arguments(0) == “MUTE”) {
iTunesApp.Mute = true;
} else if (WScript.Arguments(0) == “unmute” || WScript.Arguments(0) == “UNMUTE”) {
iTunesApp.Mute = false;
/* } else if (WScript.Arguments(0) == “shuffle” || WScript.Arguments(0) == “SHUFFLE”) {
var ThisPlayList = iTunesApp.CurrentPlaylist;
ThisPlayList.Print();
if( ThisPlayList.CanSetShuffle == true ){
if( ThisPlayList.Shuffle == true ) { ThisPlayList.Shuffle = false; } else {ThisPlayList.Shuffle = false;}
} */
} else if (WScript.Arguments(0) == “close” || WScript.Arguments(0) == “CLOSE”) {
iTunesApp.quit();
} else {
evaluate(‘iTunes.’+ WScript.Arguments(0) + ‘();’);
}
} else {
iTunesApp.playpause();
}
// I didn’t get the shuffle part working yet.. so it’s commented for now…
— SNIP —

– Next step was to put a light weight FTP server running on the XP Media Center box, which allows me to send ‘Quote Site Exec’ commands through, and spawn CMD /C iTunesCMD.js XXXX’ — passing in the XXXX command I want. = Fully self spawning, remotely controlable Itunes machine..

Oh, and yes, once iTunes loads (without you having an active TS session), you can fully use iTunes with audio output via TS, it’s only the loading which needs to occur in an unattended mode. 🙂

]]>
By: Chris Wiltshire https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-8979 Fri, 22 Sep 2006 10:15:45 +0000 http://www.krunk4ever.com/blog/?p=717#comment-8979 Yep, this works. 🙂 – You can play with Itunes scripts interface too if you want to start Itunes and get it to play your library onload (from the startup of your machine). I do this to allow for unattended continuous playback into my sound system.

Then to be more selective, I use my current laptop over WIFI to control Itunes etc..

]]>
By: Krunk https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-8977 Fri, 22 Sep 2006 10:07:13 +0000 http://www.krunk4ever.com/blog/?p=717#comment-8977 I actually tried that. I had iTunes loaded on my system and when I was at work and TSed into my machine and tried playing music, the audio wouldn’t tunnel through.

Do let me know if you get it working with VNC, PowerToys, or TweakUI.

I believe this probably won’t be fix until Apple releases the next update for iTunes.

//krunk (^_^x)

]]>
By: Chris Wiltshire https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-8973 Fri, 22 Sep 2006 09:49:04 +0000 http://www.krunk4ever.com/blog/?p=717#comment-8973 Powertoys; you’re looking for TweakUI… Then set the machine to login automatically by using the network password section…

Microsoft PowerToys for Windows XP

Hope this helps.

]]>
By: Chris Wiltshire https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-8972 Fri, 22 Sep 2006 09:43:32 +0000 http://www.krunk4ever.com/blog/?p=717#comment-8972 Hey, I have an idea! 🙂

Get hold of powertoys for XP, log your machine in on boot up. Put your Itunes shortcut in the startup folder, this will start Itunes in the main console, without you needing to be present..

Then if you TS to the console, Itunes will already have loaded sucessfully, and you’re all go! ?! 🙂

mstsc /v:xxx.xxx.xxx.xxx /console

– To get onto the machine’s console by IP.

I’m going to give this a go. Hopefully this will keep us in business for a while until a better solution is found.

Cheers, all the best from New Zealand.

Chris.

]]>
By: Chris Wiltshire https://www.krunk4ever.com/blog/2006/09/14/itunes-7/comment-page-1/#comment-8969 Fri, 22 Sep 2006 09:24:17 +0000 http://www.krunk4ever.com/blog/?p=717#comment-8969 Yo, same problem here, I’m glad you tracked this down to TS, otherwise I’d be searching for a lot longer… This is a bugger!

Perhaps you could use VNC or some other deskstop remote control software for now??

🙂 – Cheers,

Chris.

PS; if you find a fix for this, please let me know as I’d prefer to use my newly bought Windows XP Media Center remotely. – Cheers! 🙂

]]>