You just need to search to find programs in VB that use Windows Media Player. There's numerous programs with a variety of capabilities. And the Windows Media Player control provides all of the functions that the actual Windows Media Player provides I believe.
The problem is finding all of those capabilities and learning how to use them.
https://www.google.com/#fp=d376bad89d5753b2&q=Windows+Media+Player+vb.net
http://social.msdn.microsoft.com/Search/en-US?query=Windows%20Media%20Player%20vb.net&beta=0&ac=2
Here's a very simple program which uses the Windows Media Player control dropped on the Form from the Visual Studio toolbox after having added the control to the toolbox using Visual Studio, Tools tab, Choose ToolBox Item, Com components, Windows Media Player
and pressing O.K. to add it as a control to the ToolBox.
This just adds some songs to a list and the Button runs WMP. And WMP plays all the songs in the list. Thats nothing compared to all of the control capabilities that WMP has available.
I doubt you can use "script" for the WMP.
Option Strict On
Public Class Form1
Dim Songs As New List(Of String)
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
Songs.Add("C:\Users\John\Music\Miami Vice Theme.mp3")
Songs.Add("C:\Users\John\Desktop\teddybearstereo.wav")
Songs.Add("C:\Users\John\Music\Phil_Collins_I_Dont_Care_Anymore.mp3")
Songs.Add("C:\Users\John\Music\freeway_jam.mp3")
Songs.Add("C:\Users\John\Music\ZZ_Top__Viva_Las_Vegas.mp3")
For Each Item In Songs
Dim song As WMPLib.IWMPMedia = AxWindowsMediaPlayer1.newMedia(Item)
AxWindowsMediaPlayer1.currentPlaylist.appendItem(song)
Next
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
AxWindowsMediaPlayer1.Ctlcontrols.play()
End Sub
End Class

Please BEWARE that I have NO EXPERIENCE and NO EXPERTISE and probably onset of DEMENTIA which may affect my answers! Also, I've been told by an expert, that when you post an image it clutters up the thread and mysteriously, over time, the link to the image
will somehow become "unstable" or something to that effect. :) I can only surmise that is due to Global Warming of the threads.