ContributionsMost RecentMost LikesSolutionsRe: One2Many Script Repository if you simply open a log file on the client computer via a "bat script" it will recard all text in that log into logmein log on completion. You can then download the script log from ONE2MANY interface reviewing all logs. EG: c:\program files\AVG\AVG10\history.xml It will return the text information into the log file when script is finished. This file will show all avg updates and scan history findings summery. Hope this helps. Re: One2Many Script Repository Twisted Networx : Yeah your script looks good to me. download the full exe not the short version. Your error will be to do with the machine your installing to I would think. Check your machine is 32 bit vs 64bit. you need to install the right install for this. www.fildehippo.com give both versions. - Check for AVAST or antivirus software this needs uninstalling. - UAC needs to be turned off. - OR the machine you areinstalling to has 2011 already. this will give you an error the same as yours. Re: One2Many Script Repository MSCONFIG --> Start up Shows what is selected to start.this ishandy to view without logging into dash board or remotecontrol. The following script will give you a raw look at the registryto run. reg query HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run Re: One2Many Script Repository Sorry mistake in the code in last post; (x86) not (86) for windows 64 AVG 2011 FULL SCAN - WINDOWS 64Bit cd\ cd "Program Files (x86)\AVG\AVG10" avgscana.exe /comp=ON /boot=ON /proc=ON /reg=ON /heur=ON /pup=ON /ads=ON /report="c:\mt\rsfiles\avgrep.txt" /trash=ON exit ______________________________________________ AVG 2011UPDATE - WINDOWS 64Bit cd\ cd "Program Files (x86)\AVG\AVG10" avgmfapx.exe Re: One2Many Script Repository AVG 2011 - has a history log that helps to check past scans for virus infections. This log also displays raw data for auto updates. if there is a virus not being removed or updates are not working, this log helps to detect. WINDOWS 32bit CD\ CD "Documents and Settings\All Users\Application Data\AVG10\log" type history.xml _________________________________________ WINDOWS 64bit: CD\ CD "C:\ProgramData\AVG10\log" type history.xml Re: One2Many Script Repository CREATE A RESTORE POINT ON ANY WINDOWS: THIS IS A VBS SCRIPT NOT A BAT! So change the text file from .txt to .vbs If GetOS = "Windows XP" Then CreateSRP End If If GetOS = "Windows Vista" Or GetOS = "Windows 7" Then If WScript.Arguments.length =0 Then Set objShell = CreateObject("Shell.Application") objShell.ShellExecute "wscript.exe", """" & _ WScript.ScriptFullName & """" & " uac","", "runas", 1 Else CreateSRP End If End If Sub CreateSRP Set SRP = getobject("winmgmts:\\.\root\default:Systemrestore") sDesc = "Manual Restore Point" If Trim(sDesc) <> "" Then sOut = SRP.createrestorepoint (sDesc, 0, 100) If sOut <> 0 Then WScript.echo "Error " & sOut & _ ": Unable to create Restore Point." End If End If End Sub Function GetOS Set objWMI = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _ ".\root\cimv2") Set colOS = objWMI.ExecQuery("Select * from Win32_OperatingSystem") For Each objOS in colOS If instr(objOS.Caption, "Windows 7") Then GetOS = "Windows 7" ElseIf instr(objOS.Caption, "Vista") Then GetOS = "Windows Vista" elseIf instr(objOS.Caption, "Windows XP") Then GetOS = "Windows XP" End If Next End Function Re: One2Many Script Repository AVG 2011 - UPDATE (32Bit windows) cd\ cd "Program Files\AVG\AVG10" avgmfapx.exe __________________________________________________________ AVG 2011 - UPDATE (64Bit windows) cd\ cd "Program Files (86)\AVG\AVG10" avgmfapx.exe __________________________________________________________ AVG 2011 FULL SYSTEM SCAN (WINDOWS 32bit) cd\ cd "Program Files\AVG\AVG10" avgscanx.exe /comp /ext=* /reg /boot /proc /macrow /pup /arc /ads /trash /report="c:\AVGREPORT.txt" __________________________________________________________ AVG 2001 FULL SYSTEM SCAN (WINDOWS 64bit) cd\ cd "Program Files (86)\AVG\AVG10" avgscanx.exe /comp /ext=* /reg /boot /proc /macrow /pup /arc /ads /trash /report="c:\mt\rsfiles\AVGREPORT.txt" Re: One2Many Script Repository A handy quick scanMALWARE scanner command line: cd\ c:\a2cmd /u c:\a2cmd /deep m /t /c /a /log=c:\mt\a2cmd\logs /d You can Download A2 Squared and then Copy the following files from program filesto c:\ The only files you need to copy from program files folder is: a2cmd.exe a2update.dll engine.dll The rest is created when updates and scanning is done. Further switches can be found from a2 squared website. Re: One2Many Script Repository Hi guys, AVG 2011 with switches I use when installing via ONE2MANY. Program downloaded: avg_free_x86_all_2011_1120a3152.exe Switches: /AppMode=setup /UILevel=Silent /Selectedlanguage=1033 /InstallToolbar=0 /ChangeBrowserSearchProvider=0 /InstallSidebar=0 /DisableScan /KillProcessIfNeeded You can alter your own switches by looking up the PDF document (page 241) form here: http://aa-download.avg.com/filedir/doc/NETWORK_GROUP/AVG_Anti-Virus_Network/avg_avb_uma_en_2011_01.pdf Some hinderences that stop this download and install from happening are: 1. AVAST or other virus software installed. If older versiona of AVG are installed the above switcheswill autoboot and install on reboot without user intervention. 2. UAC turned in under users on Vista and windows 7. This will mean logging into the dash board to view installed programs which is time consuming and a pain.... OInstead I run this script to view installed programs from the script log which is much quicker. regedit /e c:\regexport.txt "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall" find "DisplayName" c:\regexport.txt >c:\regprogs.txt type c:\regprogs.txt del c:\regexport.txt del c:\regprogs.txt exit Re: One2Many Script Repository Hi Andrew, You might find this regarding windows update switches. http://support.microsoft.com/kb/262841 Also multiple updates with only one reboot: http://support.microsoft.com/kb/296861