IPB

Google Frontpage Forums Unattended CD/DVD Guide
 Forum Rules Unattended CD/DVD Guide Homepage · MSFN Forum Rules
7 Pages V   1 2 3 > »   
Reply to this topicStart new topic
> kTool (just another software selector)
kenedy
post Sep 23 2004, 06:09 AM
Post #1


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


AutoIt script for selecting/installing software.
kTool v1.1a
Source code

Features:
Works in GUI/Silent mode
Can work from GuiRunOnce/cmdlines.txt/Detached
Supports restarting (if any of installed software requires restart, PC is restarted and program execution is continued)
Autologon - if restarts are needed it (optionally) asks for currently logged on user password and writes autologon information to registry. Only required number of logons are written. Currently Win2000/XP only.
Separate software list for each Windows version (95/98/NT4/ME/2000/XP)

Full description

Screenshots:
Main GUI:


Progress type 1:


Progress type 2:


ChangeLog

Older versions:
1.0c
First version
Go to the top of the page
 
+Quote Post
kenedy
post Sep 23 2004, 06:10 AM
Post #2


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


Removed
Link to file is moved to first post.

This post has been edited by kenedy: Sep 29 2004, 08:13 AM
Go to the top of the page
 
+Quote Post
evilvoice
post Sep 23 2004, 06:26 AM
Post #3


Ditchy McAbandonpants
*****

Group: Members
Posts: 946
Joined: 27-January 04
Member No.: 13226
Country Flag


very nice tool...one thing I would like to say is I notice ktool can have parameters passed to it, maybe you could include a parameter string so that say someone could run ktool 1,3,4,7,8,10...which would in turn silently install the first app header listed in file.ini, then 3,4,7,8, and lastly 10, just a suggestion...I would say something about avlable, but you said not to mention the layout...
Go to the top of the page
 
+Quote Post
kenedy
post Sep 23 2004, 06:41 AM
Post #4


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


QUOTE
maybe you could include a parameter string so that say someone could run ktool 1,3,4,7,8,10...which would in turn silently install the first app header listed in file.ini, then 3,4,7,8, and lastly 10, just a suggestion...

This can be done but I can't imagine situation when this will be usefull. Can you explain it.
Go to the top of the page
 
+Quote Post
evilvoice
post Sep 23 2004, 06:49 AM
Post #5


Ditchy McAbandonpants
*****

Group: Members
Posts: 946
Joined: 27-January 04
Member No.: 13226
Country Flag


ya know what, youre right...because honestly, if you can type it in a cmd window, you could just select the software in the app...so, youre right...not really a good suggestion. Well, then, Id have to say this is **** near perfect (near cuz nothing is perfect newwink.gif )
Go to the top of the page
 
+Quote Post
a06lp
post Sep 23 2004, 07:38 AM
Post #6


Friend of MSFN
*****

Group: Members
Posts: 976
Joined: 19-August 04
Member No.: 28204



QUOTE (kenedy @ Sep 23 2004, 08:09 AM)
Suggestions that will make it more functional, on the other hand, will be carefully reviewed, and if I find them usefull - they will be added.

Suggestions:
how about Default Options, Select All, and Deselect All.

Seems pretty useful to me!!

Questions:
1) How many lines can each Program have? Can I have two RunWait commands in a row? 2 DosCommand ? etc?

2) For WaitProcess - am I typing the process name (the same thing i would use, for example, in TASKKILL - the exe in Task Manager?)

3) Could you explain the run from CD thing more clearly?
Go to the top of the page
 
+Quote Post
kenedy
post Sep 23 2004, 07:57 AM
Post #7


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


QUOTE
how about Default Options, Select All, and Deselect All.
I'll think about adding Default Options (or maybe remembering last selection)
QUOTE
1) How many lines can each Program have?  Can I have two RunWait commands in a row? 2 DosCommand ? etc?

Only one of each type. Enough for all the programs I use.
QUOTE
2) For WaitProcess - am I typing the process name (the same thing i would use, for example, in TASKKILL - the exe in Task Manager?)
Yes, the process name from Task Manager
QUOTE
3) Could you explain the run from CD thing more clearly?

If you are running kTool from CD, drive letter is basically unknown and you cant use full paths. So add Append=CD to .ini file and paths will become relative to kTool.exe. (the path to kTool will be appended to command path)
Example. Suppose kTool.exe is in D:\soft. So instead of typing
[SomeSoftware]
Run = D:\soft\Folder1\SomeSoftware.exe
you type
Run = Folder1\SomeSoftware.exe

Note that that way you lose ability to launch programs from network and other drives.
Go to the top of the page
 
+Quote Post
a06lp
post Sep 23 2004, 08:02 AM
Post #8


Friend of MSFN
*****

Group: Members
Posts: 976
Joined: 19-August 04
Member No.: 28204



QUOTE
I'll think about adding Default Options (or maybe remembering last selection)
Default is the most important in that list, I just figured while you were at it, it would make it easier to do the other 2 as well...

QUOTE
Only one of each type. Enough for all the programs I use.

What if, for example, I have a program and an add-on? I'd have to do them seperately?
Also, I can have a list of up to 8 commands for one program (assuming they are all different commands, one of each = 8)

QUOTE
running kTool from CD


This sounds useful. Is it faster/slower than hard drive installation?
Go to the top of the page
 
+Quote Post
kenedy
post Sep 23 2004, 08:16 AM
Post #9


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


