Jump to content

targa

Member
  • Posts

    26
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Malta

About targa

targa's Achievements

0

Reputation

  1. I am no expert in Autoit but have managed to compile this script which installs IDM silently.. hope this helps you and others who might need it IDMAutoIt.au3
  2. download msi and install with /qb http://mirrors.foxitsoftware.com/pub/foxit...eader31_enu.msi
  3. thanks James.. would love to know how u did it.. u know.. for future IDM releases
  4. I am trying to write a script to create a new account after windows finishes to install... manged to do the following but would like that the script pops-up a window asking for the username and password rather than being written in the vb script. Any help please???? Option Explicit ' On Error Resume Next Dim objComputer, objGroup, objUser, objWSHNetwork, strComputerName, strFullName, strPassword, strUserName Set objWSHNetwork = WScript.CreateObject("WScript.Network") strComputerName = objWSHNetwork.ComputerName Set objComputer = GetObject("WinNT://" & strComputerName) Set objGroup = GetObject("WinNT://" & strComputerName & "/Administrators") strUserName = "username" strFullName = "user2" strPassword = "password" Set objUser = objComputer.Create("User", strUserName) objUser.SetPassword strPassword objUser.FullName = strFullName objUser.SetInfo objGroup.Add "WinNT://" & strComputerName & "/" & strUserName objUser.SetInfo
  5. download itunes..extract it with winrar.. u will get an *.msi file. Install it with the switches /qn or /qb
  6. iTunes First extract itunessetup.exe, then make sure that you have the newest version of windows installer installed on your system and finally install it with the /qn or /qb switch... start /wait %cdrom%\iTunes.msi /qb /norestart
  7. 1. Download and install nsis from http://nsis.sourceforge.net/Download. This will let you recompile the installation program. 2. Download and extract the VLC Windows Zip package from http://www.videolan.org/vlc/download-windows.html. 3. Open the vlc.win32.nsi file with Notepad 4. The component list begins at about line 502. Component look like "Section "Component Name" SEC0#. If a '/o' is in front of the component name, remove the '/o' e.g. Section $Name_Section03 SEC03 5. Change SectionIn from 3 to 1 2 3 6. That's all..compile script. If you don't want VLC to be associated with some file types, put a semicolon in front of the line containing that extension.
  8. What is this for: DISABLEOPTIONS="CDIUWLSG"" ? read here Nokia
  9. Just download the executable and install it with the following switches /SILENT="PE" DISABLEOPTIONS="CDIUWLSG""
  10. /SILENT="PE" DISABLEOPTIONS="CDIUWLSG""
  11. Is there a way to make a script to restore the mail accounts after effecting a fresh installation please?
  12. Is there any switch to make winzip to associate only with zip files....i.e. i don't want it to have rar files associated with winzip. Thanks
  13. Thank you. Your hard work is much appreciated.
  14. The link to the Office Updater is not working for me. Can you please update it. Tnx
×
×
  • Create New...