Jump to content

TBlaster

Member
  • Posts

    16
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Denmark

Everything posted by TBlaster

  1. @keytotime It does the same as the last 2 mentioned of my codes. Did you change the Redist\Config\conf.txt file? And if I dl your .mst files, then I shouldn't have to change anything else, or what?
  2. I have some problems with a silent custom install of Nero 7 Premium. If I use the following, the whole pack is installed: NeroSuite.msi ADDLOCAL=ALL /norestart /qb-! I would like to only install the basic and Nero Cover Designer, however I can't seem to get it right. I tried to use the files that keytotime provided, however it gives me some problems. NeroSuite.msi TRANSFORMS=Nerocover.mst /qn Error: "Sorry, but the installer has to be started with SetupX.exe file." NeroSuite.msi TRANSFORMS=Nerocover.mst /qb-! msistub.exe NeroSuite.msi TRANSFORMS=nerocover.mst /qb-! Both the above don't give any errors, however the program isn't installed. I briefly get a program "Nero 7 Premium Installer" but it dissapears very fast again. I tried changing the Redist\Config\conf.txt file to only include the features that I whish, but it dosen't help. What am I doing wrong?
  3. Hi there Anyone have the silent install switch for the Virtual CD 7.0.0.1?
  4. I don't know if this is the right category to place this topic, if not then place move it! I would like my cleanup.cmd file to create a couple of shortcuts for me. Is this possible, and how? Ex. I would like to create a shortcut for the following file: C:\Programmer\Trillian\Trillian.exe to the following path: C:\Documents and Settings\Administrator\Application Data\Microsoft\Internet Explorer\Quick Launch\
  5. Hi there I've created an unattended windows installation with different programs to go along with it. My programs are installed through WPI.hta. My problem is, that after having installed my unattended windows on my computer, then my shortcut keys like Alt + F4 don't work anymore. Other shortcut keys like Ctrl + C and Ctrl + S still work, and I therefore supect that the problem has something to do with the F1 - F12 keys. If I open my Internet Explore, I don't get the HELP when I press F1 and when pressing F3 I don' t get the Search. Also the F11 dosen't show my IE in full screen. I tried creating a homepage with the following code, to see what keycode was returned for my F-keys: <script> document.onkeydown = function(e) { var kC = (window.event ? window.event : e).keyCode; alert("Keycode: " + kC); } </script> And no matter which key I hit, I get the keycode 255. I've tested it on my notebook, at it returns keycodes with values from 112 to 123. Under my proporties for my keyboard, it says that I have a: "Standard 101/102 keybord or Microsoft Natural PS/2 keybord". I would guess that's where the problem is. I have a Logitech desktop keyboard. If I download and install the iTouch 2.22 they my keys work againg. But is there a way to make sure that when windows is installed, it is forced to choose another keyboard, or can I integrate the iTouch as a part of my windows and not as a seperate program?
  6. Yep ... but I need help on silent installing TvTool 6.8.4.3 and also a way to register TvTool silently!
  7. Where is the inf file saved? I can't find it. I tried with the following: ACE_Mega_CodecS_Pack_6.03_Professional_Edition.exe /saveinf=Setup.inf' ACE_Mega_CodecS_Pack_6.03_Professional_Edition.exe /saveinf=C:\Setup.inf' But it dosen't give med the inf file. Can you help, or post your inf file?
  8. Does anyone know the silent install for the ACE Mega CodecS Pack 6.03 Pro Edition?
  9. It still dosen't register: Winamp_Pro_5.09.msi /qb XNAME="Name" XKEY="XXXXX-XXXXX-XXXXX-XXXXX"
  10. Hi there! Does anyone have any information on how to silent install TvTool 6.8.4.3 and also register it with the following information: Name Email Key And if anyone has information on how to auto register TvTool 9.3 then please share it too. Version 9.3 can be silent installed with /S which dosen't work with 6.8.4.3.
  11. What are the switches for installing winamp in registered pro version? I tried with the old switches for the winamp 5.08.msi file, however my winamp does not register: Winamp_Pro_5.09.msi /qb Xuser="Name" XKey="XXXXX-XXXXX-XXXXX-XXXXX" XDesktop=0 XQuicklaunch=1 XStartmenu=0 XREGVID=0'
  12. I tried creating .cmd files with exactly what you wrote in you message, but it dosen't seem to work. I therefore tried installing isobuster and not closing the program and then I ran the .cmd file which gave me the following error: invalid keyname. My .cmd file consists of the following line: REG ADD %KEY%\iAdd /V Inum /D "%SystemRoot%\System32\Pskill IsoBuster" /f
  13. Hi there After installing Ad-aware or Isobuster in silent mode, the install program starts up the program. How can I close the programs? I am using the WPI interface and here are my codes: prog[pn]=['IsoBuster Pro 1.7'] uid[pn]=['IsoBuster'] desc[pn]=['Installs IsoBuster Pro 1.7.'] ordr[pn]=[1] cmd1[pn]=['%CDROM%\\Install\\IsoBuster_Pro_v1.7\\IsoBuster_1.7.exe /silent'] cmd2[pn]=['%CDROM%\\Install\\IsoBuster_Pro_v1.7\\Isobuster.js'] rega[pn]=['%CDROM%\\Install\\IsoBuster_Pro_v1.7\\IsoBuster.reg'] dflt[pn]=['no'] cat[pn]=['DVD'] pn++ prog[pn]=['Lavasoft Ad-Aware SE Professional 1.05'] uid[pn]=['AdAware'] desc[pn]=['Installs Lavasoft Ad-Aware SE Professional 1.05.'] ordr[pn]=[1] cmd1[pn]=['%CDROM%\\Install\\Lavasoft_Ad-Aware_SE_Professional_1.05\\Lavasoft_Ad-Aware_SE_Professional_1.05.exe /s'] cmd2[pn]=['%CDROM%\\Install\\Lavasoft_Ad-Aware_SE_Professional_1.05\\Ad-Aware.js'] dflt[pn]=['no'] cat[pn]=['Security'] pn++ Isobuster.js: var WshShell = WScript.CreateObject ("WScript.Shell"); WshShell.RUN ("taskkill /F /IM isobuster.exe"); Ad-aware.js: var WshShell = WScript.CreateObject ("WScript.Shell"); WshShell.RUN ("taskkill /IM Ad-Aware.exe /F"); WshShell.RUN ("taskkill /IM hh.exe /F"); Copy /y "%CDROM%\\Install\\Lavasoft_Ad-Aware_SE_Professional_1.05\\defs.ref" "%systemdrive%\\Programmer\\Lavasoft\\Ad-Aware SE Professional\\" The codes that I have displayed above are what I thought might be a possible way to solve the problem, but it dosen't work. How else can I call the taskkill command. Also the copy command above dosen't work but I suspekt that it's because i am calling it all wrong. Can anyone help?
×
×
  • Create New...