How-to guide
NOTE: I do not have any programming experience at all, but I have tried it anyway because I'm here to learn! I've created a batch file and a AutoIt file for the opera setup.
Here's the how-to guide:
At the end of this post there's a download link for you. The zip package contains the following when extracted:
The Plug-ins
I've spotted some nice little info on the Opera website:
Quote
These instructions were written for Opera for Windows.
General plug-in installation instructions
Download the plug-in and start the installation program
If given a choice, install the plug-in for use with Netscape, and not Internet Explorer
Follow the on-screen instructions and complete the installation of the plug-in
Copy the plug-in's ".dll" file(s) to Opera's "Plugins" directory
Go to Opera's Preferences menu and choose Plugins
Press the "Find plugins" button or close Opera and open it again to automatically find the plug-in
Okay you can get your .dll's from several places. I got the most of them out of my Firefox plugins folder!
Place these in the
program\plugins folder.
Opera Skins
Put the skins you downloaded inside the
profile\Skin folder. Make sure they're zip files.
Custom settings
Install Opera for a single user (very important!!) and configure it the way you want it (including skins, bookmarks, plugins and settings).
Next thing, take the opera6.ini and opera6.adr files from the
C:\Program Files\Opera\program\profile directory and place them inside the
profile folder.
Installing Opera silent
Here's an AutoIT Script: (change the 'Icon creation' the way you want it to)
; Launch app.
Run("ow32enen850.exe")
;
; hide windows
AutoItSetOption ( "WinDetectHiddenText", 1 )
;
; Initial Setup Screen
WinWaitActive("Opera 8.5", "Welcome")
WinSetState("Opera 8.5", "Welcome", @SW_HIDE)
Send("!n")
; License
WinWaitActive("Opera 8.5", "Software License")
WinSetState("Opera 8.5", "Software License", @SW_HIDE)
Send("!a")
; Directory Install
WinWaitActive("Opera 8.5", "Select Installation")
WinSetState("Opera 8.5", "Select Installation", @SW_HIDE)
Send("!i")
Send("!n")
; Icon Creation
;------------------------------------------------- Remove the ";" below to disable the option.
WinWaitActive("Opera 8.5", "Icon Creation")
WinSetState("Opera 8.5", "Icon Creation", @SW_HIDE)
;Send("!s") Adds icons to the start menu
;Send("!d") Adds desktop icon
;Send("!q") Adds Quick Launch icon
Send("!n")
; Installation
WinSetState("Opera 8.5", "Ready to", @SW_HIDE)
WinWaitActive("Opera 8.5", "Ready to", @SW_HIDE)
Send("!i")
; Quick start
WinWaitActive("Opera 8.5", "Installation Completed!")
WinSetState("Opera 8.5", "Installation Completed!", @SW_HIDE)
Send("!r")
Sleep(1000)
Send("!f")
You might need to modify the window captions to your language but that shouldn't be much of a problem.
When you're finished, use the 'aut2exe' to compile your script. Name the file: 'ops.exe' When your done, delete the compiler and your .au3 file.
_______________________________________________
If you wish you can wrap it up again and make an sfx or leave it as it is now. Make sure that you launch the install.cmd no matter what method you use. Please, Please, post corrections / suggestions if errors come up. I'm not experienced but on this forum people are. I have other things on my mind for the coming weeks but I'm able to read your reactions.
Download
Have Fun!
This post has been edited by Shoshoni: 29 October 2005 - 01:06 PM