MSFN Forum: Help| No-IP Auto Installation - 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
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Help| No-IP Auto Installation Rate Topic: -----

#1 User is offline   nirh 

  • Newbie
  • Group: Members
  • Posts: 33
  • Joined: 29-January 08

Posted 30 July 2008 - 06:07 AM

Hi,

Can anyone help me out and make me an autoit setup for No-IP Software..

Here is the app:
------------------
http://dw.com.com/redir?edId=3&siteId=...896318f94a208c6

just remove the 2 view items at the end of the installation.. and that's it! perfect!

Thanks!!!


#2 User is offline   radix 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 702
  • Joined: 08-February 07

Posted 30 July 2008 - 03:16 PM

View Postnirh, on Jul 30 2008, 03:07 PM, said:

Hi,
Can anyone help me out and make me an autoit setup for No-IP Software..

Check this one:
Opt("TrayIconDebug", 1)

; Installer file name
$Installer = "ducsetup.exe"
; Windows title
$Title = "Installing No-IP DUC v2.2.1"
; Detect the Operating System type (32 bit or 64 bit)
$OS = _OSBit()

If $OS = 32 Then
   ; Installation folder
	$Installocation = @ProgramFilesDir & "\No-IP"
	$PreviousInstallation = RegRead("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\No-IP.com DUC", "UninstallString")
	If StringRight($PreviousInstallation, 12) = '" -uninstall' Then
		$PreviousInstallation = StringTrimRight($PreviousInstallation, 12)
	EndIf
	If StringLeft($PreviousInstallation, 1) = '"' Then
		$PreviousInstallation = StringTrimLeft($PreviousInstallation, 1)
	EndIf
	If FileExists($PreviousInstallation) Then
		MsgBox(0x40010, @ScriptName, "Please uninstall previous version of No-IP.com DUC before using this script", 4)
		Exit
	EndIf
EndIf

If $OS = 64 Then
   ; Installation folder
	$Installocation = @HomeDrive & "\Program Files (x86)\No-IP"
	$PreviousInstallation = RegRead("HKLM\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\No-IP.com DUC", "UninstallString")
	If StringRight($PreviousInstallation, 12) = '" -uninstall' Then
		$PreviousInstallation = StringTrimRight($PreviousInstallation, 12)
	EndIf
	If StringLeft($PreviousInstallation, 1) = '"' Then
		$PreviousInstallation = StringTrimLeft($PreviousInstallation, 1)
	EndIf
	If FileExists($PreviousInstallation) Then
		MsgBox(0x40010, @ScriptName, "Please uninstall previous version of No-IP.com DUC before using this script", 4)
		Exit
	EndIf
EndIf

; Run the installer
Run($Installer)

; Introduction
WinWait($Title, "Introduction")
WinActivate($Title, "Introduction")
ControlClick($Title, "", "TButton2")

; Installer Setup
WinWait($Title, "Installer Setup")
WinActivate($Title, "Installer Setup")
ControlSetText($Title, "", "TJvDirectoryEdit1", "")
Sleep(1000)
ControlSetText($Title, "", "TJvDirectoryEdit1", $Installocation)
ControlCommand($Title, "", "TCheckBox3", "UnCheck", "")
ControlCommand($Title, "", "TCheckBox2", "UnCheck", "")
ControlCommand($Title, "", "TCheckBox1", "UnCheck", "")
ControlClick($Title, "", "TButton2")

; Copy Files
WinWait($Title, "Copy Files")
WinActivate($Title, "Copy Files")
ControlClick($Title, "", "TButton2")

Func _OSBit()
	Local $tOS = DllStructCreate("char[256]")
	Local $aGSWD = DllCall("Kernel32.dll", "int", "GetSystemWow64Directory", "ptr", DllStructGetPtr($tOS), "int", 256)
	If IsArray($aGSWD) And DllStructGetData($tOS, 1) Then Return 64
	Return 32
EndFunc


#3 User is offline   nirh 

  • Newbie
  • Group: Members
  • Posts: 33
  • Joined: 29-January 08

Posted 30 July 2008 - 04:47 PM

WoW !!!

Thanks you man!

fast! and best..

I've test it a minute ago and it works like a magic!!!!

really thanks!!!

#4 User is offline   sp00f 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 712
  • Joined: 30-November 06

Posted 31 July 2008 - 05:55 PM

http://rapidshare.co.../NO_IP.EXE.html switchless installer

Share this topic:


Page 1 of 1
  • 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