Jump to content

|00|

Member
  • Posts

    9
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by |00|

  1. great job serialzs ! But can't download guide4driver.cab, any other link ? thank your for your help |00|
  2. _http://www.pablovandermeer.nl/ftp_server_2_0.html very small and usefull, very good for an unattended install, freeware and nice interface... no need to install IIS |00|
  3. you can do it to with auto-it instead of vbs scripting : http://www.hiddensoft.com/autoit3/
  4. to make it simple Set WshShell = WScript.NOCreateObject("WScript.Shell") On Error Resume Next --> copy and paste it WshShell.Run --> too run a command here, runs foobar install WScript.Sleep 10000 --> pause 10000 ms = 10 sec WshShell.SendKeys --> DOWN = DOWN --> TAB 2 = TAB two times Wscript.Quit --> to close if you want to know the keys, make a simple install and note each key you need to install foobar you own way... 00
  5. with a vbs script you can install each option you want you don't need .reg but you are wright if you need it, it is : REGEDIT /S 00
  6. why not to call a little vbs script via a .cmd file ? e.g ================================ VBS script (call it foo.vbs) it aims to install all formats btw you can modify it place it in ...\$OEM$\$1\Install\applications\foobar with foobar.exe (rename it if necessary) ================================ Set WshShell = WScript.CreateObject("WScript.Shell") On Error Resume Next WshShell.Run ("c:\install\applications\foobar\foobar.exe /S") WScript.Sleep 10000 WshShell.SendKeys "{DOWN}" WScript.Sleep 800 WshShell.SendKeys "{TAB 2}" WScript.Sleep 500 WshShell.SendKeys "{ENTER}" WScript.Sleep 6000 WshShell.SendKeys "{SPACE}" WScript.Sleep 500 WshShell.SendKeys "{TAB 2}" WScript.Sleep 500 WshShell.SendKeys "{ENTER}" WScript.Sleep 500 Wscript.Quit ================================ in the batch that you call with winnt.sif e.g ================================ ECHO Installing foobar v0.8 special ECHO please, wait... start /wait %systemdrive%\install\Applications\foobar\foo.vbs 00 post edited
  7. for swap file, there is another way : inf files create a "paging.inf" file with : this is for a fixed swap file of 700 mb on D: , you can change it as you want. NB : If you want the os to decide of the size type "(drive letter):\pagefile.sys 0 0" then follow gosh's guide to load it...
  8. did you try ts2_client_rc2_2032.exe /SILENT ??? it seems to be an inno setup pack
×
×
  • Create New...