(added FontType in config)
Really easy to custmize
Attached File(s)
-
kToolv1.2C.zip (10.38K)
Number of downloads: 386
Posted 04 December 2007 - 11:30 AM
kToolv1.2C.zip (10.38K)
Posted 08 March 2008 - 05:35 AM
@echo off title mui @echo on @echo installing MUI ".\mui\muisetup.exe" /i 0405 /d 0405 /l /f /r /s pausethen i have this
[Config] Append =.. [Czech mui] context = Installing Czech mui runwait = mui.cmdin my ktool config file and i'm starting ktool with ktool.cmd from cmdlines.txt. Ktool.cmd contains
cd ktool kTool.exe config/cmdlines_install.ini, but mui installation never starts.
This post has been edited by Lolita: 08 March 2008 - 05:45 AM
Posted 09 March 2008 - 05:37 AM
Posted 23 September 2008 - 10:53 AM
Posted 13 November 2008 - 09:52 AM
Posted 04 December 2008 - 04:17 AM
Posted 25 March 2009 - 09:38 AM
This post has been edited by Sin_of_Nature: 25 March 2009 - 09:42 AM
Posted 23 April 2009 - 09:45 AM
This post has been edited by testtrytest: 23 April 2009 - 09:46 AM
Posted 24 April 2009 - 12:18 PM
Opt("RunErrorsFatal" , 0)
Posted 03 August 2009 - 02:19 PM
testtrytest, on Apr 24 2009, 01:18 PM, said:
Opt("RunErrorsFatal" , 0)
Posted 05 August 2009 - 05:46 AM
[.Net Framework 2.0 SP1] context = .Net Framework 2.0 SP1 description = Installing .Net 2.0 runwait = "%wpipath%\\Install\\Net Framework 2.0\\SP1\\NetFx20SP1_x86.exe" /norestart /qb [Disable Shutdown Script] context = Disable Shutdown Script description = Disable Shutdown Script on PCs runwait = "%wpipath%\\Install\\WKIX32.EXE" -i "%wpipath%\\Install\\Tweaks\\Shutdown_Disable.kix" [Display Settings] context = Display Settings description = Sets Display Settings for Lab PCs runwait = "%wpipath%\\Install\\WKIX32.EXE" -i "%wpipath%\\Install\\Tweaks\\DisplaySettings.kix"
[Profiles] Default= Computer=|Display Settings|Disable Shutdown Script|.Net Framework 2.0 SP1
This post has been edited by Sin_of_Nature: 06 August 2009 - 01:57 AM
Posted 18 January 2010 - 10:11 AM
This post has been edited by andee_damon: 18 January 2010 - 10:29 AM
Posted 18 January 2010 - 11:16 AM
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"
Posted 25 January 2010 - 08:12 AM
Posted 25 January 2010 - 09:38 AM
Posted 25 January 2010 - 09:59 AM
kToolv1.2d_unoffical.zip (10.45K)
This post has been edited by Sin_of_Nature: 26 January 2010 - 07:26 AM
Posted 05 March 2010 - 10:01 AM
This post has been edited by Necros: 07 March 2010 - 06:45 AM
Posted 24 June 2010 - 01:32 AM
Func CheckAdmin() ;Check if user has administrator rights
If IsAdministrator()=0 Then
If MsgBox (4,"","Administrator rights required. Continue?") = 7 then Exit
EndIf
EndFunc ;CheckAdmin
; Replacement function for IsAdmin
Func IsAdministrator($sUser = @UserName, $sCompName = ".")
Local $aCall = DllCall("netapi32.dll", "long", "NetUserGetInfo", "wstr", $sCompName, "wstr", $sUser, "dword", 1, "ptr*", 0)
If @error Or $aCall[0] Then Return SetError(1, 0, False)
Local $fPrivAdmin = DllStructGetData(DllStructCreate("ptr;ptr;dword;dword;ptr;ptr;dword;ptr", $aCall[4]), 4) = 2
DllCall("netapi32.dll", "long", "NetApiBufferFree", "ptr", $aCall[4])
Return $fPrivAdmin
EndFunc
Necros, on 05 March 2010 - 10:01 AM, said:
This post has been edited by Sin_of_Nature: 24 June 2010 - 01:51 AM
Posted 12 October 2011 - 01:01 PM