IPB

Google Frontpage Forums Unattended CD/DVD Guide

> 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

2 Pages V   1 2 >  
Reply to this topicStart new topic
> Adobe Audition 1.5
Orsi
post Oct 8 2004, 11:42 PM
Post #1


Hasta la Windows Vista, baby
**

Group: Members
Posts: 179
Joined: 9-October 03
From: Sao Paulo
Member No.: 7894
OS: Vista Ultimate x64
Country Flag


hey guys, anybody has found some way to silently install Adobe After Effects 6.5 or Adobe Audition 1.5?

Since After Effects' instaler is a .msi file I haven't found a way to register it

Audition uses a Install Shield installer but it don't use a abcpy.ini file like the other Adobe's softwares and the -s switch don't work...
any help?
Go to the top of the page
 
+Quote Post
mazin
post Oct 9 2004, 03:09 AM
Post #2


MSFN Addict
Group Icon

Group: Supreme Sponsors
Posts: 1952
Joined: 12-January 04
Member No.: 12365
OS: XP Pro x86
Country Flag


Adobe Audition 1.5 is an MSI, too. Look in your %TEMP% after running the EXE.
Go to the top of the page
 
+Quote Post
TheJerk
post Apr 15 2005, 09:16 AM
Post #3


Newbie


Group: Members
Posts: 39
Joined: 8-April 05
Member No.: 51071
Country Flag


Sorry to gravedig, but this is the first thread I was able to find regarding the silent install of Audition.

My ?: is there a way to pass along the serial # during the silent install?
Go to the top of the page
 
+Quote Post
pharao2k
post Apr 16 2005, 01:46 AM
Post #4





Group: Members
Posts: 4
Joined: 19-August 04
From: Mannheim
Member No.: 28151
OS: Vista Business x64
Country Flag


Hi!!

I had this problem with Adobe Audition, too.
Well well, I tried quiet some methods to silently install Audition, but with no real luck. So I just thought, if you can't silent it, AutoIt-it!

I made a little script, which works perfectly for me. The file is attached, maybe you need to modify some of the dialog names for different languages or so.

Have fun and let me know if it worked!!

C Ya!!
Attached File(s)
Attached File  adobeaudition.au3 ( 1.81K ) Number of downloads: 91
 
Go to the top of the page
 
+Quote Post
TheJerk
post Apr 16 2005, 07:28 AM
Post #5


Newbie


Group: Members
Posts: 39
Joined: 8-April 05
Member No.: 51071
Country Flag


Thanks. I haven't really spent much time looking at AutoIt, so I guess this is the motivation I need. Thanks!
Go to the top of the page
 
+Quote Post
mazin
post Apr 16 2005, 02:58 PM
Post #6


MSFN Addict
Group Icon

Group: Supreme Sponsors
Posts: 1952
Joined: 12-January 04
Member No.: 12365
OS: XP Pro x86
Country Flag


Adobe Audition 1.5


1- Run your EXE.

2- Stop at the first setup screen.

- Go to Start --> Run. Type %TEMP%. Hit Enter.
- In your Temp directory, you find a folder named like _is5F or whatever.
- Inside _is5F, there's "Adobe Audition 1.5.msi"!
- Copy your MSI from %TEMP%\_is5F\Adobe Audition 1.5.msi to your XPCD:

X:\XPCD\$OEM$\$1\Install\Audition\Audition.msi (renamed)


Your batch:
QUOTE
cls
@echo off
ECHO.
Echo Adobe Audition 1.5 Build 4124.1
start /wait %systemdrive%\Install\Audition\Audition.msi /qn ISX_SERIALNUMBER=####-####-####-####-####-#### COMPANYNAME="Your Company" USERNAME="Your Name" REBOOT=ReallySuppress
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86EF9FC4-F209-4520-B7E1-C7FF0EEBDFFF} /v NoRemove /t REG_DWORD /d 0 /f
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86EF9FC4-F209-4520-B7E1-C7FF0EEBDFFF} /v NoRepair /t REG_DWORD /d 0 /f
Del "%AllUsersProfile%\Desktop\Adobe Audition 1.5.lnk"
EXIT
Go to the top of the page
 
+Quote Post
TheJerk
post Apr 17 2005, 05:07 PM
Post #7


Newbie


Group: Members
Posts: 39
Joined: 8-April 05
Member No.: 51071
Country Flag


Thanks, Mazin. That's a huge help.
Go to the top of the page
 
+Quote Post
mazin
post Apr 18 2005, 03:41 PM
Post #8


MSFN Addict
Group Icon

Group: Supreme Sponsors
Posts: 1952
Joined: 12-January 04
Member No.: 12365
OS: XP Pro x86
Country Flag


