I wrote my own 'sora7.exe' which works w/ Win7. I just used VS 2010 vb. Built as a command program, and compiled only to require .Net 2.0 (not .Net 4 which VS 2010 defaults to). Lee contact me if you wish.
You can get the .exe here
www.four2.org/sora7/sora7.zip----Source code ---
Module Module1
'http://www.vbdotnetheaven.com/UploadFile/mahesh/CmdLineArgs02052007003318AM/CmdLineArgs.aspx
'http://www.scriptingpod.com/sora.asp
Public Sub Main()
Console.Out.WriteLine()
Console.Out.WriteLine("Sora7.exe (based on Sora.exe) (c) Jonathan Reininger")
Dim arguments As String() = Environment.GetCommandLineArgs()
Dim RemotePC As String
If arguments.Length < 2 Then
Console.Out.WriteLine("Syntax: Sora7 <PCname>")
Console.Out.WriteLine()
Return
Else
RemotePC = Environment.GetCommandLineArgs(1)
If RemotePC <> "" Then
If System.IO.File.Exists(Environment.SystemDirectory & "\msra.exe") = True Then
Dim myprocess As New System.Diagnostics.Process()
myprocess.StartInfo.FileName = Environment.SystemDirectory & "\msra.exe"
myprocess.StartInfo.Arguments = " /offerra " & RemotePC
myprocess.Start()
Else
Console.Out.WriteLine("Missing: '" & Environment.SystemDirectory & "\msra.exe' (ie default location in Windows7")
End If
End If
Console.Out.WriteLine()
End If
End Sub 'Main
End Module