MSFN Forum: Acrobat 7 Pro + All updates Silent... - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage ˇ MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
  • 3 Pages +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

Acrobat 7 Pro + All updates Silent... Rate Topic: -----

#31 User is offline   Milgathia 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 22-May 04

Posted 09 February 2006 - 12:02 PM

Did you tried to install it? After slipstreamed the patches on the adminpoint and i try to install the application i get this error:

Internal Error 2602. File, Update_2.kfp


#32 User is offline   CMan 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 09-April 05

Posted 09 February 2006 - 02:49 PM

Had you already patched the admin point to 7.0.5? This patch is to upgrade 7.0.5 --> 7.0.7

Hopefully, that's your problem cause that's all I got

EDIT: Oops, just tried it myself and had the same error... Any smart people want to help?

EDIT: Solved, Read my post below

This post has been edited by CMan: 13 February 2006 - 02:59 PM


#33 User is offline   gczobel 

  • Newbie
  • Group: Members
  • Posts: 32
  • Joined: 22-September 05

Posted 10 February 2006 - 03:03 PM

Hi!
I customized the AutoIt script provided by blinkdt
and changed it to automatize the Acrobat 3D Activation.

I made the main installation with a RAR sfx archive, and after the install I run this script.

AutoItSetOption("TrayIconHide", 0)
AutoItSetOption("WinTitleMatchMode", 4)

BlockInput(1)

;---------------------------------ACTIVATE PROGRAM
SplashTextOn("", "" & @CRLF & "Activating Adobe Acrobat..."  & @CRLF & ""   & @CRLF & "Please wait..."  & @CRLF & "", 320, 90, -1, -1, 1, "Arial", 12, 12)
Sleep(3000)
SplashOff()

;open Acrobat
Run(@ProgramFilesDir & "\Adobe\Acrobat\Acrobat.exe")

;accept license agreement
WinWaitActive("Adobe Acrobat - License Agreement")
ControlClick("Adobe Acrobat - License Agreement", "you must accept the End-User License Agreement", "Button5")

;begin activation procedure
WinWaitActive("Adobe Activation", "Please take a few moments to activate your copy")
ControlClick("Adobe Activation", "Please take a few moments to activate your copy", "Button3")

;select telephone activation option
WinWaitActive("Adobe Activation", "telephone via the Automated Software Activation System")
ControlClick("Adobe Activation", "telephone via the Automated Software Activation System", "Button2")
ControlClick("Adobe Activation", "telephone via the Automated Software Activation System", "Button7")

;grab Serial and Activation numbers from Adobe dialogue
WinWaitActive("Adobe Activation", "Phone Activation")
;---------------------------------grab Serial Number
$var1 = ControlGetText("Adobe Activation", "", "Edit3")
;---------------------------------grab Activation Number
$var2 = ControlGetText("Adobe Activation", "", "Edit4")

;create the Authorization Code using a generator application
Run("generator.exe")
WinWait("Adobe Acrobat 3D v7.0 Professional by SSG")

;---------------------------------write Activation Number into second field
;ControlSend("Adobe Acrobat 3D v7.0 Professional by SSG", "", "obj_EDIT1", $var2)
ControlClick("Adobe Acrobat 3D v7.0 Professional by SSG", "", "obj_EDIT1")
Sleep(500)
Send($var2)
;---------------------------------generate valid Authorization Code
Sleep(500)

ControlClick("Adobe Acrobat 3D v7.0 Professional by SSG", "", "obj_BUTTON2")

Sleep(500)

;grab Authorization Code from generator
$var3 = ControlGetText("Adobe Acrobat 3D v7.0 Professional by SSG", "", "obj_EDIT2")

;close generator application
WinKill("Adobe Acrobat 3D v7.0 Professional by SSG")

;remove "-" from Authorization Code
$AuthCode = StringReplace($var3, "-", "")

;reactivate Adobe dialogue and place focus in correct Adobe dialogue field
WinActivate("Adobe Activation", "Phone Activation")

;chill

