MSN Messenger 6.2 Released But with options.........
#1
Posted 22 April 2004 - 07:58 PM
But this release also add options that are ticked by default for MSN toolbar.
How would i untick them in a slient install?
#2
Posted 23 April 2004 - 04:41 AM
#3
Posted 23 April 2004 - 05:00 AM
Thanks.
#4
Posted 23 April 2004 - 08:09 AM
Feature list:
- Launch Site renamed "Fun & Games"
- Shared Browsing Enabled for MSN Subscribers
- MSN Messenger "Connection Troubleshooter" (automatically solve many network connectivity problems)
- Minor : 'Real time' emoticon displaying when typing messages (e.g. : ) ->
whilst you type) - Minor : Ability to hide the standard buttons at the top of the messenger window, ala MS Messenger
- Minor : Mobile grouping on the main pane; for mobile contacts they are grouped asides from normal contactsp
I ended up downgrading to 6.1 again.
#6
Posted 23 April 2004 - 12:06 PM
To get back on topic, does anyone know how to install the MSN Toolbar component of MSN Messenger 6.2 silently? There must be some way (that doesn't involve sending keystrokes naturally)...
#7
Posted 23 April 2004 - 01:51 PM
#8
Posted 23 April 2004 - 02:49 PM
The part that installs the MSN Toolbar, sets the homepage, etc
is a custom action that is not called until you click on the finish button.
(they are actually actions called when the button is pressed!)
So unattended installs will be more difficult.
It should be possible to move the custom actions out of the finish button and back into the main sequence of events, and then you could call them by setting the appropriate public properties...but I don't have time right now to do it.
Also another thing to note about this MSI, is there is no Admin install....AT ALL!
those tables are empty in the MSI.
I have found switches for the MSN Toolbar setup that let you install and uninstall...
but the install is not completely silent, it installs silently, but then it launches IE to the "Get Started" page upon completion, just like normal.
If there is intrest, I will add the switches to the Application Switches thread.
#10
Posted 23 April 2004 - 05:31 PM
Also, modifying the MSN Messenger 6.2 MSI and moving the custom actions out of the "Finish" button, etc. But I will be out of town all weekend, so won't have anything till Monday.
#11
Posted 23 April 2004 - 05:54 PM
#12
Posted 24 April 2004 - 09:28 PM
#13
Posted 24 April 2004 - 09:39 PM
heh i had told them to put an option to show groups when not showing the offline users. they said it would be on the next version
This post has been edited by XtremeMaC: 25 April 2004 - 06:40 PM
#14
Posted 26 April 2004 - 04:28 AM
#15
Posted 26 April 2004 - 04:33 AM
daaa!
i see the install of msn toolbar except that i don't see much
how about "enable rename of the contact", ppl change their nicknames quite often!
#17
Posted 26 April 2004 - 01:00 PM
Since it wouldn't be legal to post a modified MSI, I went the other way and created a Transform file to be used in conjunction with the original MSI.
Here is what I have changed.
(First, you should read my previous posts, as I am not going to go back and explain the reasons for creating the transform; I am only going to explain how to use it.)
I have not found any additional command line switches for MSN Toolbar other than the ones I posted previously, so we are still kind of stuck with a semi silent install if you want the toolbar installed.
Using the MSN Messenger 6.2 as a baseline, I have created a transform which changes the following:
The default MSN Messenger 6.2 MSI installs the MSN Toolbar via a series of custom actions called from the Finish Button of the install dialogs. The particular action is selected via a series of checkboxes during install, and public properties. Since these dialogs are not presented during a unattended install, these actions are not run.
Normally, the custom actions would be sequenced along with the other install commands, however these are not.
What I have done is add them into the normal install sequence, and added install conditions to match the ones listed in the "Finish" button. In addition to this, I added the UILevel<5 condition to the custom actions so they will only run if at a interface level less than default (Reduced, Basic, None). I also added UILevel>4 to the calls in the "Finish" button just in case. (We don't accidentally want more than one running at a time.)
In addition to this, there is a custom action to launch messenger. I have added this to the normal launch sequence, and in order to control it, created a new public property which can be set from the command line.
In addition to this, since we are really looking to make this a hands free as possible, I created a entirely new custom action for the MSN Toolbar installation, similar to the existing ones, but instead gave it the command line switch "j", which is the closest to silent I have found. In order to control this action, I created a new public property also. This new action however was not added to the normal dialog sequence. It is only available in the unattended install.
Now I did not change any of the properties for these options. I realize they are long names, etc, but that is what they are in the default MSI. So get over it.
This is, of course, not supported by Microsoft in any form or fashion. Do not cry to them if it does not work.
This was built extremely quickly, with no regard to testing. It had limited testing, and while everything seemed to function, no guarantees are made. Use it at your own risk.
------
Ok, with that out of the way...here is how to use it.
<Path>MsnMsgs.msi TRANSFORMS=CustomMSNMsgr62.mst [ADDEXPLORERTOOLBAR="AddExplorerToolbar"] [SETSEARCHENGINE="SetSearchEngine"]
[SETHOMEPAGE="SetMyHomePage"] [LAUNCHMSGR="Yes"] [SEMISILENT="Yes"]
These switches are used in combination. Here is a breakdown.
TRANSFORMS=CustomMSNMsgr62.mst - This is required if you want to install it this way. Without it, you only have the way MS wrote it, not any changes I made. Copy the MST file to the same folder as the original MSI. As long as they are in the same path, you don't need to specify one. If in a different folder, specify the path along with the transform file name.
ADDEXPLORERTOOLBAR="AddExplorerToolbar" - This is the property to install JUST the MSN Toolbar. No Set search engine, non silent, etc. This can be set separately, or together with SETSEARCHENGINE, LAUNCHMSGR, or SETHOMEPAGE.
Do not use with SEMISILENT.
SETSEARCHENGINE="SetSearchEngine" - This is the property to JUST set MSN as the default Search Engine. It is non silent, No Toolbar etc. This can be set separately, or together with ADDEXPLORERTOOLBAR, LAUNCHMSGR, or SETHOMEPAGE. Do not use with SEMISILENT.
SETHOMEPAGE="SetMyHomePage" - This is the property to JUST set the home page to MSN. It is Silent, No Toolbar, etc. This can be set separately, or together with ADDEXPLORERTOOLBAR, LAUNCHMSGR, SEMISILENT or SETSEARCHENGINE.
LAUNCHMSGR="Yes" - This is the property to launch the MSN Messenger at the completion of setup. This can be set separately or together with ADDEXPLORERTOOLBAR, SETHOMEPAGE, SEMISILENT or SETSEARCHENGINE.
SEMISILENT="Yes" - This is the property to install the MSN Toolbar semi-silently. This cannot be set together with other SETSEARCHENGINE or ADDEXPLORERTOOLBAR. If SEMISILENT is set, it will set SETSEARCHENGINE and ADDEXPLORERTOOLBAR to null values. It can be used with LAUNCHMSGR or SETHOMEPAGE.
The default values are as follows:
ADDEXPLORERTOOLBAR="AddExplorerToolbar"
SETSEARCHENGINE="SetSearchEngine"
SETHOMEPAGE="SetMyHomePage"
This is the way MS set them. This means all 3 of these options are ON by default. If you do not want these default options, you MUST pass the appropriate switches to change them to your liking.
LAUNCHMSGR="No"
SEMISILENT="No"
These were set by me (Since I added them.) They are OFF by default. Meaning, if you want these options, you must pass these switches, replacing "No" with "Yes".
If you find any bugs, let me know....
Its only like 11k or something.
Attached File(s)
-
CustomMSNMsgr62.mst (10.5K)
Number of downloads: 109
#18
Posted 26 April 2004 - 04:39 PM
1. Tried just using msnmsgr.msi TRANSFORMS=CustomMSNMsgr62.mst because I wanted the defaults you set...This did not install unattendedly, so other option
2. Tried msnmsgr.msi TRANSFORMS=CustomMSNMsgr62.mst /QB and it did install msn messenger unattendedly, but still comes back and runs me through the entire msntoolbar setup
Am I doin this right? It just seems that this is not gonna happen installin msn messenger and toolbar unattendedly
#19
Posted 26 April 2004 - 06:40 PM
So it would be MsnMsgs.msi TRANSFORMS=CustomMSNMsgr62.mst SEMISILENT="Yes" /QB
That should go completely through unattended and at the end, it will launch IE to the MSN Toolbar's "Get Started" page.
Without knowing any other switches for MSN Toolbar to make it completely silent, and NOT launch IE at the end, this is the best we can do.
#20
Posted 26 April 2004 - 08:54 PM



Help


Back to top









