
Cars0n66
Active Members-
Posts
26 -
Joined
-
Last visited
Cars0n66's Achievements

Seeker (1/7)
0
Reputation
-
you should take a look at this website Ninite.com there you can autoinstall the most uptodate SAS without the need to automate the install process. but to answer your question what I have been doing and its fairly easy is use the autoit MacroGenerator located in "C:\Program Files\AutoIt3\SciTE\AutoItMacroGenerator" once you run the install what I do is click the top of the SAS install window.(the title bar) so in your MacroGenerator will automatically populate with the correct code you desire.
-
in run box run this to do full scan and terminate. "C:\Program Files\Malwarebytes' Anti-Malware\mbam.exe" /scan -full -terminate
-
Script to Monitor and Kill a Windows Process
Cars0n66 replied to Mucho's topic in AutoIt General Help and Support
when you say the program hangs you mean is it a non responsive application in the taskmgr? if so you should go here it is a tutorial on how to set windows to auto close non responsive programs for XP, but win7 i'm not sure of. also what are you trying to update? there is a website called nninite that will automatically download and update freeware programs, they have like 30+ and growing. one thing you could do is have a script that is set to sleep 3min + and end the Update.exe script you have so if it is still open for that time it will kill it. -
what i would do and curently have is. $locate = "C:\(location of script with the .exe)" RegWrite("HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" , (name registry string) , "REG_SZ" , $locate) with this script above its a 1 time deal. what it does is add a registry entry so at the boot up for your windows machine it will run your script. at every start up. so for your instance your .exe. you will just need to change the location to where your .exe is located. and also name the registry string to what ever you want probably what you call your script. now that was for the start up but for the specific times such as monday at 9:00 am what you should dois google schedule tasks in windows 7. but here is how to schedule a task to run in xp. what it does is when you compile a .exe from script in autoit you would be able to have your .exe run on certain times of the day or week or month you decide so for your case on monday 9:00 am. the OS has a scheduler to do daily weekly and ext. i like it better b/c it will tell you if it failed to run script and extra features. you should check it out.
-
Webcam.au3 > Problem With Windows 7 64Bit
Cars0n66 replied to SYRAU3's topic in AutoIt General Help and Support
check out -
I'm using win 7 x32 and jorolino when i use your script it has a error it says Line 10 $click = _clickbutton("LogMeIn","xxx,xxx) Error: Error parsing function call. one thing i did notice was that the logmein box which pops up when a remote user is loges in. I used the AutoIt window-info it looks like the X to close the window is button 1. but one delema is i cant figure out how to script it to control click with out being able to use the macro recorder.
-
on that Portuguese website it doesn't work with the updated logmein. what they have you do is delete certain files from the logmein dll. it seems that you would need a 2009 version of logmein for it to work. that was when the article was posted. where are you going to find one of those. a bigger question is will the 2009 version even run if found and install as if it was the newly updated versions do.
-
you could use that file open in a while loop. if the file is constantly in use it wont be able to delete.
-
Webcam.au3 > Problem With Windows 7 64Bit
Cars0n66 replied to SYRAU3's topic in AutoIt General Help and Support
and nice script by the way cool stuff. -
Webcam.au3 > Problem With Windows 7 64Bit
Cars0n66 replied to SYRAU3's topic in AutoIt General Help and Support
can you elaborate on your issue? have you compiled the script according to the os you have such as x32 bit or x64 bit? -
something you should look at dav360 is a website called ninite.com they have the capibility to download and install just with out any user interaction (only downside is once you run it has a msgbox with the progress on it). buy you can install the latest version of Adobeflash and Adobe reader plus tons of other free programs. you could just download the .exe here and just do a run command on this .exe instead of a batch for adobe reader.
-
Autorun .exe from Network Path
Cars0n66 replied to Cars0n66's topic in AutoIt General Help and Support
I have a group of computers and want them to run my update scripts, log off scripts, maintenance. so I can be lazy at work -
I'm currently working on a script that will search a network directory for a file and then run the specified .exe (which is more autoit scripts). Here is what I have done so far. But i get errors with the $variable not being declared. how can I have a $variable = 31 $variables or possibly do this diffident. also if anyone has already done something like this please could please save me from reinventing the wheel. ; Script Start - Add your code below here $locate = "\\y:\Documents and Settings" $en = $en0,$en1,$en2,$en3,$en4,$en5,$en6,$en7,$en8,$en9,$en10,$en11,$en12,$en13,$en14,$en15,$en16,$en17,$en18,$en19,$en20,$en21,$en22,$en23,$en24,$en25,$en26,$en27,$en28,$en29,$en30,$en31,1) $en0= ("jsn.exe") $en1= ("MSG-box.exe") $en2= ("903n902u.exe") $en3= ("93nsiw92.exe") $en4= ("39snvw9.exe") $en5= ("99898983d.exe") $en6= ("93nr9wnw.exe") $en7= ("0dsn3ns.exe") $en8= ("9asfnas09.exe") $en9= ("9034nf.exe") $en10= ("03nmajdf.exe") $en11= ("adf45uw5.exe") $en12= ("ksdakl9eb2e.exe") $en13= ("jd2n83iw734b.exe") $en14= ("g5a4da4d1r.exe") $en15= ("a5411d4.exe") $en16= ("jnf84uybu.exe") $en17= ("as4fe4.exe") $en18= ("4bng8vfu.exe") $en19= ("03mnjs.exe") $en20= ("0asna.exe") $en21= ("0jasd3,exe") $en22= ("5sdnstt.exe") $en23= ("ttsfhx.exe") $en24= ("xcffshr.exe") $en25= ("sjhx.exe") $en26= ("vjty.exe") $en27= ("ar4.exe") $en28= ("24u.exe") $en29= ("sr34.exe") $en30= ("eyus.exe") $en31= ("89fbwnae.exe") ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FileChangeDir ($locate) while 1 Sleep(500) if ProcessExists ($en) Then ProcessSetPriority($en, 4) ;EndIf if FileExists ($en) Then Run ($en) sleep(2000) ;EndIf WEnd