;write Authorization Code into Adobe dialogue and activate
$cod1 = StringMid($AuthCode, 1, 4)
$cod2 = StringMid($AuthCode, 5, 4)
$cod3 = StringMid($AuthCode, 9, 4)
$cod4 = StringMid($AuthCode, 13, 4)
$cod5 = StringMid($AuthCode, 17, 4)

ControlClick("Adobe Activation", "", "Edit6")
Sleep(500)
Send($cod1)

ControlClick("Adobe Activation", "", "Edit7")
Sleep(500)
Send($cod2)

ControlClick("Adobe Activation", "", "Edit8")
Sleep(500)
Send($cod3)

ControlClick("Adobe Activation", "", "Edit9")
Sleep(500)
Send($cod4)

ControlClick("Adobe Activation", "", "Edit10")
Sleep(500)
Send($cod5)

ControlClick("Adobe Activation", "", "Button3")

;close activation confirmation dialogue
WinWaitActive("Adobe Activation", "We appreciate your taking the time to activate this copy")
ControlClick("Adobe Activation", "We appreciate your taking the time to activate this copy", "Button2")

;kill registration and never register
WinWaitActive("Adobe Acrobat - Registration", "Registration is fast and easy")
ControlClick("Adobe Acrobat - Registration", "Registration is fast and easy", "Button4")
ControlClick("Adobe Acrobat - Registration", "Registration is fast and easy", "Button5")

;close Acrobat
WinKill("Adobe Acrobat 3D")


The script run the program after the install and call a generator to make a key. The main difference with the original script is that in this version the serial should be inserted separately in 5 edit boxes.

If your generator have another name you can change it in the script.

I tested it in VMWare and works ok.

Gus

#34 User is offline   hevnbnd 

  • Member
  • PipPip
  • Group: Members
  • Posts: 268
  • Joined: 06-September 03

Posted 12 February 2006 - 02:12 AM

gczobel sent you pm.

#35 User is offline   Milgathia 

  • Newbie
  • Group: Members
  • Posts: 23
  • Joined: 22-May 04

Posted 12 February 2006 - 05:03 AM

View Postgczobel, on Feb 10 2006, 03:03 PM, said:

Hi!
I customized the AutoIt script provided by blinkdt
and changed it to automatize the Acrobat 3D Activation.

I made the main installation with a RAR sfx archive, and after the install I run this script.

[...]

The script run the program after the install and call a generator to make a key. The main difference with the original script is that in this version the serial should be inserted separately in 5 edit boxes.

If your generator have another name you can change it in the script.

I tested it in VMWare and works ok.

Gus


Thank you about your reply, but what I am after it's another thing, ie integrating the updates inside the local installation (to deploy it over a network). Now when i slipstream the updates inside the folder it seems that everything work fine, until you run the setup. At that point you get the error and it's really strange because the msp allow you to integrate the updates inside the main administrative install-point.

Any idea?

#36 User is offline   Nilfred 

  • Member
  • PipPip
  • Group: Members
  • Posts: 210
  • Joined: 18-September 04

Posted 13 February 2006 - 08:00 AM

All 7.0.5 to 7.0.7 update:
AcrobatUpd707_all_incr.exe 17.487 KB

Pro 7.0 to 7.0.7 updates:
AcroProUpd707_cck_cum.exe 52.215 KB
AcroProUpd707_dd_cum.exe 42.859 KB
AcroProUpd707_efgj_cum.exe 43.233 KB
AcroProUpd707_nsf_cum.exe 65.907 KB
AcroProUpd707_sip_cum.exe 42.859 KB

Std 7.0 to 7.0.7 updates:
AcroStdUpd707_cck_cum.exe 48.948 KB
AcroStdUpd707_dd_cum.exe 38.267 KB
AcroStdUpd707_efgj_cum.exe 36.504 KB
AcroStdUpd707_efgj_volume_cum.exe 36.506 KB
AcroStdUpd707_nsf_cum.exe 56.766 KB
AcroStdUpd707_sip_cum.exe 38.267 KB

efgj means English, French, German and Japanese
cck means Chinese Simplified, Chinese Traditional and Korean
dd means Danish and Dutch
nsf means Norwegian, Swedish and Finnish
sip means Spanish, Italian and Portuguese

