Jump to content

Westi

Member
  • Posts

    61
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Palestine, State of

Everything posted by Westi

  1. Only one example start /wait %systemdrive%\install\Applications\K-Lite Mega Codec\klmcodec101.exe /Silent will not work,'cause of the blank. Correct is: start /wait "%systemdrive%\install\Applications\K-Lite Mega Codec\klmcodec101.exe /Silent" Try the code line by line in a console window and you will get the errors.
  2. Hi, check your code for missing " or change your filenames to 8.3.
  3. Hi, [GuiRunOnce] and runonceex are executed at the same time. Do you install a driver or a reg tweak under the [GuiRunOnce] section?
  4. Hi, use the winnt.sif-section: [RegionalSettings] LanguageGroup=1 SystemLocale=00000xxx UserLocale=00000xxx InputLocale=0xxx:00000xxx Where xxx is your countrycode.
  5. Just call it, or use "CScript myscript.vbs //B //NoLogo" You get more options at the console window with "cscript /?".
  6. Check for the right drive and name, Version 2 : Dim fso, objDrive, s, InstCD Set WshShell = WScript.CreateObject("WScript.Shell") Set fso = CreateObject("Scripting.FileSystemObject") For Each objDrive In fso.Drives If objDrive.IsReady Then If objDrive.DriveType = 4 And objDrive.VolumeName = "xxx-Your CD name-xxx" Then s = objDrive.DriveLetter & ":\" End If Next 'Write it to all keys in the registry WshShell.RegWrite "HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Environment\CDROM",s ,"REG_SZ" WshShell.RegWrite "HKCU\Environment\CDROM", s, "REG_SZ" WshShell.RegWrite "HKU\.Default\Environment\CDROM", s, "REG_SZ" 'Get the value in another script InstCD = WshShell.ExpandEnvironmentStrings("%CDROM%") Wscript.Quit My first version fails if a drive isn't ready
  7. Sendkeys "+{TAB}" -SHIFT TAB Sendkeys "+" -SHIFT Sendkeys "^" -CTRL Sendkeys "%" -ALT Sendkeys "+(ec)" -SHIFT EC Sendkeys "+ec" -SHIFT E and normal c If you need the normal value, insert it in {}: "{+}" is + All special keys: {BACKSPACE} or {BS} or {BKSP}, {BREAK},{CAPSLOCK},{DELETE} or {DEL} {DOWN},{UP},{END},{ENTER} or ~,{ESC},{HELP},{HOME},{INSERT} or {INS} {LEFT},{RIGHT},{NUMLOCK},{PGDN},{PGUP},{PRTSC},{SCROLLLOCK},{TAB} {F1}..... {F16} CTRL/ALT/DEL and special window keys not implemented !
  8. Create a vbs file and write in: Set WshShell = WScript.CreateObject("WScript.Shell") Set fso = CreateObject("Scripting.FileSystemObject") Dim s Call ChCD(D:\) Call ChCD(E:\) Call ChCD(F:\) Call ChCD(G:\) Call ChCD(H:\) Call ChCD(I:\) Call ChCD(J:\) Call ChCD(K:\) Call ChCD(L:\) ... WshShell.MsgBox "CDROM Letter is " & s ... Wscript.Quit Function ChCD(DriveN) Set d = fso.GetDrive(DriveN) If d.IsReady And d.DriveType = 4 And d.VolumeName = "WINXP_SP1 " Then s = DriveN End Function This checks for - drive ready? - drive type CDROM - Volume name
  9. Convert your batch to Visual Basic or Visual Basic Script.
  10. Nero has it's own ASPI driver. Install just ASPI 4.6 (imho 4.7 is a little bit buggy) Use "aspinit.exe silent" for an unattended installation.
  11. I've the same problem with your file !? Check your PM !
  12. Good job for j2re-1_4_2_01 !!! switches don't work for j2re-1_4_1_05 j2re-1_4_2_01 is too buggy for the best browser of the world. You know, the man with snow on his heads
  13. With console version: No, but if you use MS-KB Searchand copy/paste the MS0x-xxx you get detailed info's about the patch.
  14. I know, but if you try to install again, you get less windows to confirm. Normally you get an uninstall option.I have no suggestions to this behaviour, typically MS..
  15. There is already a setup.iss in the package, but it is the same who is created by 'setup -r' and it don't work.. For information: There are some security-leaks in previous versions of Sun-Java, not as many as in MSJava, but if you use an alternative browser, you should use this version.
  16. @DaveXP You haven't installed MDAC 2.8 ? Fixes a lot of problems. a bit OT... I used this method: -extract the files to a dir -pack to exe with winrar with this options: -Setup=dasetup.exe /q /n -TempMode -Silent=2 -Overwrite=1
  17. Well, the command prompt version is OK. I prefer the good ol' command window. I'm a DOS-freak and like switches and s/w windows Sorry, for posting the link to the overdosed, heavyweight GUI-Version.. :/ shame on me..
  18. Just modify the registry: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RpcSs\FailureActions: 00 00 00 00 00 00 00 00 00 00 00 00 03 00 00 00 53 00 65 00 00 00 00 00 60 EA 00 00 02 00 00 00 60 EA 00 00 02 00 00 00 60 EA 00 00 This line changes the behavior of RPCSS-service to do nothing after a crash (instead of a reboot)
  19. I have dl SUN-Java 1_4_1_05. The unattended installation don't run with setup.iss. [InstallShield Silent] Version=v6.00.000 File=Response File [File Transfer] OverwrittenReadOnly=NoToAll [{78D082B3-ACEE-11D7-9D64-00010240CE95}-DlgOrder] Dlg0={78D082B3-ACEE-11D7-9D64-00010240CE95}-SdLicense-0 Count=2 Dlg1={78D082B3-ACEE-11D7-9D64-00010240CE95}-SetupType-0 [{78D082B3-ACEE-11D7-9D64-00010240CE95}-SdLicense-0] Result=1 [{78D082B3-ACEE-11D7-9D64-00010240CE95}-SetupType-0] Result=301 [Application] Name=Java 2 Runtime Environment, SE v1.4.1_05 Version=1.4.1_05 Company=JavaSoft Lang=0009 I tried setup -r and the usual method, but the installation crashes...(on 2 comp's) What's wrong, has anybody a working file ? Any suggestions ?
  20. I prefer to use HfNetCheck ~15 MB, 'cause you don't need windows-update and get detailed information of needed and installed patches with KB- and Q-numbers on all comp's in your network (if you want). Type hfnetchk /? to get more help (console window). database is dated 16/10. Is this newer than MS' ? EDIT:NO,NO use this hfnetchk for console , i don't realize the size of the link above, i'm really ...
  21. You have to edit your boot.ini with 'bootcfg'. type bootcfg /? at the prompt for help EDIT I'm 2fast4you DaveXP
  22. EDIT: Wooh, too fast4me @GreenMachine You can read the whole story at eweek AFAIC, you can use Version5. MS says: For now... But tomorrow ??? My choice is Version6 with MessengerPlus.
  23. try instead of DEL "%systemroot%\Web\Wallpaper\Choeur d'étoiles.jpg" simple method for other files: -open a command window (cmd.exe) -go to the directory -type 'dir /x' -remember the 8.3 name and use it in you batch
×
×
  • Create New...