Help - Search - Members - Calendar
Full Version: IntelliPoint 5.0 Question
MSFN Forums > Unattended Windows Discussion & Support > Application Installs

   
Google Internet Forums Unattended CD/DVD Guide
pinout
Trying to figure out how to silently install the IntelliPoint 5.0 software...
Downloaded from here

Only information I could find was here at AppDeploy.com

You extract the files from the EXE and run OEMSETUP.EXE with an OEMSETUP.INI, this works, but it launches a second process (setup.exe), so using START /WAIT is pretty useless.

Anyone have another method for installing this?
Strat79
Not for sure this will work but I took out the condition that disallows \IP5_0ENG\IPoint\SETUP\IP5.msi to run independently by itself. So now you can just use the .msi with the /qn or /qb switch. I can't upload it here cause it's too big. If you want to give it a shot PM me and I will send it to you somehow.
pinout
Whats the tool called again that modifies MSI's ? I could do it myself
XtremeMaC
no that msi file is pretty annoying
it says it won't work if the setup.exe is not launched
and the setup.exe in that folder, when u launch it, it says it will not work unless u start the setup.exe on the folder 1 level above.

i've tried many things but didn't really look for the launch conditions of the msi
someone could probably figure it out
either
go get devstudio / adminstudio
or
wininstallLe etc...
pinout
Okay, I used WinINSTALL LE to remove the Launch Condition "Installed OR MM" ("The file you are trying to open is part of Microsoft IntelliPoint Setup. To run Microsoft IntelliPoint Setup, double-click Setup.exe in the root directory.")

But now when I run the MSI I get "Error 1406.Could not write to value Model to key HKEY_LOCAL_MACHINE\Software\Microsoft\IntelliPoint. Verify that you have sufficient access to that key, or contact your support personnel."