This post has been edited by Nilfred: 13 February 2006 - 09:13 AM


#37 User is offline   CMan 

  • Newbie
  • Group: Members
  • Posts: 10
  • Joined: 09-April 05

Posted 13 February 2006 - 11:49 AM

I figured it out... the error is caused by a Media Table error during the patching...

To fix it:

Edit your .mst with either Installshield Tuner for Flexnet for Acrobat or FLEXnet AdminStudio

Go to Direct Editor under Additional Tools and click on the Media Table:

Change LastSequence to 2193 and you can remove Data1.cab from Cabinet.

The LastSequence change is because the patch adds an additional file (Update_2.kfp) but doesn't inform the installer to find it in your source. Deleting Data1.cab is simply because your admin install removes the .cab from the install directory.

Good luck

This post has been edited by CMan: 13 February 2006 - 02:58 PM


#38 User is offline   No_Style 

  • Newbie
  • Group: Members
  • Posts: 20
  • Joined: 18-December 03

Posted 13 February 2006 - 04:12 PM

:thumbup Good work, Cman. I'm going to try it tonight. Thanks! Thanks for the links as well Nilfred.

#39 User is offline   azaze1 

  • Junior
  • Pip
  • Group: Members
  • Posts: 61
  • Joined: 20-February 05

Posted 21 February 2006 - 09:56 PM

Is there a way to get the Activation to remain as part of setup when using the /qb switch with a TRANSFORMS file?

I've got an administrative install with 7.07, and a .MST file that installs just fine with the /qb switch, but it does not include the activation step like it would if you ran the setup normally. With this behavior, I'd have to launch Acrobat after install, hide the window with AutoIT's WinSetTrans, and wait for the Activation window to pop up 8 seconds later or whenever it is.

It would be nice if there was some way of getting Activation thrown in with the /qb switch instead of having to avoid the /qb and using instead a TON of AutoIT scripting in order to get it all activated during install.

#40 User is offline   RBCC 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 621
  • Joined: 09-July 04

  Posted 23 February 2006 - 02:54 AM

Quick question : How do I use the setup.ini file and setup.exe file in my silent install? Also would I take out all the references to the drive letter to use this on a unattended install? John

#41 User is offline   RBCC 

  • Senior Member
  • PipPipPipPip
  • Group: Members
  • Posts: 621
  • Joined: 09-July 04

Posted 25 February 2006 - 05:48 PM

dhoffman_98: Is there quotes aroung /S /v/qn?" Also is there a space between /S and /v? Is that a capital "S" or a small "S"? John

#42 User is offline   AngelOfCake 

  • Newbie
  • Group: Members
  • Posts: 18
  • Joined: 23-February 05

Posted 20 March 2006 - 03:19 PM

My apologies for bumping an old thread but I think I may of found a way to silently activate Acrobat.

1. install and activate Acrobat

2. copy the contents of the following folders. (I used winrar to compress them and extract them silently)

C:\Program Files\Common Files\Adobe Systems Shared
C:\Documents and Settings\All Users\Application Data\Adobe Systems
C:\Documents and Settings\Administrator\Local Settings\Application Data\Adobe\Acrobat\7.0\Cache

3. the next time you install; extract/copy the contents back to these same folders.

I tried this on virtual machine and it seams to work. also you may have to replace "Administrator" with your own user name. Also I don't think you can transfer it to machines with different hardware.

#43 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 22 March 2006 - 04:18 PM

At a bit of a loss with this fellas, have the 7.0 pro clean disk but I noticed quite a few updates? Do I need the 707 cumulative pack or does it require the 705 one first. Require english pack.

Cheers

MC.

#44 User is offline   InViSibLe Gr 

  • huh?
  • PipPip
  • Group: Members
  • Posts: 131
  • Joined: 01-January 06

Posted 22 March 2006 - 04:30 PM

@AngelOfCake
thanks a lot man! it works! i just tested on vmware
it activates acrobat BUT if acrobat sees something differend in your hardware asks you for re-activation

