Jump to content

Nero Oem & Nero Burn Rights Installer


rnj
 Share

Recommended Posts

NERO OEM & NERO BURN RIGHTS INSTALLER ( Pulls the setup file from network, checks if NERO is already installed, installs NERO OEM and NERO BURN RIGHTS,sets permission and reboots computer). Useful for multiple installations on the network.

Beginner level script.

; ----------------------------------------------------------------------------

;

; AutoIt Version: 3.1.0

; Author: RnJ (rnjayaus@gmail.com)

;

; Script Function:

; NERO OEM + NERO BURN SOFTWARE AUTO INSTALL

;

; ----------------------------------------------------------------------------

; Script Start - Add your code below here

SplashTextOn("NERO AUTO INSTALL Version.1.7", "This is an automated install of NERO OEM and Burn Rights!",200,150)

Sleep(7000)

SplashOff()

If FileExists("C:\Program Files\Ahead") Then

SplashTextOn("NERO AUTO INSTALL", "Previous version of NERO found, Deleting previous version...",200,75)

Sleep(5000)

SplashOff()

DirRemove("C:\Program Files\Ahead", 1)

Sleep(5000)

SplashTextOn("NERO AUTO INSTALL", "Installing NERO OEM...",100,75)

Sleep(5000)

SplashOff()

$pid=Run("\\Network Path\Nero 6 OEM\Nero OEM\Setup.exe")

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","",1042)

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","",1047)

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","",1042)

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","Customer information.",1042)

WinWait("Nero OEM Installation Wizard","Nero OEM installation in progress")

WinWait("Nero OEM Installation Wizard","The Wizard has completed the installation successfully",180)

ControlClick("Nero OEM Installation Wizard","",1040)

ProcessWaitClose($pid)

Else

SplashTextOn("NERO AUTO INSTALL", "Installing NERO OEM...",100,75)

Sleep(5000)

SplashOff()

$pid=Run("\\Network Path\Nero 6 OEM\Nero OEM\Setup.exe")

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","",1042)

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","",1047)

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","",1042)

WinWait("Nero OEM Installation Wizard")

ControlClick("Nero OEM Installation Wizard","Customer information.",1042)

WinWait("Nero OEM Installation Wizard","Nero OEM installation in progress")

WinWait("Nero OEM Installation Wizard","The Wizard has completed the installation successfully",180)

ControlClick("Nero OEM Installation Wizard","",1040)

ProcessWaitClose($pid)

EndIf

Sleep(5000)

If FileExists("C:\Program Files\Ahead\NeroBurnRights") Then

SplashTextOn("NERO AUTO INSTALL", "NERO Burn Rights already installed,install aborted...",150,100)

Sleep(5000)

SplashOff()

Exit

Else

SplashTextOn("NERO AUTO INSTALL", "Burn Rights will install in 5 seconds...",100,75)

Sleep(5000)

SplashOff()

$sid=Run("\\Network Path\CD Burn Software\Nero 6 OEM\Nero BurnRights\setup.exe")

WinWait("Nero BurnRights Installation Wizard")

ControlClick("Nero BurnRights Installation Wizard","",1042)

WinWait("Nero BurnRights Installation Wizard","Nero BurnRights installation in progress")

Sleep(5000)

WinWait("Nero BurnRights Installation Wizard")

ControlClick("Nero BurnRights Installation Wizard","",1040)

Sleep(5000)

Send("{DOWN}")

Send("{TAB}")

Send("{SPACE}")

Sleep(1000)

Send("{SPACE}")

ProcessWaitClose($sid)

EndIf

Exit

nero_auto_install_v_1.1_full.au3

[font="Franklin Gothic Medium"]RnJ[/font][font="Franklin Gothic Medium"]Script: AutoIT v3.1.1.124 (beta)[/font][font="Franklin Gothic Medium"]OS: Windows XP/2000[/font]
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...