Jump to content

Westi

Member
  • Posts

    61
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Palestine, State of

About Westi

Contact Methods

  • Website URL
    http://

Westi's Achievements

0

Reputation

  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. try : rm c:\± This should work
  9. 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
  10. Convert your batch to Visual Basic or Visual Basic Script.
  11. 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.
  12. I've the same problem with your file !? Check your PM !
  13. 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
  14. With console version: No, but if you use MS-KB Searchand copy/paste the MS0x-xxx you get detailed info's about the patch.
×
×
  • Create New...