0
votes
0answers
27 views

PowerShell Scale Excel Sheet

I'm working on a PowerShell script to change Excel documents into PDFs. As part of the process I am changing to a landscape orientation and I want to ensure that the sheet is scaled to fit one page. I ...
1
vote
0answers
20 views

Windows command to copy file forcefully when that file is used by another process [migrated]

I am copy a file using copy command. But its throwing some error. copy /y ..\BuildLog.htm . Error is : The process cannot access the file because its used by another process XCOPY /Y is also ...
-1
votes
1answer
36 views

Writing a program to edit PHP files through GUI [closed]

I want to write a program or script that will allow one to make simple changes to a PHP files. There are <div="article"> tags which are basically just some text and maybe a photo. Basically, ...
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 ...
0
votes
1answer
18 views

VS2012 Solution Open scripting or automation

I need to copy standard component DLLs into a standard folder defined in every VS2012 project when the project is opened. We're not allowed to store DLLs in Subversion so I need to reload this folder ...
1
vote
1answer
18 views

How to script keyboard clicks in a browser on a mac

The title says it all. I'm trying to script keyboard clicks in the browser (preferably Chrome). It's simple, from the current page I want to tab through 5 elements, then click enter, then repeat. ...
0
votes
0answers
13 views

Automation of non gui non database unix application

I have two components which are used by service provider on unix platform which doesnt have any GUi or the database. When Component1 recieves a network MAP message it will process it and forward the ...
0
votes
1answer
36 views

Automation of sum( ) in Excel

I have an excel sheet say First.xls with some columns, looks like : Sno Type Desc 1 Hard xxxx 2 Soft yyyy 3 Medium zzzz 4 Hard aaaa 5 Medium zbzb 6 Medium acac n ...
4
votes
2answers
185 views

Determining all required DNS Queries to show a website

I need to create a list of all DNS Queries required to display a large number of sites (ideally up to 1 000 000). The list needs to assign the queries to the page that required them. Example: ...
0
votes
2answers
65 views

How to script automatic actions on web?

Its a very general question:) For example I want to be able to automatically check if a page was updated, or to make some daily action online... Where would I start with that? Which languages/programs ...
-1
votes
1answer
65 views

imacros keyword verification

I have a macro that auto fills a form. but sometimes after autofilling the form i need to check my email for a link to 'complete filling in the form' (kinda like a verification). sometimes it asks me ...
1
vote
0answers
55 views

Save Photoshop Action Set Automatically

How can I automatically save out action sets in Photoshop via Photoshop scripts (.js/.jsx)? If that is not possible, is there a way to do it via some other method? I'm trying to automate the setting ...
-2
votes
1answer
36 views

Automate tasks within closed-source software [closed]

I frequently perform repetitive tasks within a certain closed source application, and would like to automate these tasks. The main task is very simple, however involves a few conditions (selecting a ...
1
vote
1answer
113 views

Log read only at current date with error append to text file as output

I Have below text on remote computers (a list of 50 servers) saved in e:\logs\action.log This action.log will contain the a Date & time and every time a action performed will be tracked and ...
0
votes
1answer
108 views

Windows scripting: Monitor file on shared server and alert upon detected change

I am looking to create a simple script that will monitor a file on a shared server location containing a date. When this date changes, I need to display an alert to the user. Is this possible using ...
0
votes
2answers
52 views

AIFF files: strip initial “whitespace”

I have a folder full of AIFF files that have a little gap at the beginning where no sound is heard. How would I go about writing a script/tool that'd remove this gap? Basically the files look like ...
0
votes
0answers
103 views

How can I configure TestRequest properties through script in SoapUI?

Can anyone please tell me how to configure Username and Password properties for a TestRequest present under every TestSuite -> TestCase -> TestStep? Thank you
0
votes
1answer
646 views

Crystal Reports & VBScript - Could Not Locate Automation Class

First off, I have very little Crystal Reports experience, so apologies in advance if this is a stupid question. I had this "fantastic" work project dumped on me when a co-worker left, so I'm hoping ...
0
votes
2answers
60 views

Write a windows script

I would like write a script to automate a certain task on windows. I use a monitor to extend the screen of my laptop but every time I remove the plug and reconnect the monitor I have to go on to ...
0
votes
0answers
24 views

What is the best way or tool for an automated event query?

I am a member of a volunteer fire department. We are alerted via pager. The pager are weekly triggered on a trial basis to ensure its proper functioning. With this project, I would like to examine ...
0
votes
1answer
303 views

Running AutoIt3 Scripts in VB 2010

I am fairly new to this, so pardon me if I am asking a silly question. I created an application in 2006 that calculates bottom-hole pressure. Basically, it takes the user-inputs, calls a secondary ...
0
votes
1answer
184 views

VS2010: run command when solution configuration changes

We're writing Python modules in C++ using Visual Studio 2010 Professional. We output Debug and Release modules in a different directory, and a configuration file for the Python part of our code ...
2
votes
0answers
681 views

Adobe Premiere scripting

I want to automate a sequence of task on Adobe Premiere Pro CS6, thats all repeating tasks, and while doing manually consumes lots of time, :) that stars from: importing video file, image files, doc ...
0
votes
1answer
50 views

Automating tasks in Xcode 4

I'm curious if Xcode 4 is scriptable in some way. I'm facing code that has literals sprinkled throughout that I would like to extract. That sounds like a perfect task for a script. Any suggestions?
0
votes
1answer
55 views

Can Flash Professional be automated?

What I want to do is script some flash authoring tasks. The procedural drawing tools (such as the "Deco" tool) suggest that this is possible, as they programmtically generate content which can then be ...
2
votes
1answer
679 views

Feeding input to an interactive command line application

