cancel
Showing results for 
Search instead for 
Did you mean: 
Anon51436
Active Contributor

Re: One2Many Script Repository

 
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 are installing to has 2011 already. this will give you an error the same as yours.
Twisted Networx
Contributor

Re: One2Many Script Repository

You're right.  I downloaded the full installation and ran the x64 on 2 PCs with absolutely no problem. Thanks for the script!

Twisted Networx
Contributor

Re: One2Many Script Repository

Suggested Script or combination of scripts:

MSE and Malwarebytes?

Has anyone scripted these installations, and can more than 1 be scripted in the same plan or do they require individual plans?

Anon134224
Visitor

Re: One2Many Script Repository

Does anyone have a script for changing the passwords of accounts on servers with one2many.  The script will need to make the domain name a detectable variable and the usernames are all the same.  It would be nice if we could create accounts too.

mattyb
Active Contributor

Re: One2Many Script Repository

Here is a small script I use to clear out the junk files (temp, internet etc) off all local profiles.

 

 

 

IF "%OS%"=="" GOTO WIN9X
@REM - FIND "DOCUMENTS AND SETTINGS" FOLDER:
%SYSTEMDRIVE%
CD %USERPROFILE%\..
FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\LOCAL SETTINGS\TEMP\*.*"
FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\LOCAL SETTINGS\TEMPORARY INTERNET FILES\*.*"
FOR /D %%F IN (*.*) DO DEL /F/S/Q "%%F\COOKIES\*.*"
DEL /F/S/Q %WINDIR%\TEMP\*.*
DEL /F/S/Q %WINDIR%\*.TMP
GOTO END
:WIN9X
REM - WIN9X systems are currently not supported.
:END
Takes a while when first run, but daily it's fantastic.

 

brianperry
Visitor

Re: One2Many Script Repository

anyone know how to kill trend micro in a script, need to disable so i can install an msi package then enable

scottay
New Contributor

Re: One2Many Script Repository

I'd like to second the request for a MSE and Malwarebytes definition updates and scans... Is this possible?

 

Thanks!

Scott

scottay
New Contributor

Re: One2Many Script Repository

For anyone that needs it, I got MSE to work with a batch file with this:

 

"%ProgramFiles%\Microsoft Security Essentials\MpCmdRun.exe" -scan -1

 

However, the only thing to watch out for is the path of MpCmdRun.exe... One computer I have it on is as above, but another is ...\Microsoft Security Client\Antimalware\...  Double check before trying to run it or it will fail.

 

Scott

Mark_INGG
Visitor

Re: One2Many Script Repository

Does anyone have a script that would run on a remote client and pull logs back?

 

 

Anon51436
Active Contributor

Re: 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.