Is there something else I am supposed to modify/remove?
Strat79
Like I said, I didnt know if it would work or not. Apparently not. Sorry, hope someone can figure it out for ya. Could always use install rite or script it.
Professor Frink
Slightly OT question: does Intellipoint work with a Logitech mouse? Nothing fancy, just a regular 3-button optical. I want to include Intellipoint in my setup, but I have both MS and Logitech optical mice in my office.
Strat79
@Professor Frink
I have a logitech MX300 and couldn't get Intellipoint to work with mine, Said something about conflicting or something. But it may work on yours.
big poppa pump
There are additional registry keys that needs to be configured and imported when modifying the msi file with WinInstall LE. You need to specify the language settings (English by default), the type of hardware (a number that identifies what type of mouse or keyboard you are using).
The best way to go about configuring it is to first install the Intellitype software and then export all the registry settings for Intellitype under HKCU and HKLM. Once that is done, all you have to do is to remove the install condition and also create the necessary registry keys that are created when you install the Intelli software. Also make sure that the language and hardware settings are specified correctly.
I have used this method with great success and have no problems installing the intelli software in my unattended setup.
XtremeMaC
i'll try to play with the msi and post my results here
btw i'm sure intelli software checks the hardware id's (that's obvious!)
for that reason u wouldn't be able to use a logitech mouse with ms software??? and to me it sounds very awkward, anyways

if u want to use 2 mouse software u could have a cdshell file to boot and ask ppl which type of mouse they use and from there u can install the according software I believe..
Joe User 99
QUOTE
Okay, I used WinINSTALL LE to remove the Launch Condition "Installed OR MM" ("The file you are trying to open is part of Microsoft IntelliPoint Setup. To run Microsoft IntelliPoint Setup, double-click Setup.exe in the root directory.")

But now when I run the MSI I get "Error 1406.Could not write to value Model to key HKEY_LOCAL_MACHINE\Software\Microsoft\IntelliPoint. Verify that you have sufficient access to that key, or contact your support personnel."

Is there something else I am supposed to modify/remove?


Where it says could not write value Model to key...
It is trying to write the mouse model, as selected in the dialog, to the registry.
This needs to be set (its a property set via a custom action.)

Here at work, most of our systems use the same model mouse, so I just pre set it in a transform.

but here are the values I pulled out of the MSI for various models:

Wireless IntelliMouse Explorer 2.0 (With Tilt Wheel) = 16
Wireless Optical Mouse 2.0 (With Tilt Wheel) =15
IntelliMouse Explorer 4.0 (With Tilt Wheel) = 14
Basic Optical Mouse = 13
* No 12 listed *
Optical Mouse = 11
Wireless Optical Mouse = 10
Wireless Wheel Mouse = 9
Wireless IntelliMouse Explorer = 8
Wheel Mouse Optical = 7
Trackball Optical = 6
Trackball Explorer = 5
IntelliMouse Web = 4
IntelliMouse Optical = 3
IntelliMouse Explorer = 2
Microsoft Mouse = 1
IntelliMouse = 0

This HAS to be set.

Now I said I added it into a transform, but you could probably just add a public property for it to the property table of the MSI, that would allow you to set it from the command line. The property MM is being set via a custom action right now, but there shoudn't be any reason you couldn't add MM to the property table, then just add that as a commandline option like so:

IP50.msi MM=3 (This probably wouldn't work by default, you would have to modify the property table.)


Let me know if you need more help.
pinout
QUOTE (Joe User 99 @ Jun 10 2004, 12:58 PM)
QUOTE
Okay, I used WinINSTALL LE to remove the Launch Condition "Installed OR MM" ("The file you are trying to open is part of Microsoft IntelliPoint Setup. To run Microsoft IntelliPoint Setup, double-click Setup.exe in the root directory.")

But now when I run the MSI I get "Error 1406.Could not write to value Model to key HKEY_LOCAL_MACHINE\Software\Microsoft\IntelliPoint. Verify that you have sufficient access to that key, or contact your support personnel."

Is there something else I am supposed to modify/remove?


Where it says could not write value Model to key...
It is trying to write the mouse model, as selected in the dialog, to the registry.
This needs to be set (its a property set via a custom action.)

Here at work, most of our systems use the same model mouse, so I just pre set it in a transform.

but here are the values I pulled out of the MSI for various models:

Wireless IntelliMouse Explorer 2.0 (With Tilt Wheel) = 16
Wireless Optical Mouse 2.0 (With Tilt Wheel) =15
IntelliMouse Explorer 4.0 (With Tilt Wheel) = 14
Basic Optical Mouse = 13
* No 12 listed *
Optical Mouse = 11
Wireless Optical Mouse = 10
Wireless Wheel Mouse = 9
Wireless IntelliMouse Explorer = 8
Wheel Mouse Optical = 7
Trackball Optical = 6
Trackball Explorer = 5
IntelliMouse Web = 4
IntelliMouse Optical = 3
IntelliMouse Explorer = 2
Microsoft Mouse = 1
IntelliMouse = 0

This HAS to be set.

Now I said I added it into a transform, but you could probably just add a public property for it to the property table of the MSI, that would allow you to set it from the command line. The property MM is being set via a custom action right now, but there shoudn't be any reason you couldn't add MM to the property table, then just add that as a commandline option like so:

IP50.msi MM=3 (This probably wouldn't work by default, you would have to modify the property table.)


Let me know if you need more help.

Hey thanks a lot Joe User 99, using the MM switch worked without any additional modifications to the MSI.

100% working now
pinout
Additional note...

I tried the MM switch with the original MSI file, and it appears to work..

So it appears that modifying the MSI may not even be necessary.
XtremeMaC
is it just me or do i see a whole big quote in there?

u sure u tried that switch with the unmodified version of msi?(just making sure I haven't tried yet...)
pinout
Yes, it was with the unmodified MSI


(Something wrong with quoting? against the rules? I dont think I ever read the rules)
XtremeMaC
great then I shall try it soon

no its nothing with the rules
its just that I don't see any point in quoting the whole post that's it.
if everyone quotes the previous post I think the bandwidth would double smile.gif
anyways since i'm not a mod or anything its not my place to argue about it..

ow thanks @Joe User 99 !!!
big poppa pump
I tried using the unmodified MSI and I get an error message saying to continue setup using the actual setup.exe.
pinout
big poppa pump, are you using the 'MM' switch?
big poppa pump
Ok! Ignore previous post! confused.gif

I was trying to install Intellitype Pro with the MM switch. wacko.gif I had to use the "kb" switch instead to get it going. However I still went ahead and modified the msi since i wished to get rid of some shortcuts. Anyway everything seems to be working well. This is my command in my install.inf

[Keyboard]
HKLM,"%RunOnceEx%\install017",1,,"%11%\msiexec.exe /i %01%\install\Intellipoint\Keyboard\ITP50.msi kb=1009 /QR"

[Mouse]
HKLM,"%RunOnceEx%\install017",2,,"%11%\msiexec.exe /i %01%\install\Intellipoint\Mouse\IP50.msi mm=16 /QR REBOOT=ReallySuppress"
big poppa pump
Please Ignore! Found my answer. Edited post above.
oioldman
Thanks all, your notes have got it installed silent now.
I have a question though,
Which diles do i actually need? because i'm sure not all are needed and will it work with new 5.2 version of s/w does anybody know?

Thanks in advance for any assistance.
oioldman
I have managed to notice that the msi has changed to be IP52.msi or ITP52.msi and the switches still work, but now there are more files than ever.
Sanjay
So what is the procedure for slipstreaming Intellipoint and Intellitype Pro? I can't seem to find the working commands in this thread. Also what file to use and how to procure it?
Thanks
pegasus1010
QUOTE (big poppa pump @ Jun 10 2004, 08:18 PM)
This is my command in my install.inf

[Keyboard]
HKLM,"%RunOnceEx%\install017",1,,"%11%\msiexec.exe /i %01%\install\Intellipoint\Keyboard\ITP50.msi kb=1009 /QR"

[Mouse]
HKLM,"%RunOnceEx%\install017",2,,"%11%\msiexec.exe /i %01%\install\Intellipoint\Mouse\IP50.msi mm=16 /QR REBOOT=ReallySuppress"

can someone enlighten me on the command used?
How shall I go about doing this? confused.gif
teh1337357
QUOTE (pegasus1010 @ Sep 10 2004, 05:38 AM)
QUOTE (big poppa pump @ Jun 10 2004, 08:18 PM)
This is my command in my install.inf

[Keyboard]
HKLM,"%RunOnceEx%\install017",1,,"%11%\msiexec.exe /i %01%\install\Intellipoint\Keyboard\ITP50.msi kb=1009 /QR"

[Mouse]
HKLM,"%RunOnceEx%\install017",2,,"%11%\msiexec.exe /i %01%\install\Intellipoint\Mouse\IP50.msi mm=16 /QR REBOOT=ReallySuppress"

can someone enlighten me on the command used?
How shall I go about doing this? confused.gif

Yeah, I'd like to know as well, as I am trying to make an unattended CD at the moment, while waiting for my new hard drive which should come today. If someone could just give all that information summed up, it'd be great.
joebells
so to get rid of the desktop shortcut it seems we could use DSKSHORTCUT = 0 ?
goober
Note: the Command Line is:
QUOTE
kb=1009 /QN


CODE
[Keyboard]
HKLM,"%RunOnceEx%\install017",1,,"%11%\msiexec.exe /i %01%\install\Intellipoint\Keyboard\ITP50.msi kb=1009 /QN"



But I prefer to use winrar self-extracting
Statik
hey guys... yeah, i saw this and i was wondering how to install intellipoint silent for a unattended xp disk. i'm kinda new at this so i was wondering if i could get it all in one full summary, like what exactly i have to do all in one post i guess... i'm a little confused. plus i was wondering then if intellitype just works the same way, or if that is any different at all. i really appreciate any help. thanks guys
Statik
or if someone can just pm me a step by step to answer the question, that would work too... thanks again guys.
Powerhouse
I have been trying to work on a way to install these drivers only if you have the Intellipoint/Intellitype hardware installed on your system, but it seems MS doesn't want to make it that easy. If there was a file that get's installed by Windows on its initial install, if you have a MS Keyboard or Mouse installed, we could use that as part of an IF EXISTS statement in RunOnceEX.cmd (See my post here regarding Logitech Mouse and Keyboard).

Also, is there a list of Keyboards similar to the Mouse software listed. Not really sure what KB=1009 is (I have a Natural Keyboard Pro which I read in another post was listed as NKP).

So basically, the only install method so far, is to use the ITP52.msi file with the KB= switch and /QN. This does install silently, but you also need the \Files folder and the \Files\1033 folder in the same folder that the ITP52.msi file is in, for this method to work. Note that this install method will also put the Keyboard shortcut on the desktop.
astrocase
What are the actual lines of code for the Intellitype Pro 5.2 and IntelliPoint 5.2?
Google Internet Forums Unattended CD/DVD Guide
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.