I'd like to feed inputs to a command line interface for Cisco AnyConnect vpncli.exe (v2.3) to automate its (re)connection. It does not take username nor password as command line arguments, but reads ...
0
votes
4answers
338 views

Script to open a bunch of browser tabs, based on data from an Excel spreadsheet?

Take for example a link format of: www.stackoverflow.com/xxxxxxx I have an Excel spreadsheet with one of the columns as a bunch of these xxxxxx values. I need to pull all of them from the ...
0
votes
1answer
311 views

Create PackageMaker project file on the command line

Is there any way of creating a pmdoc (PackageMaker) project from the command line? I am trying to automate the process of creating the installer and would like to script tasks like: Adding another ...
4
votes
2answers
2k views

Automating GDB Sessions

What are the best ways to automate a GDB debugging session? Does GDB have a built in scripting mechanism, should I code up an expect script, or is there an even better solution out there? I'll be ...
-1
votes
1answer
156 views

Add a computer to a collection in configuration manager with powershell [closed]

So far I am able to get the computer name for my script. What I would like to do is take that name and have that computer added to the collection under configuration manager without having to use the ...
0
votes
0answers
157 views

expect function calling in php script

so here is the new twist in my current work :P. I have an expect script for checking some vty lines on cisco Terminal Server, to make sure that a user is logged in except for the line that the script ...
2
votes
3answers
100 views

With jQuery, is it possible to have it detect a certain link class, and open them all?

Say there's a button I want to click on, or a link, and there's ten of them per page and I want to control/command click them all so they load in new tabs. I do this every time, so I want to automate ...
0
votes
1answer
55 views

Automatically progress to next page via clicking? (Automation)

I have a job that requires a lot of tedious clicking throughout a website as part of the workflow. In one step, I click a link, go to the page, then ALWAYS click a link on that page. I wish I could ...
1
vote
1answer
1k views

Loop through all threadded text frames in JavaScript InDesign script?

I'm trying to create an InDesign script that functions exactly like SplitStory.jsx, only that it won't require first selecting a threaded text frame but instead loops through everything that is ...
2
votes
2answers
140 views

Scheduling Powershell changes ObjectType

I've written a little script that checks for differences between 2 text files. $new = get-content $outPutFile $old = get-content $outPutFileYesterday $result = $null $result = ...
0
votes
3answers
402 views

Scrape a part of website and notify on change

The website of my university unfortunately does not provide feeds but they keep publishing information there that is important for me (deadlines, dates of exams etc.) as links to pdfs in a certain ...
1
vote
1answer
696 views

automating telnet session in windows is not working

Hi I have created a file temp.txt with the the content as below root root123 ls -lrt exit and then I am excuting the below command in dos c:\>telnet machine_ip < temp.txt Output is ...
1
vote
2answers
770 views

Capturing screenshot of windowed OpenGL window in AutoIt?

For my graphics class, I need to match an OpenGL sample output in a pixel-perfect way. I figured it would be cool if I could spawn the sample, send it some input, then take a screenshot of the exact ...
0
votes
1answer
53 views

Script Chrome to fetch data

Do you know if there is a way to script Chrome (or Firefox) to fetch pages, connect itself... using JavaScript for instance? Thanks
6
votes
1answer
136 views

Mocking Windows Installer

Is it possible to mock the Windows Installer? I would like to set up tests for various scenarios during install. I don't really care what is stored in the Windows Installer databases, I just want to ...
2
votes
2answers
122 views

Script-Run Silverlight Test Project

I have a solution with several Silverlight Test Projects. I would like to have some kind of script or tool with the ability of running all these test projects and generating some kind of report (any ...
3
votes
2answers
838 views

Watir Changing Mozilla Firefox Preferences

I'm running a Ruby script using Watir to automate some things for me. I'm attempting to automatically save some files to a certain directory. So, in my Mozilla settings I set my default download ...
3
votes
1answer
374 views

How do I control zoom level in photoshop using javascript?

I'm writing some automation scripts for Photoshop in javascript. I'd like to be able to control the zoom level in the script, preferably reading the current value, setting it to 100%, and then ...
0
votes
1answer
127 views

AutoHotKey script not working with Hudson

I have an AutoHotKey script that basically opens up a few programs, runs a few tests, takes screenshots and saves them to a directory. The script is working flawlessly when running on the machine that ...
0
votes
1answer
395 views

How to use Ant mail task? what are the manditory inputs?

I am using ms- outlook. What are the manditory inputs for this Ant task and how can i find my mailhost and mailport number?
0
votes
1answer
1k views

Data-driven graphs with Adobe Illustrator and XML/database

I'm trying to create an automated process where I could populate an illustrator file that includes bar charts and pie charts with variables, and then export PDF for each record I have in an XML file ...
2
votes
1answer
153 views

selenium management tool

I am wondering what is the best management tool for SELENIUM. Something that handles automated running of tests with RC. Saves screenshots that selenium rc takes, connectivity to a database. What are ...
4
votes
1answer
173 views

Is it possible to create branch that is tracking non-existing remote

I'd like to checkout a branch in such way that subsequent git push will properly push it to origin under same name. This is easy when remote branch already exists git checkout -b branch ...
2
votes
6answers
641 views

Currently checked out version of a directory/file in perforce

I'm trying to automate some builds for a project kept in perforce. I'd like to extract the current changelist number as a way of tagging the build version. This command: p4 changes -s submitted ... ...
0
votes
3answers
157 views

Automatically running a script to read particular information from a .txt file ? (Perl Script, or suggest)

My scenario: A text file(s) will keep coming into say a folder, I need to detect the new text file, and read particular information from it, say format being (word : info, OR word and under it a ...

1 2 3