Jump to content

Kapo

Member
  • Posts

    75
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Italy

Everything posted by Kapo

  1. 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?
  2. i have a question. Does the java 64 bit package install also the browsers plugins?
  3. i've discovered this dir in my system: C:\Program Files\Microsoft.NET\Primary Interop Assemblies Anyone knows it?
  4. Yeah i know that i have to install both version, but my question is different, does the installers modify the C:\Program Files directory?
  5. 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.
  6. so this DT4 script doesn't work? Let's take a look!
  7. so is a simply sum? In my case 32+1 ? In the option i have to put the hexadecimal value, isn't right?
  8. 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.
  9. 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
  10. 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.
  11. 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....
  12. i think but i'm not sure that PSP_MYPSPFILESGLOBAL does not create the My PSP Files folder in documets and settings (per user).
  13. very thanks for the switches.
  14. have you the solution to my problem on the previous post?
  15. 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?
  16. I've modified the script with ControlFocus and Send and it works perfectly!! Thanks!
  17. 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.
  18. 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.
  19. 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?
  20. 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?
  21. 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.
  22. 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.
×
×
  • Create New...