Jump to content

spoirier

Member
  • Posts

    24
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by spoirier

  1. When I install 'WLM9 Requisites Switchless' it adds 'Windows Live Call Beta' to the Program Files menu. Is it really a beta or the release version?
  2. 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!
  3. I used your transform to create a modified msi. What do you typically do to create the exe you distribute?
  4. 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
  5. What switches do I need to use to do a silent uninstall? I tried the following command but it prompted me for remove or repair: MsiExec.exe /I{B045B608-4A47-4C77-9EAD-06C394503306} /qb-
×
×
  • Create New...