QUOTE
What if, for example, I have a program and an add-on?  I'd have to do them seperately?
Yes.
But there is alternative. For installing hotfixes I use:
QUOTE
[Hotfixes]
RunWait = ktool.exe hotfixes.ini

There is no reason to select each hotfix separately so I just launch another instance of kTool in silent mode to install all hotfixes. hotfixes.ini contains
[KBxxxxxx]
RunWait = KBxxxxxx.exe /switches
for every hotfix
QUOTE
This sounds useful.  Is it faster/slower than hard drive installation?

Installing software from CD? Slower.
Go to the top of the page
 
+Quote Post
edmoncu
post Sep 23 2004, 08:29 AM
Post #10


Advanced Member
***

Group: Members
Posts: 331
Joined: 28-April 04
Member No.: 18725
OS: none
Country Flag


just a quick question... can this run at the t-39 stage?
Go to the top of the page
 
+Quote Post
kenedy
post Sep 23 2004, 08:33 AM
Post #11


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


QUOTE (edmoncu @ Sep 23 2004, 08:29 AM)
just a quick question... can this run at the t-39 stage?

T39 = cmdlines.txt?
Go to the top of the page
 
+Quote Post
evilvoice
post Sep 23 2004, 08:34 AM
Post #12


Ditchy McAbandonpants
*****

Group: Members
Posts: 946
Joined: 27-January 04
Member No.: 13226
Country Flag


detahcedprogram from winnt.sif is t-39
Go to the top of the page
 
+Quote Post
kenedy
post Sep 23 2004, 08:38 AM
Post #13


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


Haven't tried GUI mode but silent works fine.
Just dont use any commands besides Run and RunWait.
Go to the top of the page
 
+Quote Post
sixpack
post Sep 23 2004, 11:18 AM
Post #14


Senior Member
****

Group: Members
Posts: 515
Joined: 29-May 04
Member No.: 20982



QUOTE
I'll think about adding Default Options (or maybe remembering last selection)


I cant wait woot.gif
Go to the top of the page
 
+Quote Post
kenedy
post Sep 24 2004, 03:47 AM
Post #15


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


Uploaded new version.
New parameters in .ini file - AutoSelect and SaveSelection.
AutoSelect - default options
SaveSelection - remembers what was selected and writes that information to AutoSelect
CODE
[Config]
AutoSelect = |WinZip 9.0|WinRAR 3.4|Acrobat 6.0
SaveSelection = 1
Go to the top of the page
 
+Quote Post
sixpack
post Sep 24 2004, 05:12 AM
Post #16


Senior Member
****

Group: Members
Posts: 515
Joined: 29-May 04
Member No.: 20982



thanks for the update thumbup.gif
works fine
Go to the top of the page
 
+Quote Post
mazin
post Sep 24 2004, 06:39 AM
Post #17


MSFN Addict
Group Icon

Group: Supreme Sponsors
Posts: 1952
Joined: 12-January 04
Member No.: 12365
OS: XP Pro x86
Country Flag


@kenedy

COOL! I'll give it a try and report back. Thanks.
Go to the top of the page
 
+Quote Post
Senser
post Sep 24 2004, 07:41 AM
Post #18





Group: Members
Posts: 4
Joined: 11-September 04
Member No.: 30700



@kenedy, i just took a first look at kTool.

Really like your INI-syntax, very easy to use.

A few small suggestions for future versions of kTool:

INI-syntax:
- per application keyword 'default=1' for applications that should be installed by default
- global keyword 'autoInstallSeconds=360' will wait for user input till xxx seconds and than start installing the default applications only.

Interface:
- little typo 'avialable' should be 'available . whistling.gif
- i don't like selecting applications by using the cursor keys, i would like to browse though the list with cursur keys and select with spacebar or double click (for example). Maybe you can fix that?
- sort the application list by alfabet.

Thats it. Hope you like the suggestions. newwink.gif
Go to the top of the page
 
+Quote Post
kenedy
post Sep 24 2004, 07:57 AM
Post #19


Member
**

Group: Members
Posts: 123
Joined: 12-February 04
From: Latvia
Member No.: 14176
Country Flag


QUOTE
- per application keyword 'default=1' for applications that should be installed by default
There is global default application list now.
QUOTE
- global keyword 'autoInstallSeconds=360' will wait for user input till xxx seconds and than start installing the default applications only.

I have serious doubts about usefulness of this.
QUOTE
- little typo 'avialable' should be 'available .  whistling.gif
Ok. Will be fixed welcome.gif
QUOTE
- i don't like selecting applications by using the cursor keys, i would like to browse though the list with cursur keys and select with spacebar or double click (for example). Maybe you can fix that?

No. I like the current way. All mouse navigation is kept to minimum.
QUOTE
- sort the application list by alfabet.

But then you can't sort them by category.
Go to the top of the page
 
+Quote Post
edmoncu
post Sep 24 2004, 10:18 AM
Post #20


Advanced Member
***

Group: Members
Posts: 331
Joined: 28-April 04
Member No.: 18725
OS: none
Country Flag


wanna clarify something, where have you uploaded a newer version?
Go to the top of the page
 
+Quote Post

Google Frontpage Forums Unattended CD/DVD Guide

7 Pages V   1 2 3 > » 
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 




Lo-Fi Version Time is now: 7th November 2009 - 05:57 PM
All trademarks mentioned on this page are the property of their respective owners
MSFN is not affiliated with Microsoft
Copyright © 2001-2009 msfn.org
Privacy Policy