QUOTE (TheJerk @ Apr 18 2005, 01:07 AM)
Thanks, Mazin.  That's a huge help.
*


You're welcome.

Still, there's another way using your encrypted serial from the registry (via a reg file) along with /qn REBOOT=ReallySuppress as above.

QUOTE (Audition.reg)
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86EF9FC4-F209-4520-B7E1-C7FF0EEBDFFF}]
"Serial"="#####EncryptedSerial####"
"NAME"="Your Name"
"COMPAN"="Your Company"


QUOTE (your batch)
cls
@echo off
ECHO.
Echo Adobe Audition 1.5 Build 4124.1
REGEDIT /S %systemdrive%\Install\Audition\Audition.reg
start /wait %systemdrive%\Install\Audition\Audition.msi /qn REBOOT=ReallySuppress
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86EF9FC4-F209-4520-B7E1-C7FF0EEBDFFF} /v NoRemove /t REG_DWORD /d 0 /f
REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86EF9FC4-F209-4520-B7E1-C7FF0EEBDFFF} /v NoRepair /t REG_DWORD /d 0 /f
Del "%AllUsersProfile%\Desktop\Adobe Audition 1.5.lnk"
EXIT


Still, pharao2k's script is helpful, too.
Go to the top of the page
 
+Quote Post
TheJerk
post Apr 18 2005, 05:18 PM
Post #9


Newbie


Group: Members
Posts: 39
Joined: 8-April 05
Member No.: 51071
Country Flag


Yea, I'm still contemplating what I want to use. I love silent installs because you don't have to see it being installed. But at the same time, with AutoIt I can create a script for every application instead of hunting down all of the switches.
Go to the top of the page
 
+Quote Post
manc
post Apr 30 2005, 08:13 AM
Post #10





Group: Members
Posts: 1
Joined: 30-April 05
Member No.: 54165
Country Flag


Hi, I'm New to the board but not of your standard when it comes to these things. I have a serial for Adobe Audition 1.5, can you spoon feed me how to get it registered. Thanks
Go to the top of the page
 
+Quote Post
thuun derboy
post Oct 10 2005, 09:22 AM
Post #11


Member
**

Group: Members
Posts: 111
Joined: 6-March 05
From: New York, NY.
Member No.: 46536
Country Flag


gave batch file a whirl...didn't work...same old forking problem, anyone else receive such trouble? (see image 2)
also getting bloody data execution shutdown message at end of ANY install with Audition 1.5. which may or may not be issue if added to windows setup (usin' xp right now).
Adobe just purchased this from the original coders_____ MR. BIG BUKS
post solution if found, no auto it please....
THX!

This post has been edited by thuun derboy: Oct 10 2005, 09:56 AM
Attached File(s)
Attached File  aa15.jpg ( 6.1K ) Number of downloads: 3
Attached File  aa3.jpg ( 18K ) Number of downloads: 11
 
Go to the top of the page
 
+Quote Post
homeskillet
post Oct 13 2005, 04:52 PM
Post #12


Newbie


Group: Members
Posts: 31
Joined: 1-October 03
From: Jackson, MI
Member No.: 7606
OS: Vista Ultimate x86
Country Flag


You have to shut off DEP before installing (I believe). There was a big discussion about it on the Adobe Audition Forum
When you go to the link, click on "Log in as a Guest" to see the topic discussion. Read messages 5 - 13.

Check it out, it may help you decide if you need to shut off DEP temporarily to get this bugger installed.

Homeskillet

This post has been edited by homeskillet: Oct 13 2005, 04:55 PM
Go to the top of the page
 
+Quote Post
Elph
post Oct 14 2005, 03:36 PM
Post #13





Group: Members
Posts: 1
Joined: 14-October 05
Member No.: 76627
Country Flag


I messed with this for awhile, finally got a silent install to work.
What I did was the following:

1) I use AdminStudio, so I did a multistep snapshot. took the inital snapshot.
2) Installed Audition 1.5 all the way thru
3) Took the second snapshot.

Once that was done, I ran it thru the repackager to get the MSI. If you do nothing else, you'll get the DEP that everyone else was encountering and the program wont run. To get around this:

1) Exported the following from the machine I installed Audition on:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{86EF9FC4-F209-4520-B7E1-C7FF0EEBDFFF}
2) using AdminStudio's Editor, I added that the to the MSI that I had created.

From there, I distributed it to the machines I needed thru SMS. I made sure to have SMS reboot after the program was done installed. After it rebooted I was able to run the program fine.

Hope this helps.
Go to the top of the page
 
+Quote Post
thuun derboy
post Oct 15 2005, 08:30 PM
Post #14


Member
**

Group: Members
Posts: 111
Joined: 6-March 05
From: New York, NY.
Member No.: 46536
Country Flag


