testazzo Posted December 4, 2007 Posted December 4, 2007 here is the source .. good work(added FontType in config)Really easy to custmize kToolv1.2C.zip 1
Lolita Posted March 8, 2008 Posted March 8, 2008 (edited) Hello, i have mui.cmd file in $OEM$ on my cdfile contains@echo offtitle mui@echo on@echo installing MUI".\mui\muisetup.exe" /i 0405 /d 0405 /l /f /r /spausethen i have this[Config]Append =..[Czech mui]context = Installing Czech muirunwait = mui.cmdin my ktool config file and i'm starting ktool with ktool.cmd from cmdlines.txt. Ktool.cmd containscd ktool kTool.exe config/cmdlines_install.ini, but mui installation never starts.I have tried placing mui.cmd (notice pause at the end) to $oem$, cdroot, $oem$/ktool $oem$/ktool/config but it still don't startcan you help me please? Edited March 8, 2008 by Lolita
Devil_Code Posted March 9, 2008 Posted March 9, 2008 here is the source .. good work(added FontType in config)Really easy to custmize Error Missing Separetor at line 1003
robotnik Posted September 23, 2008 Posted September 23, 2008 This app rocks!! The only thing i would change is the option to leave the program running after the installation is done. Other than that it's perfect!
arjanv Posted November 13, 2008 Posted November 13, 2008 hi,can anyone make this work for Windows Vista.I've used this tool for windows xp and it work perfect, but now i looking for a simple installer for windows vista.anyone can help me?
zhietyou Posted December 4, 2008 Posted December 4, 2008 ellow guys..im nooby hearcan anyone post a step by step guide how to use this tools?tnxreally a big help
Sin_of_Nature Posted March 25, 2009 Posted March 25, 2009 (edited) For anyone trying to find updated version of this, I used the following link:http://www.msfn.org/board/index.php?act=at...&tid=28393#You need to be logged in to download it, but there's a version 1.2c! (actually says 1.1c when you run it). Some nice little niggles removed. Excellent tool, even in 2009. Oh, should say that the link is for the source code. 1 slight error is there's no space between & and the _ on line 1003. Compiled fine in Auto-it apart from that. Sin Edited March 25, 2009 by Sin_of_Nature
testtrytest Posted April 23, 2009 Posted April 23, 2009 (edited) Exactly what I was looking for. I'll test tonight nice and simple. Edited April 23, 2009 by testtrytest
testtrytest Posted April 24, 2009 Posted April 24, 2009 I am a bit confused, if I compile the lastest source I have an error (Something saying -1 not existing), I am not a big user of Autoit but apparently by removing the line 65:Opt("RunErrorsFatal" , 0)I don't have anymore the problem, does anyone have the same problem? Is this line important?
larchen Posted August 3, 2009 Posted August 3, 2009 I am a bit confused, if I compile the lastest source I have an error (Something saying -1 not existing), I am not a big user of Autoit but apparently by removing the line 65:Opt("RunErrorsFatal" , 0)I don't have anymore the problem, does anyone have the same problem? Is this line important?I had the same problem and looked it up. The "RunErrorsFatal"-command was removed from AutoIt v32120. This means you must remove this line running AutoIt v32120 and later
Sin_of_Nature Posted August 5, 2009 Posted August 5, 2009 (edited) One thing I find strange with latest version. It fire off the software in the order of the INI file NOT the order you specify in the Profiles listFor example, I put my software in Alphabetic order in the INI file (for ease of finding it). [.Net Framework 2.0 SP1]context = .Net Framework 2.0 SP1description = Installing .Net 2.0runwait = "%wpipath%\\Install\\Net Framework 2.0\\SP1\\NetFx20SP1_x86.exe" /norestart /qb[Disable Shutdown Script]context = Disable Shutdown Scriptdescription = Disable Shutdown Script on PCsrunwait = "%wpipath%\\Install\\WKIX32.EXE" -i "%wpipath%\\Install\\Tweaks\\Shutdown_Disable.kix"[Display Settings]context = Display Settingsdescription = Sets Display Settings for Lab PCsrunwait = "%wpipath%\\Install\\WKIX32.EXE" -i "%wpipath%\\Install\\Tweaks\\DisplaySettings.kix"However, In my profiles I have:[Profiles]Default=Computer=|Display Settings|Disable Shutdown Script|.Net Framework 2.0 SP1Even though .Net Framework 2.0 SP1 is listed last, it actually installs first as its 1st in the INI file. That definitely needs a bit of a code change. Just looking at the code now, as I need the software to install in a certain order.[update]I've updated the code so it installs in the order specified in the Profiles list. Anyone wanting the code/binary, just PM me.Sin Edited August 6, 2009 by Sin_of_Nature 1
andee_damon Posted January 18, 2010 Posted January 18, 2010 (edited) Hi anyone knows how ktool can be recognized by windows seven?P.S.: Hi Sin, can you send me the last code you have? I can't PM you.I Think I found the part of the code to include Windows Seven but I'm not sure:line 175:;doneFunc ReturnOSVersion () ;Get OS version to readable format Select Case $VER = "WIN_XP" $OS = "Windows XP" Case $VER = "WIN_2000" $OS = "Windows 2000" Case $VER = "WIN_98" $OS = "Windows 98" Case $VER = "WIN_ME" $OS = "Windows ME" Case $VER = "WIN_95" $OS = "Windows 95" Case $VER = "WIN_NT4" $OS = "Windows NT4" EndSelectEndFunc ;ReturnOSVersionline 584:;win otherFunc AutoLogon () ;Write autologon information to registry If $Ver = "WIN_XP" Or $Ver = "WIN_2000" Or $Ver = "WIN_NT4" Then RegWrite("HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\", "DefaultUserName", "REG_SZ", @UserName) $Password = InputBox("Password", "Enter password for autologon" & @CR & $RebootCount & " restart(s) required", "", "*") RegWrite("HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\", "DefaultPassword", "REG_SZ", $Password) RegWrite("HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\", "AutoAdminLogon", "REG_SZ", "1") RegWrite("HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\", "AutoLogonCount", "REG_DWORD", $RebootCount) RegWrite("HKLM\Software\Microsoft\Windows NT\CurrentVersion\WinLogon\", "DefaultDomainName", "REG_SZ", @LogonDomain) EndIf If $Ver = "WIN_98" Or $Ver = "WIN_95" Or $Ver = "WIN_ME" Then MsgBox (0,"", "Autologon currently not avialable for " & $OS ) EndIfEndFunc ;AutoLogonAnyone can help please??? Edited January 18, 2010 by andee_damon
cluberti Posted January 18, 2010 Posted January 18, 2010 The ReturnOSVersion function should contain:Case $VER = "WIN_7"$OS = "Windows 7"Case $VER = "WIN_VISTA"$OS = "Windows Vista"Case $VER = "WIN_XP" $OS = "Windows XP"Case $VER = "WIN_2000" $OS = "Windows 2000"Case $VER = "WIN_98" $OS = "Windows 98"Case $VER = "WIN_ME" $OS = "Windows ME"Case $VER = "WIN_95" $OS = "Windows 95"Case $VER = "WIN_NT4" $OS = "Windows NT4"What you do with the new responses in that source is your own design. Note you can get the version simply by returning the @OSVersion macro:MsgBox (0, "OS Version", @OSVersion)For example:
Sin_of_Nature Posted January 25, 2010 Posted January 25, 2010 Hi andee, You still want the code? I havent added the win 7 bit mentioned above but other than thatm it works ok.Sin
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now