Jump to content

spoirier

Member
  • Posts

    24
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Posts posted by spoirier

  1. I discovered that on a Windows XP if you remove the old Windows Messenger that came with the OS using:

    RunDll32 advpack.dll,LaunchINFSection %windir%\inf\msmsgs.inf,BLC.Remove

    after running 'WLM9 Switchless.exe' you will get an error saying that it is looking for 'wlm.msi' in the temp directory. I have found that if you run the command to remove the old version first then run 'WLM9 Switchless.exe' you will not get the error.

    elajua:

    Thanks for the great work you are doing to make our lives easier! :thumbup

  2. Since I dont foresee having highspeed internet access soon I have created transform files for others to use and apply and even distribute thier results. These transform files CANNOT be successfully applied using orca. Installshield is required.

    The person who is able to successfully apply the transforms file and redistribute the results to the satisfaction of users can also take over these releases in the future.

    I used your transform to create a modified msi. What do you typically do to create the exe you distribute?

  3. I found this vb script that will silently remove iTunes and I expanded it to remove all of the other things installed by standard Apple installer. Just the first For/Next loop is need to remove your version.

    On Error Resume Next
    Const HKEY_LOCAL_MACHINE = &H80000002
    strComputer = "."
    Set WshShell = CreateObject("wscript.Shell")
    Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &_
    strComputer & "\root\default:StdRegProv")
    strKeyPath = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall"
    oReg.EnumKey HKEY_LOCAL_MACHINE, strKeyPath, arrSubKeys

    For Each subkey In arrSubKeys
    strDisplayName = WshShell.RegRead ("HKLM\" & strKeyPath & "\" & subkey & "\DisplayName")
    If strDisplayName = "iTunes" Then
    WshShell.Run "msiexec.exe /norestart /x " & SubKey & " /qn", 7, True
    End If
    Next

    For Each subkey In arrSubKeys
    strDisplayName = WshShell.RegRead ("HKLM\" & strKeyPath & "\" & subkey & "\DisplayName")
    If strDisplayName = "QuickTime" Then
    WshShell.Run "msiexec.exe /norestart /x " & SubKey & " /qn", 7, True
    End If
    Next

    For Each subkey In arrSubKeys
    strDisplayName = WshShell.RegRead ("HKLM\" & strKeyPath & "\" & subkey & "\DisplayName")
    If strDisplayName = "Apple Mobile Device Support" Then
    WshShell.Run "msiexec.exe /norestart /x " & SubKey & " /qn", 7, True
    End If
    Next

    For Each subkey In arrSubKeys
    strDisplayName = WshShell.RegRead ("HKLM\" & strKeyPath & "\" & subkey & "\DisplayName")
    If strDisplayName = "Apple Software Update" Then
    WshShell.Run "msiexec.exe /norestart /x " & SubKey & " /qn", 7, True
    End If
    Next

×
×
  • Create New...