/build/static/layout/Breadcrumb_cap_w.png

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login
Views: 4.6k  |  Created: 01/30/2007

Average Rating: 0
PC Suite has 35 inventory records, 0 Questions, 0 Blogs and 1 links. Please help add to this by sharing more!

Deployment Tips (9)

Most Common Setup Type
Not Determined
Average Package Difficulty Rating
Rated 3 / 5 (Average) based on 3 ratings
Most Commonly Reported Deployment Method
Repackaged (to a setup.msi)
120
Note
Don't repackage a InstallShield installation. To create a Silent installation - Run

c:\temp\Nokia_PC_Suite_66_rel_18_eng.exe /r /f1"C:\temp\setup.iss"

Choose the options as you see fit to create a response file in the setup.iss.

To install the appplication with the response created above- (Watch your spaces)

C:\temp\Nokia_PC_Suite_66_rel_18_eng.exe /S /f1"C:\temp\setup.iss" /f2"C:\temp\install.log"



Always check the GUID in the:
HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\InstallShield Uninstall Information.

To Uninstall the Nokia PC Suite

"C:\Program Files\Common Files\InstallShield\Driver\9\Intel 32\IDriver.exe" /M{FBD6A335-7E02-43B0-AF58-1B472F9BD3E1} /s


To Uninstall the Nokia Connectivity Cable Driver

"C:\Program Files\Common Files\InstallShield\Driver\9\Intel 32\IDriver.exe" /M{3C1599DA-9ED9-4090-930F-B8BC4D99D6B0} /s
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
119
Note
Trying to package Nokia PC Suite 6.84.10.3 is a little different to the past packages.

The file downloaded off website http://www.nokia.com.au/nokia/0,8764,79711,00.html

Nokia_PC_Suite_6_84_10_3_eng_web.exe

I found a couple of ways to silently install this. Have not tested via AD yet as i use Tivoli.

First and easiest is cmd script:
c:\%location%\Nokia_PC_Suite_6_84_10_3_eng_web.exe /SILENT="1" /DISABLE="AUTORUN"

This obviously silent installs with the only appearance being program on the task bar that cannot be opened and disappearing when complete. It also disables the program from starting up automatically when it is finished installing.

The other is more of a failsafe way in which actually start the installation up to the point asking for the directory to install to. Then browse to

C:\Documents and Settings\All Users\Application Data\Installations

There should be a temp DIR in there and if you search through it you should find 3 .msi files corresponding to
Cable driver
connectivity solution
and pc suite.

They must be installed in that order or you may come across some errors.

From here you should be free to package / deploy through most systems.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
118
Note
The "Get Connected" Auto launch setting is saved in Settngs.XML file under:

C:\Documents and Settings\%USERNAME%\Application Data\Nokia\GetConnectedWizard.

To disble, edit the XML file to have HideWelcome=0.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
117
Command Line
Nokia PC Suite 6.6 uninstallstring:

"C:\Program Files\Common Files\InstallShield\Driver\9\Intel 32\IDriver.exe" /M{617095DB-B523-4D11-BBFD-2D74C2AD98B8} /s
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
116
Note
My end solution for this application was to repackage. The repackage was fairly simple, but had to include the driver installation of 3 inf files. I did this via setupapi.dll calls. One thing to point out - the “connect to the internet” functionality of the application, where you can configure GPRS connections by default advises you need administrator privileges when the application run the app as a standard user. If you require this, this will need attention, but this lockdown was perfect for my requirements.

My last resort option to repackage Nokia PC Suite 6.5 (which is MSI based) is based on the following reason:

The application is a download from Nokia, which comes as a single compressed executable. This when launched contains an MSI based installation.

Using command line switches with the InstallShield executable, to pass variables to Windows installer did not produce the desired results. All the options for silent installations, passing a /qb, /qb+ failed. Using a /qn for a totally silent installation worked, but not in a locked down environment - needed administrator privileges, so no use to me.

Extracting the contents of the InstallShield executable was next. I got the PCSuite MSI and the ISScript9.msi dependency. Both need to be edited to allow them to function without being called from a Setup.exe. Delivering these MSI's actually worked, but the installation was not complete. There were no particular error messages, hence I did not pursue resolving the issue, but no connection types were present when the application launched.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
116
Command Line

Use just package.exe /S to install completely silent to default folders. Works for me with PC Suite 6.5.

Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
116
Note
I have succesfully made a distributable version of the 6.6 version.

Here are the steps I did:

1. Execute the installation, but do not actually install the software
2. Go to the temp directory, and voila, there are two msi files: ISScript9.msi and Nokia PC Suite.msi.
3. Copy those files to your share.
4. Open Nokia PC Suite.msi with Wise package Studio and add the following line in the table:
Table - Property: Add New Entry - ISSETUPDRIVEN = 1
Then (was necessary for me) remove the condition about Adminuser
5. Save the msi file.
6. For both files you have to make a mst file (I did that with Wise Package Studio).
7. Make sure that you first trigger the ISScript9.msi and then the Nokia PC Suite.msi.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
116
Note
My end solution for this application was to repackage. The repackage was fairly simple, but had to include the driver installation of 3 inf files. I did this via setupapi.dll calls. One thing to point out - the “connect to the internet” functionality of the application, where you can configure GPRS connections by default advises you need administrator privileges when the application run the app as a standard user. If you require this, this will need attention, but this lockdown was perfect for my requirements.

My last resort option to repackage Nokia PC Suite 6.5 (which is MSI based) is based on the following reason:

The application is a download from Nokia, which comes as a single compressed executable. This when launched contains an MSI based installation.

Using command line switches with the InstallShield executable, to pass variables to Windows installer did not produce the desired results. All the options for silent installations, passing a /qb, /qb+ failed. Using a /qn for a totally silent installation worked, but not in a locked down environment - needed administrator privileges, so no use to me.

Extracting the contents of the InstallShield executable was next. I got the PCSuite MSI and the ISScript9.msi dependency. Both need to be edited to allow them to function without being called from a Setup.exe. Delivering these MSI's actually worked, but the installation was not complete. There were no particular error messages, hence I did not pursue resolving the issue, but no connection types were present when the application launched.
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows
3
Note
From the Nokia PC Suite Administrator Installer Manual:
The Nokia PC Suite installer option /UNPACK can be used to extract Windows Installer (.msi) packages from the Nokia PC Suite installer package (.exe). Packages can then be deployed separately with in the following order:

1. Visual C++ runtime library
2. Nokia Connectivity Cable Driver
3. PC Connectivity Solution
4. Nokia PC Suite
Setup Information:
Setup Type: unspecified
Deployment Method Used: unspecified
Deployment Difficulty: unspecified
Platform(s): Windows

Inventory Records (35)

View inventory records anonymously contributed by opt-in users of the K1000 Systems Management Appliance.

PC Suite

Version

6.84.10.4

Uninstall String

C:\Documents and Settings\All Users\Application Data\Installations\{A982E6CC-9F0D-4948-9B18-BDFD55DE4A72}\Nokia_PC_Suite_6_84_10_3_eng_us.exe C:\Documents and Settings\All Users\Application Data\Installations\{A982E6CC-9F0D-4948-9B18-BDFD55DE4A72}\Nokia_P

Questions & Answers (0)

Questions & Answers related to Nokia PC Suite

Blogs (0)

Blog posts related to Nokia PC Suite

Reviews (0)

Reviews related to Nokia PC Suite

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