vlc media player extra options
#1
Posted 30 August 2005 - 06:57 PM
#2
Posted 31 August 2005 - 12:54 AM
http://www.appdeploy...etail.asp?id=13
Then use the loadinf when you install
#3
Posted 31 August 2005 - 05:16 AM
#4
Posted 05 February 2008 - 03:19 AM
Thanks
#5
Posted 05 February 2008 - 03:30 AM
#7
Posted 05 February 2008 - 02:35 PM
#8
Posted 05 February 2008 - 03:37 PM
#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
Posted 05 April 2009 - 02:21 AM
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
Posted 08 July 2009 - 10:18 AM
This post has been edited by targa: 08 July 2009 - 10:20 AM



Help

Back to top