just gave this ONE more shot before altering original MSI...
stupid adobe! what the @$#!?&%?!
made sure to reboot...nada, same error..."unknown"
guess it's time to break out a repacker, though,
SOMEONE must have a simple solution somewhere.
_anybody?!
thx.

This post has been edited by thuun derboy: Oct 15 2005, 08:31 PM
Go to the top of the page
 
+Quote Post
RogueSpear
post Oct 16 2005, 02:56 PM
Post #15


OS: SimplyMEPIS
Group Icon

Group: Normal Sponsors
Posts: 1529
Joined: 18-September 04
From: Buffalo, NY
Member No.: 31429
OS: none
Country Flag


I made a silent switchless installer of this one. What a pain in butt too. First I had to tweak the msi file so that it would let me make AIP and while I was in there I nuked all of the foreign language parts. You need to go under custom actions I believe and there's an action under Admin Install to delete. I don't remember the name of it now, but when you're in there it's obvious which one to delete.

Then I found that you must pass the serial on the command line, you can't put it in the msi file or even pass it through using an mst file. So my last issue was the dreaded DEP problem. Well I discovered that if I call the switchless silent exe I made from svcpack.inf, that it installs without any problems. Apparantly DEP isn't yet active at that stage of setup. Here's the best part - the install exe file is only 15MB.
Go to the top of the page
 
+Quote Post
ironside
post Jan 24 2006, 11:47 AM
Post #16


Member
**

Group: Members
Posts: 214
Joined: 10-August 04
Member No.: 26890
Country Flag


On Adobe Audition 2.0 i get the "you must restart your computer" etc dialog,
I've tried using the Adobe Audition 2.0.msi /qn REBOOT=ReallySuppress switches which will install ok except i get the restart dialog, Any idea's anyone please ?

tnank's

This post has been edited by ironside: Jan 24 2006, 11:52 AM
Go to the top of the page
 
+Quote Post
DJPrecise
post Feb 27 2008, 09:58 PM
Post #17





Group: Members
Posts: 2
Joined: 27-February 08
Member No.: 179292
OS: XP Home
Country Flag


QUOTE (pharao2k @ Apr 16 2005, 12:46 AM) *
Hi!!

I had this problem with Adobe Audition, too.
Well well, I tried quiet some methods to silently install Audition, but with no real luck. So I just thought, if you can't silent it, AutoIt-it!

I made a little script, which works perfectly for me. The file is attached, maybe you need to modify some of the dialog names for different languages or so.

Have fun and let me know if it worked!!

C Ya!!


Pharao2k, please if you can post more detailed instructions for the Auto-It install I would appreciate it. I'm not sure how to do this.. Thanks!!
Go to the top of the page
 
+Quote Post
gods
post Feb 28 2008, 01:55 PM
Post #18


Newbie


Group: Members
Posts: 12
Joined: 6-July 07
Member No.: 145709
OS: Vista Ultimate x86
Country Flag


not have the autoit script for the adobe audition 3.0? the 1.5 is very old! thanks

thumbup.gif
Go to the top of the page
 
+Quote Post
radix
post Feb 28 2008, 02:56 PM
Post #19


Senior Member
****

Group: Members
Posts: 624
Joined: 8-February 07
Member No.: 125681
OS: XP Pro x86
Country Flag


QUOTE (gods @ Feb 28 2008, 09:55 PM) *
not have the autoit script for the adobe audition 3.0? the 1.5 is very old! thanks

thumbup.gif

CODE
components.msi /qb! /norestart

or
CODE
components.msi /qn /norestart

is not enough?
Go to the top of the page
 
+Quote Post
gods
post Feb 28 2008, 09:24 PM
Post #20


Newbie


Group: Members
Posts: 12
Joined: 6-July 07
Member No.: 145709
OS: Vista Ultimate x86
Country Flag


QUOTE (radix @ Feb 28 2008, 06:56 PM) *
QUOTE (gods @ Feb 28 2008, 09:55 PM) *
not have the autoit script for the adobe audition 3.0? the 1.5 is very old! thanks

thumbup.gif

CODE
components.msi /qb! /norestart

or
CODE
components.msi /qn /norestart

is not enough?


Any not work, i was try.... but, for it install normaly is need to use the setup.exe
because this i need the autoit script!

bye
Go to the top of the page
 
+Quote Post

Google Frontpage Forums Unattended CD/DVD Guide

2 Pages V   1 2 >
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 




Lo-Fi Version Time is now: 22nd November 2009 - 04:36 PM
All trademarks mentioned on this page are the property of their respective owners
MSFN is not affiliated with Microsoft
Copyright © 2001-2009 msfn.org
Privacy Policy