Tagged Questions
1
vote
1answer
35 views
Error calling similar() in Sikuli
l = find("Start_menu.png").similar(0.5).anyColor()
click(l)
The above is an excerpt from my code. "Start_menu.png" refers to an image of the Windows Start Menu. I got the following error when I ...
0
votes
2answers
47 views
Timers wait for eachother
How can i set timers to wait for each other if another is running? The documentation says if a timer wants to start with a lower thread priority it wont be running at all.
What i am looking for is a ...
0
votes
1answer
11 views
need to create a script to extract html
I need to create a script that will extract html from a loaded page. I can manually download the html in the "network" tab of the javascript console in chrome but I'd like to have a more automated ...
1
vote
0answers
18 views
Any kind of script to log in to WIFI every 90 minutes
I am not looking for a hack. I have wifi at home but I am disconnected every 90 minutes and have to press enter to get back in. I have been mucking about to try and write something that will silently ...
0
votes
3answers
110 views
Handling a popup box using powershell
Can anyone please tell me how to click on "ok" or "cancel" on a popup window using powershell?
I am trying to automate a website using powershell, but I am new to powershell. I have to click on OK ...
0
votes
1answer
49 views
wsadmin jython script exit code to calling script
I am writing batch and bash scripts to automate some websphere tasks.
I need to get the exit code of myscipt.jy back to the calling script,
jython script
#----------myscipt.jy-----------
#I am ...
0
votes
3answers
73 views
Difficulties creating an automatic file moving script (Powershell)
I'll start by stating that i'm pretty new to Powershell but from what i hear it can be pretty powerful.
with that said i'll specify the problem.
i'm trying to write a Powershell script destined to ...
0
votes
2answers
22 views
Quick way to create skeleton .CPP files for each .H file
I have a header-only library with loads of .h files and I want to test each file works by having a .cpp file for each .h file with the same base file-name, which is empty except for #include-ing the ...
-1
votes
2answers
185 views
how to change settings in internet explorer using powershell?
We need to be able to change internet explorer settings on hundreds of machines.
The change that we need to make is:
go to settings
connections
lan settings
uncheck "automatically detect settings"
...
0
votes
1answer
212 views
How to configure a VM from HyperV host using Powershell
I have a HyperV server with over 10 VMs hosted on it. They all use a base image so they are not connected to a domain nor do they have there NIC configured. Is there a way that I could run commands ...
0
votes
0answers
51 views
Script which telnets to a device, runs commands and prints output to a file
I am connecting to a device using telnet, I want my script to perform certain commands : ie- show device , show inventory..etc and write the output it sees from the terminal to a file.
this is what I ...
1
vote
1answer
53 views
Change color mode of document from indexed to rgb
I try to convert images from gif to png using photoshop automation.
To be able to save as png I have to convert the image to RGB first.
It should be done using
doc.changeMode( ChangeMode.RGB )
...
0
votes
2answers
217 views
Python script will not run in Task Scheduler for “Run whether use is logged on or not”
I have written a python script and wanted to have it run at a set period everyday with the use of Task Scheduler. I have had no problems with Task Scheduler for running programs while logged off, ...
0
votes
1answer
78 views
What's the best way to scrape keywords from Twitter?
I have an idea for a script that I would like to use for a contest on Twitter. The script I want to build will scrape keywords from a tweet (someone I'm following) and then automate an action when ...
0
votes
1answer
65 views
bash to automate file processing
I need to split a big sorted file into smaller chunks, each file contains a list of sorted person names. Now I want to guarantee that person with same name will not appear in two files, for example,
...
-1
votes
1answer
69 views
Automated Script for IIS log rollover schedule change [closed]
Is there any script for automating IIS log Rollover schedule change ? Please give some idea's to implement it further.
1
vote
2answers
97 views
Automatic install of visual studio?
Is there a batch script (or even something like ninite) that can automatically download and install visual studio express?
0
votes
0answers
25 views
Automatic web page printer program
I have a lot of bookmarks and a majority of them are web articles. I want to store all of them locally just in case the sites goes down, but since I have so many bookmarks it will take forever to ...
0
votes
0answers
13 views
What automated framework for user interaction over limited channel (text, touchtone, or other limited input) do developers use or want?
If one were to offer third-party developers the ability to write "bot" code that interacts with users on a black box platform, what's the state of the art? Is there a special scripting language like ...
1
vote
1answer
444 views
Dynamic Build Processes with Grunt.js
Is it possible to read a JSON file of child-themes and variables relevant to each one and have a dynamically generated build process via grunt.js?
Specifically, I have a standard grunt.initConfig(), ...
-1
votes
1answer
71 views
how to install mysql using php
me and my hair-brained ideas again...
i am building a mailserver install script and i have hit on something i want to ask before i do just to cover my bases. i know how to use php with the shell_exec ...
1
vote
1answer
200 views
Automation Of Adding New Group Member in Google Apps--Using Google Script
I am trying to accomplish what I imagine would be a fairly simple automation in Google Apps, but I am new to Google Scripts and am having trouble figuring out how the triggers to execute the script ...
0
votes
2answers
69 views
Exporting specific part of a html page with batch
Firstly I'm new to the community as an user, and I want to say it is a great one.
My question is that I want to get an URL from an <a href="" element, using <alt="new"> or the name of an ...
0
votes
1answer
67 views
Automation of a snippet insertion process in php
Well, I have no idea of this and how to do this but its making me go crazy. so here is the thing..
suppose i have this piece of code in say 20 files.
while(//some_condition):
.....
// do ...
0
votes
1answer
79 views
use expect to automate ssh keypair generation
I want to automate command ssh-keygen -t rsa. What's unique is the command will print out different text under different conditions. For example, if it is the first time, it will output enter ...
2
votes
3answers
642 views
shell script to auto enter password
So I made a tiny script to change my mac address but it requires me to enter my password to make the switch... what can I add to have it enter it for me?
sudo ifconfig en1 ether 00:11:22:33:44:55
2
votes
2answers
2k views
SSIS C# Script Task for automation
I have an SSIS package that begins with a script task to check that a specified directory contains three files. If there are 2 files it prints a warning, if there are 1 or less files I want to print ...
0
votes
2answers
1k views
Automate Multiple SCP Transfers in Python w/o Keys
I need to copy two programs from one server to another after compiling using an automated non-interactive python script. Keys are not an option as this script is for multiple users on company servers ...
-2
votes
2answers
60 views
What scripting language would you recommend for this task? [closed]
I want to implement a simple script to do some boring housekeeping on my media pc, but am not sure what scripting language would lend itself to this task.
Pseudocode for what I want to do is:
1) ...
0
votes
1answer
79 views
Script to automatically execute multiple runs of a c++ program
Consider a basic program - SumOf2Numbers.cpp. I can give 2 number as input through command line and it give the sum of the number.
I want to run this program with various inputs like,
./a.out 5 6
...
1
vote
3answers
475 views
running autoit/autohotkey scripts from server? or other automation alternatives?
I have some automation scripts written in autoit whose work is to browse web and take info. For example : Browsing to youtube and getting list of trending videos and stuff like that. it involves no ...
0
votes
1answer
361 views
Automatically populating meta descriptions in Opencart
I'm trying to add meta descriptions to 700+ products on a site I'm working on in Opencart and I'm hoping I don't have to do it manually. There's already product descriptions for each product and I've ...
0
votes
0answers
49 views
Writing a test script to detect if webpage is fully loaded
I was wondering if it's possible/or whats the best way, for an automated test script,
to go to a website, and detect when that website is fully loaded. Ideally, I want to be able to measure the time ...
0
votes
1answer
318 views
PHP Auto Delete an Array of Unwanted Files From All Folders on Server Script
So I have a couple of PHP scripts for deleting error_log, .DS_Store etc files from all folders on my entire server. I simply have these scripts uploaded to my root (public_html) and visit them ...
-1
votes
1answer
41 views
Creating a script that checks the amount of files in a folder and if different then do something in windows?
what language would be useful to make a program that looks in a directory and saves the amount of files inside of it as a variable then have it check if the variable does not equal what it was ...
0
votes
1answer
218 views
Can i export a jmeter test as a script?
I am trying to build a test framework for front end and back end services. One of the test I want to do is if a certain webpage loads well. I have made a simple test in jmeter, and now my question is: ...
0
votes
1answer
145 views
Navigating a control (ListBox) time-lag
While making AutoHotkey-script I encountered the following problem. I need navigate listbox (one position to lower direction). If the current selected line is a bottom line of visible listbox area, ...
0
votes
1answer
228 views
Automating eclipse console input with values from a file
I currently have a problem where I need to test thousands of console inputs in order to create a log for another team on the project. The project is being developed in eclipse (java)
Basically the ...
2
votes
5answers
1k views
How can automate sftp from machine B to machine C with machine A?
I have some files which need to be sftp from machine B ( linux ) to machine C. We need to start the task in machine A ( windows server 2003 ) and schedule this in Windows Scheduler. How can I do it?
...
0
votes
0answers
350 views
Import Excel Spreadsheet to Powerpoint using Scripts
Is there any way to import just the tables (spreadsheet) from Microsoft Excel to Microsoft Powerpoint (as a new slide in an existing PPT file), using any scripting language (Shell, Perl, Python ...
1
vote
1answer
244 views
Scraping product information for comic book website
I'm making a comic book website built upon a WordPress platform for an old friend for his business. I would like to be able to have a script that goes to various publisher sites and pulls in the data. ...
1
vote
2answers
5k views
passing parameters to winscp.com command line
I am trying to write a winscp script. I tried the example at,
http://winscp.net/eng/docs/guide_automation#modifying_the_script_automatically
but the parameter value is not taken by the script.
Any ...
-4
votes
2answers
304 views
How to start internet explorer without any add-ons except flash?
I know there is a mode for IE called No-Addons but is it possible to start internet explorer with autoit or similiar tools or in any way with only adobe flash or reversed how to disable spammy ...
2
votes
2answers
555 views
VBS vs PowerShell: Which is lighter?
If I need a script that executes with minimum effort from the system, which would I choose?
By looking at processes at Task Manager:
Memory (Private Working Set)
wscript.exe 2,068K
powershell.exe ...
1
vote
4answers
279 views
How can I use a script to change some text in an epub file?
I've recently bought a Nook Simple Touch. I use Calibre to manage my ebooks, and to transfer them to the Nook.
Due to a non-standard implementation of the epub specification on B&N's part, the ...
0
votes
1answer
151 views
How to automate online tasks in linux?
I want to automate some of my online tasks like, checking my ticket status, login to a website and folow some links and get some info, pay my bills, recharge my mobile etc,.
I am looking for ...
2
votes
1answer
139 views
Automation / Macro Software Languages, Libraries, or Tools
Based on this info, what automation tools / libraries / scripting languages do you suggest?
I have a C++ / C# backround
I have a Python future
I use Windows, but would very much prefer a ...
1
vote
0answers
140 views
Clever way to use aspell to auto correct passage?
I'm pretty new to aspell, but I just wanted to know if there was a way to scan a file using aspell and autocorrect all errors using the first suggestion.
4
votes
1answer
1k views
How to keyboard type a variable using xdotool?
I am coding a little script to save some data from Internet every single day.
So I am using xdotool to simulate all my navigation until the point I have the save window of firefox in front of me, I ...
0
votes
4answers
141 views
Is there a script I can run to remove all the hard (carriage) returns in a .txt file?
I have a .txt (Mac OS X Snow Leopard) file that has a lot of text. At the end of a paragraph, there is a hard return that moves the next paragraph onto another line. This is causing some issues with ...
