here is a script that is doing what you are looking for i believe...you will have to modify the paths for the icon files...save the below txt as a vbs. in your sccm package call cscript.exe <new.vbs>
On Error Resume Next
Dim objShell, FSO
strComputer = "."
Set objShell = WScript.CreateObject("WScript.Shell")
Set fso = CreateObject("Scripting.FileSystemObject")
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
strStartupFolder7 = "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\"
strStartupFolderXP = "C:\Documents and Settings\All Users\Start Menu\Programs\Startup\"
'--------------------check wmi for windows version (7 or XP) and copies phone client to startup folder
Set objWMIService3 = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
Set colItems3 = objWMIService3.ExecQuery( _
"SELECT * FROM Win32_OperatingSystem",,48)
For Each objItem3 in colItems3
' Wscript.Echo "Caption: " & objItem.Caption
IF instr(objItem3.Caption, "Windows 7") >0 then 'check wmi os caption
'wscript.echo "hello 7"
fso.copyfile "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Interactive Intelligence\Interaction Client.lnk", (strStartupFolder7) 'Copy start menu link to startup folder
ElseIF instr(objItem3.Caption, "Windows XP") >0 Then 'check wmi os caption
'wscript.echo "hello XP"
fso.copyfile "C:\Documents and Settings\All Users\Start Menu\Programs\Interactive Intelligence\Interaction Client.lnk", (strStartupFolderXP) 'Copy start menu link to startup folder
End IF
Next