
Kapo
MemberContent Type
Profiles
Forums
Events
Everything posted by Kapo
-
I want to remove the initial start, where you choose if turn on the automatic updates and where you choose the main user name (i already have the aministrator user as main user..). What component or other i have to remove to do this?
-
NFM's Windows XP / 2003 x64 Post-SP1 Update Pack
Kapo replied to nfm's topic in Windows XP 64 Bit Edition
i have a question. Does the java 64 bit package install also the browsers plugins? -
i've discovered this dir in my system: C:\Program Files\Microsoft.NET\Primary Interop Assemblies Anyone knows it?
-
Yeah i know that i have to install both version, but my question is different, does the installers modify the C:\Program Files directory?
-
I have a doubt: In my unattended XP i don't want to modify the C:\Program Files directory. So i have to ask you if the default installation of the .NET Framework both 1.1 and 2.0 modifies this directory. Thanks all.
-
so this DT4 script doesn't work? Let's take a look!
-
up.
-
so is a simply sum? In my case 32+1 ? In the option i have to put the hexadecimal value, isn't right?
-
because i would like to disinstall the pack if you want. I think i have to make an inf installation if there are not switches.
-
Need two silent installation switches and/or method for this two programs: VirtualDubMod 1.5.10.2 Exact Audio Copy V0.95 beta 3 Thanks in advance. Kap
-
to the gurus of the infs: flags This optional hexadecimal value, expressed as an ORed bitmask of system-defined low word and high word flag values, defines the data type for a value entry and/or controls the add-registry operation. Bitmask values for each of these flags are as follows i don't understand this settings of the CopyFiles section...can i have some examples? i want that my custom installer doesn't ask me if i want to overwrite files if they are already in the destination dir, so i want to set some flags (0x00000048), including the flag to copy the files in use on the next reboot (0x00000008), but i think that the sum is not correct.....0x00000048. Infact it doesn't work. I need help. Thanks s0 much.
-
update: this string -> rundll32.exe setupapi,InstallHinfSection DefaultUninstall 130 works, it asks if you want to restart the system after the disinstallation of the program....
-
i think but i'm not sure that PSP_MYPSPFILESGLOBAL does not create the My PSP Files folder in documets and settings (per user).
-
very thanks for the switches.
-
have you the solution to my problem on the previous post?
-
i've a problem, i'm importing a REG_NONE type with a REG command. The .reg entry says the value is "hex(0):" but if i execute this line: REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.nfo\OpenWithProgids" /V "MSInfo.Document" /T REG_NONE /D hex(0): /F the value in the registry is not the same (no binary value). Why?
-
Daemon & Alcohol AutoIt don't change driver name
Kapo replied to Kapo's topic in Application Installs
I've modified the script with ControlFocus and Send and it works perfectly!! Thanks! -
Additions to Kapo's QuickLaunch\Start Menu AU3 Script
Kapo replied to Nologic's topic in Application Installs
i'll try this script! -
Two question: Hibernation file and Programs dir
Kapo replied to Kapo's topic in Unattended Windows 2000/XP/2003
Ok the installation is not unattended but if someone want to install a nLite optimized XP for games only it will be installed on a second drive. So now i try to install silent programs only if it is a clean install and not if is a second (or third) install. -
Daemon & Alcohol AutoIt don't change driver name
Kapo replied to Kapo's topic in Application Installs
Ok now i've understand. Infact in the AutoIt section i've downloaded the Daemon Tools script but the change of driver doesn't work! I've also tried with the ControlCommand ("editpaste", ) but it doesn't work. Now i try to modify the script with the Send command. Thanks very much. -
1)Every new installation has the Hibernation file even if the function is disabled. (it's the size of the RAM) Someone has the same problem? 2) Every silent program installation takes the c:\Programfiles directory so an installation of two windows installs programs on the "first" partition. then the unattended copy is only for one boot windows only?
-
It happens in both installation programs, when i use the function ControlSetText ( $Title_1 , "", 909, $drivername ). This command modifies the driver name in theory because i don't know why the installer takes the old names during the installation. In fact my driver name are the original ones! Does the function ControlSetText works?
-
when i try the disinstallation. It freeze the "Application Install" in control panel. the sting is in the HKLM\blablabla\Uninstall section and i've take it on MicroXoft site.
-
AutoIT Script Collection - Contributions Only
Kapo replied to FuzzBall's topic in Application Installs
this script enables\disables the QuickLaunch. [code]; ---------------------------------------------------------------------------- ; ; AutoIt Version: 3.1.0 ; Author: Kapitan ; ; Script Function: ; Enable\Disable QuickLaunch. ; ; ---------------------------------------------------------------------------- $g_szVersion = "QuickLaunch" If WinExists($g_szVersion) Then Exit; It s already running AutoItWinSetTitle($g_szVersion) Opt ("TrayIconDebug", 1) ;0=no info, 1=debug line info Opt ("TrayIconHide", 0) ;0=show, 1=hide tray icon Opt ("WinTitleMatchMode", 4);1=start, 2=subStr, 3=exact, 4=... ControlClick ("classname=Shell_TrayWnd", "Applicazioni in esecuzione", "TrayClockWClass1", "right") Send("p") WinWaitActive("Proprietà della barra delle applicazioni e del menu di avvio", "Barra delle applicazioni") ControlClick ("Proprietà della barra delle applicazioni e del menu di avvio", "Barra delle applicazioni", 1107) WinWaitActive("Proprietà della barra delle applicazioni e del menu di avvio", "Barra delle applicazioni") ControlClick ("Proprietà della barra delle applicazioni e del menu di avvio", "Barra delle applicazioni", 1) Exit[/code] Is in Italian but is simply to modify.