MSFN Forum: vlc media player extra options - 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

vlc media player extra options Rate Topic: -----

#1 User is offline   ripken204 

  • The Hardware Guy
  • PipPipPipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 6,311
  • Joined: 23-December 04
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 30 August 2005 - 06:57 PM

the switch for vlc is /S but the problem is that i want to do a full install where i click some boxes for what i want to install. does any1 know how i should do this via a switch or should i just use autoit??


#2 User is offline   glent 

  • Tpyo Spceialist
  • PipPipPipPipPipPip
  • Group: Members
  • Posts: 1,041
  • Joined: 16-August 04

Posted 31 August 2005 - 12:54 AM

Try the Saveinf command here
http://www.appdeploy...etail.asp?id=13
Then use the loadinf when you install

#3 User is offline   MHz 

  • SendToA3X v1.7
  • PipPipPipPipPipPipPip
  • Group: Members
  • Posts: 1,634
  • Joined: 02-August 04

Posted 31 August 2005 - 05:16 AM

VideoLAN uses the NSIS Installer. NSIS supports /S, /D=InstallPath or /NCRC for no crc checking. Unless the author adds more switches to the NSIS Installer, which is rare, then that is it.

#4 User is offline   ckislam 

  • Islam Adel
  • PipPip
  • Group: Members
  • Posts: 141
  • Joined: 04-September 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 05 February 2008 - 03:19 AM

When I use the /S switch, the mozilla Plugin doesn't get installed. If anyone know, how i can get it installed, let me know.

Thanks

#5 User is offline   radix 

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

Posted 05 February 2008 - 03:30 AM

View Postckislam, on Feb 5 2008, 11:19 AM, said:

When I use the /S switch, the mozilla Plugin doesn't get installed. If anyone know, how i can get it installed, let me know.

Because /S switch will install with the default options (recommended).

#6 User is offline   ckislam 

  • Islam Adel
  • PipPip
  • Group: Members
  • Posts: 141
  • Joined: 04-September 05
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 05 February 2008 - 01:39 PM

So, is there a way to install with FULL options?

#7 User is offline   radix 

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

Posted 05 February 2008 - 02:35 PM

View Postckislam, on Feb 5 2008, 09:39 PM, said:

So, is there a way to install with FULL options?

Which components do you need from these:
start menu shortcut
desktop shortcut
Mozilla plugin
ActiveX plugin
Context Menus
File type associations
Delete preferences and cache?

#8 User is offline   radix 

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

Posted 05 February 2008 - 03:37 PM

Try this:
 
#cs ----------------------------------------------------------------------------

 AutoIt Version: 3.2.10.0
 Author:         myName
 
 VLC media player 0.8.6d

 Script Function:
	Template AutoIt script.

#ce ----------------------------------------------------------------------------

; Script Start - Add your code below here

Opt("TrayIconDebug", 1)
Opt("SendKeyDelay", 200)
; Executable file name
$EXECUTABLE = "vlc-0.8.6d-win32.exe"
; Start menu shortcut
$StartMenu = "1"
; Desktop shortcut
$Desktop = "1"
; Mozilla plugin
$Mozilla = "1"
; ActiveX plugin
$ActiveX = "1"
; Context menus
$Context = "1"
; File type associations
$FileAssoc = 1
; Delete preferences and cache
$Cache = "1"
; Installation folder
$INSTALLLOCATION = @ProgramFilesDir & "\VideoLAN\VLC"

If FileExists($INSTALLLOCATION & "\vlc.exe") Then
	MsgBox(0x40010, @ScriptName, "Please uninstall previous version of VLC media player before using this script", 4)
	Exit
EndIf

; Run the installer
Run($EXECUTABLE)

; Please select a language.
WinWait("Installer Language", "Please select a language.")
WinActivate("Installer Language", "Please select a language.")
ControlClick("Installer Language", "", "Button1")

; Welcome to the VideoLAN VLC media player 0.8.6d Setup Wizard
WinWaitActive("VideoLAN VLC media player 0.8.6d Setup", "Welcome to the VideoLAN VLC media player 0.8.6d Setup Wizard")
ControlClick("VideoLAN VLC media player 0.8.6d Setup", "", "Button2")

; License Agreement
WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "License Agreement")
ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2")

; Choose Components
WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "Choose Components")
Send("{TAB}")
Send("{DOWN}")
If $StartMenu = 0 Then
	Send("{SPACE}")
EndIf
Send("{DOWN}")
If $Desktop = 0 Then
	Send("{SPACE}")
EndIf
Send("{DOWN}")
If $Mozilla = 1 Then
	Send("{SPACE}")
EndIf
Send("{DOWN}")
If $ActiveX = 0 Then
	Send("{SPACE}")
EndIf
Send("{DOWN}")
If $Context = 1 Then
	Send("{SPACE}")
EndIf
Send("{DOWN}")
If $FileAssoc = 0 Then
	Send("{SPACE}")
EndIf
Send("{DOWN}")
If $Cache = 1 Then
	Send("{SPACE}")
EndIf
ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2")

; Choose Install Location
WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "Choose Install Location")
ControlSetText("VideoLAN VLC media player 0.8.6d Setup ", "", "Edit1", "")
Sleep(1000)
ControlSetText("VideoLAN VLC media player 0.8.6d Setup ", "", "Edit1", $INSTALLLOCATION)
ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2")

; Completing the VideoLAN VLC media player 0.8.6d Setup Wizard
WinWaitActive("VideoLAN VLC media player 0.8.6d Setup ", "Completing the VideoLAN VLC media player 0.8.6d Setup Wizard")
ControlCommand("VideoLAN VLC media player 0.8.6d Setup ", "", "Button4", "UnCheck", "")
ControlClick("VideoLAN VLC media player 0.8.6d Setup ", "", "Button2") 

Edit variables from the top to meet your desire.

This post has been edited by radix: 05 February 2008 - 03:55 PM


#9 User is offline   targa 

  • Newbie
  • Group: Members
  • Posts: 27
  • Joined: 05-March 05

Posted 05 April 2009 - 02:21 AM

1. Download and install nsis from http://nsis.sourceforge.net/Download. This will let you recompile the installation program.
2. Download and extract the VLC Windows Zip package from http://www.videolan....ad-windows.html.
3. Open the vlc.win32.nsi file with Notepad

4. The component list begins at about line 502. Component look like "Section "Component Name" SEC0#. If a '/o' is in front of the component name, remove the '/o' e.g. Section $Name_Section03 SEC03

5. Change SectionIn from 3 to 1 2 3

6. That's all..compile script.

If you don't want VLC to be associated with some file types, put a semicolon in front of the line containing that extension.

This post has been edited by targa: 05 April 2009 - 07:44 AM


#10 User is offline   targa 

  • Newbie
  • Group: Members
  • Posts: 27
  • Joined: 05-March 05

Posted 08 July 2009 - 10:18 AM

vlc 1.0.0 is out :thumbup

This post has been edited by targa: 08 July 2009 - 10:20 AM


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