@MAVERICKS CHOICE
i tried to integrate 7.0.7 alone but it didnt you need to integrate 7.0.5 and then 7.0.7

download this 7.07 update :

http://ardownload.adobe.com/pub/adobe/acro...07_efgj_cum.exe

it has a subfolder with 7.0.5 inside

This post has been edited by InViSibLe Gr: 22 March 2006 - 04:31 PM


#45 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 22 March 2006 - 06:47 PM

View PostInViSibLe Gr, on Mar 23 2006, 09:30 AM, said:

@AngelOfCake
thanks a lot man! it works! i just tested on vmware
it activates acrobat BUT if acrobat sees something differend in your hardware asks you for re-activation

@MAVERICKS CHOICE
i tried to integrate 7.0.7 alone but it didnt you need to integrate 7.0.5 and then 7.0.7

download this 7.07 update :

http://ardownload.adobe.com/pub/adobe/acro...07_efgj_cum.exe

it has a subfolder with 7.0.5 inside


OK so simply slipstream that update to the admin install source then?

Cheers
MC.

#46 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 23 March 2006 - 06:03 PM

Slipped the update you mentioned AcroProUpd707_efgj_cum.exe youre right it has the cumulative 705 built in. However once slipstreamed appears only as 705 & prog complains it should be updated to 707?
Is there a seperate update to 705 instead of the cumulative one?
If I manually apply the cumulative 707 patch after the silent install it works ok. Would like a totally up to date ver tho.

Cheers

MC.

This post has been edited by MAVERICKS CHOICE: 23 March 2006 - 06:04 PM


#47 User is offline   InViSibLe Gr 

  • huh?
  • PipPip
  • Group: Members
  • Posts: 131
  • Joined: 01-January 06

Posted 23 March 2006 - 08:01 PM

i had slipstreamed the 705 update that is in the subfolder of the 707 update i told you to dl and then the 707 it worked fine and it appears as 707
i made an 705 folder and an 707 folder extraxt them inside as post #1 says
and i integrated them as post #4 says
msiexec /p Ac705PrP_efgj.msp /a C:\AcroPro\AcroPro.msi /qb!  FOR THE 705

and the same code and changed the Ac705PrP_efgj.msp with 707 msp name for the 707 update

read both posts #1 and #4 and you'll understant how
and after you done this to avoid an error that happeneneds when you try to install it after you integrate 707 read post #37
i have done it this way and i have tested it and it installed with no problems
good luck :hello:

This post has been edited by InViSibLe Gr: 23 March 2006 - 08:05 PM


#48 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

Posted 24 March 2006 - 05:09 AM

Thanks dude took ya advice all solid now.

Cheers
MC.

#49 User is offline   MAVERICKS CHOICE 

  • The Guy from Aus
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,604
  • Joined: 14-November 03

  Posted 01 April 2006 - 02:27 AM

View PostAngelOfCake, on Mar 21 2006, 08:19 AM, said:

My apologies for bumping an old thread but I think I may of found a way to silently activate Acrobat.

1. install and activate Acrobat

2. copy the contents of the following folders. (I used winrar to compress them and extract them silently)

C:\Program Files\Common Files\Adobe Systems Shared
C:\Documents and Settings\All Users\Application Data\Adobe Systems
C:\Documents and Settings\Administrator\Local Settings\Application Data\Adobe\Acrobat\7.0\Cache

3. the next time you install; extract/copy the contents back to these same folders.

I tried this on virtual machine and it seams to work. also you may have to replace "Administrator" with your own user name. Also I don't think you can transfer it to machines with different hardware.



Gave this a try on a vm & seemed ok, just tried on my rigg following a fresh install Ua & worked well. :thumbup

Cheers

MC.

#50 User is offline   LeclercM 

  • Group: Members
  • Posts: 1
  • Joined: 07-April 06

Posted 07 April 2006 - 06:08 AM

Is there an updated procédure to install or upgrade adobe reader 7.0.7 ?
I've found nothing from adobe.
Thank you
Michel

Share this topic:


  • 3 Pages +
  • 1
  • 2
  • 3
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy