
fourte3n
Content Type
Profiles
Forums
Events
Posts posted by fourte3n
-
-
If you use the 'My Computer opens Explorer' Tweak you may have noticed that it opens 'c:' instead of 'my documents'.
To change this remove the '/e'
EG:
ORIGINAL
;My Computer opens Explorer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Explorer\command]
@="explorer /e"
ALTERED VERSION
;My Computer opens Explorer
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Explorer\command]
@="explorer"
Just thought you may want to add it to your collection, as an option.
It really did take me ages to figure this out!
-
I'll test your theory right now... have the missing files and directories issue. back in 5 minutes.
edit: Im back.... worked! Now I can see all files where before I couldnt. Thanks.
-
I am making an XPDVD with the WPI Menu and wanted to ad Americas Army to the colletion.
While I am sure that the game wont have a silent switch has anyone made an autoIT script for it? thought I'd ask before I make one.
-
Is there a list of 'categories' Or is it just add whatever you want?
-
dam.... oh well. goo work on the prog atm. Im having fun learning it.
-
yep you misunderstood. The program uses 'check boxes' that let you select all options. What im talking about is the selection buttons that only let you select one (of a group) of buttons. Like when in reply you see two buttons to the left of the screen 'Guided Mode' or 'Normal Mode' This would stop you from selecting two office suites or anti viruses or firewalls...
-
Is there a setting to use selection buttons in oder to select between alternate software?
Or maybe drop down menus even? Select Office Suite, Select Graphics Prog, Select AntiVirus....
I mean, you can select between: Office2003 and OpenOffice, that kind of thing.
I also wish to have the utilities grouped in sections.... Office, Graphics, Backup...etc
-
Im trying to find the Registry tweak to remove a-squared from the context menu as it cant be stopped during silent install. I have been going throught the registry with no luck.
thanks.
-
nope. does not work, setup still gets stuck at the same point
Thats funny... since it worked for me.
-
how about this?
REG ADD %KEY%\007 /VE /D "Mozilla Thunderbird 0.9" /f
REG ADD %KEY%\007 /V 1 /D "%systemdrive%\Install\thunderbird\thunderbirdsetup.exe -ms -ispf" /f
-
thankyou very much!!
Now I can spend ages making another Disc...
-
I was wondering if there is a program or script that can run as a program selection menu so when it comes time to install the software it lets you select what you want or dont want... I understand that it sort of defeats the purpose of an "unattended" Disc but It is an interesting idea for a larger Disc (DVD) with multiple programs.
-
Adaware Script 2 - Silent and Kills Processes.
[quote]Run ("AdAware.exe /s")
ProcessWait ("Ad-Aware.exe")
ProcessClose ("Ad-Aware.exe")
ProcessWait ("hh.exe")
ProcessClose ("hh.exe")[/quote] -
EDIT: FTPRush Script (Again... thanks to "gon freecs" my scripter in cotton armor )
[quote]; ----------------------------------------------------------------------------
; Set up our defaults/Variables
; ----------------------------------------------------------------------------
AutoItSetOption ( "WinTitleMatchMode", 1 )
$NAME= "**DELETED**"
$KEY= "**DELETED**"
; ----------------------------------------------------------------------------
; Script Start
; ----------------------------------------------------------------------------
Run ( "FTPRush.exe /S")
ProcessWaitClose ( "FTPRush.exe")
; Runs the installer silently and waits for its end
FileDelete(@DesktopDir & "\FTPRush.lnk")
;Removes the desktop shortcut
Run(@ProgramFilesDir & "\FTPRush\FtpRush.exe")
;A silent install doesn't start ftprush, so it must be done "manually"
WinWaitActive ( "About FTPRush" )
Send ( "{ENTER}" )
WinWaitActive ( "Confirm" )
Send ( "!Y" )
WinWaitActive ( "Enter Key" )
; by default the "name" cell is activated, so just send your name
Send($NAME)
; goes to the "key" cell by pressing tab
Send("{TAB}")
; sends your key
Send($KEY)
; goes to the "ok" button and validate
Send("{TAB 2}{ENTER}")
; Closes ftprush
ProcessClose("FtpRush.exe")[/quote] -
A-Squared 1.5 AutoIT Script
Kills the Update Screen at the end. It seems that in Silent mode the kill doesnt work... someone else may have better luck with that. Until then its as is.
[quote]; ----------------------------------------------------------------------------
;
; AutoIt Version: 3.0
; Language: English
; Platform: Win9x / NT
; Author: fourte3n
;
; Script Function:
; A-Squared 1.5 Free - Install
;
; ----------------------------------------------------------------------------
; ----------------------------------------------------------------------------
; Set up our defaults/Variables
; ----------------------------------------------------------------------------
AutoItSetOption("WinTitleMatchMode", 1)
$SF= "a2freesetup.exe"
; ----------------------------------------------------------------------------
; Script Start
; ----------------------------------------------------------------------------
Run($SF)
WinWaitActive ("Select Setup Language")
Send ("{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("!N")
WinWaitActive ("Setup - a-squared free")
Send("{TAB}" & "{UP}" & "{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{SPACE}" & "{TAB}" & "{SPACE}" & "{TAB}" & "{SPACE}" & "{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
WinWaitActive ("a² Updater")
WinKill("a² Updater", "")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
; ----------------------------------------------------------------------------
; Script End
; ----------------------------------------------------------------------------[/quote] -
DELETED...
-
EDIT: gon freecs has saved my day!
Here is the AutoIT Script for FTPRush
; ----------------------------------------------------------------------------; Set up our defaults/Variables
; ----------------------------------------------------------------------------
AutoItSetOption ( "WinTitleMatchMode", 1 )
$NAME= "**DELETED**"
$KEY= "**DELETED**"
; ----------------------------------------------------------------------------
; Script Start
; ----------------------------------------------------------------------------
Run ( "FTPRush.exe /S")
ProcessWaitClose ( "FTPRush.exe")
; Runs the installer silently and waits for its end
FileDelete(@DesktopDir & "\FTPRush.lnk")
;Removes the desktop shortcut
Run(@ProgramFilesDir & "\FTPRush\FtpRush.exe")
;A silent install doesn't start ftprush, so it must be done "manually"
WinWaitActive ( "About FTPRush" )
Send ( "{ENTER}" )
WinWaitActive ( "Confirm" )
Send ( "!Y" )
WinWaitActive ( "Enter Key" )
; by default the "name" cell is activated, so just send your name
Send($NAME)
; goes to the "key" cell by pressing tab
Send("{TAB}")
; sends your key
Send($KEY)
; goes to the "ok" button and validate
Send("{TAB 2}{ENTER}")
; Closes ftprush
ProcessClose("FtpRush.exe")
Thanks again gon freecs
-
thanks..
-
EDIT: A-Squared AutoIT Script
; ----------------------------------------------------------------------------;
; AutoIt Version: 3.0
; Language: English
; Platform: Win9x / NT
; Author: fourte3n
;
; Script Function:
; A-Squared 1.5 Free - Install
;
; ----------------------------------------------------------------------------
; ----------------------------------------------------------------------------
; Set up our defaults/Variables
; ----------------------------------------------------------------------------
AutoItSetOption("WinTitleMatchMode", 1)
$SF= "a2freesetup.exe"
; ----------------------------------------------------------------------------
; Script Start
; ----------------------------------------------------------------------------
Run($SF)
WinWaitActive ("Select Setup Language")
Send ("{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("!N")
WinWaitActive ("Setup - a-squared free")
Send("{TAB}" & "{UP}" & "{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{SPACE}" & "{TAB}" & "{SPACE}" & "{TAB}" & "{SPACE}" & "{ENTER}")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
WinWaitActive ("a² Updater")
WinKill("a² Updater", "")
WinWaitActive ("Setup - a-squared free")
Send ("{ENTER}")
; ----------------------------------------------------------------------------
; Script End
; ----------------------------------------------------------------------------
Hope it helps you all.
-
I was wondering if when a driver is intergrated is it installed on pc's that dont need it? or is it like other drivers packed within XP that only install when needed.
I just don't want to make two discs.... one for the laptop and one for the main pc.
-
yes as a serial number... I dont know how to find it in the REG.
edit: would this be it?
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\FTPRush]
"Order"=hex:08,00,00,00,02,00,00,00,52,02,00,00,01,00,00,00,05,00,00,00,70,00,\
00,00,00,00,00,00,62,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,50,00,32,\
00,ac,02,00,00,6b,31,2b,4c,20,00,46,6f,72,75,6d,2e,6c,6e,6b,00,2a,00,03,00,\
04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,46,00,6f,00,72,00,75,00,6d,\
00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,\
18,00,00,00,00,00,00,00,00,00,70,00,00,00,01,00,00,00,62,00,00,00,41,75,67,\
4d,02,00,00,00,01,00,00,00,50,00,32,00,ac,02,00,00,6b,31,2b,4c,20,00,4f,72,\
64,65,72,2e,6c,6e,6b,00,2a,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,\
00,00,00,4f,00,72,00,64,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,\
0e,00,00,00,0a,00,ef,be,00,00,00,00,18,00,00,00,00,00,00,00,00,00,74,00,00,\
00,02,00,00,00,66,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,54,00,32,00,\
61,05,00,00,6b,31,2b,4c,20,00,53,63,72,69,70,74,2e,6c,6e,6b,00,00,2c,00,03,\
00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,53,00,63,00,72,00,69,00,\
70,00,74,00,2e,00,6c,00,6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,\
00,00,00,1a,00,00,00,00,00,00,00,00,00,7c,00,00,00,03,00,00,00,6e,00,00,00,\
41,75,67,4d,02,00,00,00,01,00,00,00,5c,00,32,00,26,06,00,00,6b,31,2b,4c,20,\
00,55,6e,69,6e,73,74,61,6c,6c,2e,6c,6e,6b,00,32,00,03,00,04,00,ef,be,6b,31,\
2b,4c,6b,31,2b,4c,14,00,00,00,55,00,6e,00,69,00,6e,00,73,00,74,00,61,00,6c,\
00,6c,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,0e,00,00,00,0a,00,ef,be,00,00,\
00,00,1c,00,00,00,00,00,00,00,00,00,76,00,00,00,04,00,00,00,68,00,00,00,41,\
75,67,4d,02,00,00,00,01,00,00,00,56,00,32,00,b8,02,00,00,6b,31,2b,4c,20,00,\
57,65,62,73,69,74,65,2e,6c,6e,6b,00,2e,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,\
31,2b,4c,14,00,00,00,57,00,65,00,62,00,73,00,69,00,74,00,65,00,2e,00,6c,00,\
6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,1a,00,00,00,00,\
00,00,00,00,00
[HKEY_USERS\S-1-5-21-1454471165-1580436667-854245398-1003\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\FTPRush]
"Order"=hex:08,00,00,00,02,00,00,00,52,02,00,00,01,00,00,00,05,00,00,00,70,00,\
00,00,00,00,00,00,62,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,50,00,32,\
00,ac,02,00,00,6b,31,2b,4c,20,00,46,6f,72,75,6d,2e,6c,6e,6b,00,2a,00,03,00,\
04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,46,00,6f,00,72,00,75,00,6d,\
00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,\
18,00,00,00,00,00,00,00,00,00,70,00,00,00,01,00,00,00,62,00,00,00,41,75,67,\
4d,02,00,00,00,01,00,00,00,50,00,32,00,ac,02,00,00,6b,31,2b,4c,20,00,4f,72,\
64,65,72,2e,6c,6e,6b,00,2a,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,\
00,00,00,4f,00,72,00,64,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,18,00,\
0e,00,00,00,0a,00,ef,be,00,00,00,00,18,00,00,00,00,00,00,00,00,00,74,00,00,\
00,02,00,00,00,66,00,00,00,41,75,67,4d,02,00,00,00,01,00,00,00,54,00,32,00,\
61,05,00,00,6b,31,2b,4c,20,00,53,63,72,69,70,74,2e,6c,6e,6b,00,00,2c,00,03,\
00,04,00,ef,be,6b,31,2b,4c,6b,31,2b,4c,14,00,00,00,53,00,63,00,72,00,69,00,\
70,00,74,00,2e,00,6c,00,6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,\
00,00,00,1a,00,00,00,00,00,00,00,00,00,7c,00,00,00,03,00,00,00,6e,00,00,00,\
41,75,67,4d,02,00,00,00,01,00,00,00,5c,00,32,00,26,06,00,00,6b,31,2b,4c,20,\
00,55,6e,69,6e,73,74,61,6c,6c,2e,6c,6e,6b,00,32,00,03,00,04,00,ef,be,6b,31,\
2b,4c,6b,31,2b,4c,14,00,00,00,55,00,6e,00,69,00,6e,00,73,00,74,00,61,00,6c,\
00,6c,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,0e,00,00,00,0a,00,ef,be,00,00,\
00,00,1c,00,00,00,00,00,00,00,00,00,76,00,00,00,04,00,00,00,68,00,00,00,41,\
75,67,4d,02,00,00,00,01,00,00,00,56,00,32,00,b8,02,00,00,6b,31,2b,4c,20,00,\
57,65,62,73,69,74,65,2e,6c,6e,6b,00,2e,00,03,00,04,00,ef,be,6b,31,2b,4c,6b,\
31,2b,4c,14,00,00,00,57,00,65,00,62,00,73,00,69,00,74,00,65,00,2e,00,6c,00,\
6e,00,6b,00,00,00,1a,00,0e,00,00,00,0a,00,ef,be,00,00,00,00,1a,00,00,00,00,\
00,00,00,00,00
-
thanks... anyone know about registering? Im trialing some ideas now... bt thought it smart to ask as well.
-
I am looking for the switches for FTPRush (yes I searched)
also any other relavent info, eg: registering.
thankyou in advance...
-
use the search function...
Top 20 Unattended Apps?
in Application Installs
Posted
My must haves...
1. Firefox 1.5
2. OpenOffice 2.0
3. Nod32
4. WinRAR 3.51
5. PaintShopPro X
6. Adaware SE
7. KLite Basic
8. Quicktime Alternative
9. Xpize
10. WMP 10
11. Corel 12
12. FileZilla
13. Free Download Manager
14. Nero
15. Flash
Other Programs that are 'must haves but not installed
16. utorrent
17. foxitPDF
18. emule
19. notepad2
20. WinDoc