0
votes
0answers
12 views

Scripting & automating all SQL Server Jobs

I am looking to script out all the SQL Server agent jobs and automate it, for high availability purposes on StandBy Server. (.sql format NOT PowerShell plz) here is the script that I found.... ...
0
votes
0answers
24 views

file renaming Scripting. renaming episodes automatic

i'm trying to make a script so it will automatically rename season episodes. for example i have an episode that is just named "episode 1" i would like to rename it to "Family guy S01E01" and the be ...
0
votes
4answers
84 views

Batch (Windows) execute script wait for request and input the answer

the problem: I want to create a batchfile that executes other scripts. Then only problem is, you can not give the necessary input by parameters. The scripts ask for some data along the way. Is there ...
0
votes
1answer
26 views

Batch script network file

I have a batch script which I am trying to open a file (powershell script on a network location). If I put the path as a local c:\test.ps1 it works fine but I cant seem to get it to work with the ...
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
2answers
53 views

Finding Prime Numbers - “factor” command not found

I am writing a bash script to find all of the prime numbers less than a given integer. Here is the code: #!/bin/bash BADARGS=65 if [ -z $1 ] then echo "Usage:`basename $0` cannot have a null ...
0
votes
2answers
73 views

Bash Script error: [: missing ]

#!/bin/bash if [ `date +%u` -lt 6 && `date +%H` == '19' ] ; then echo 'Sorry, you cannot run this program today.' else echo 'yes, you can run today' fi The script above is to run a ...
0
votes
1answer
68 views

wget spider returns all URLs twice — where is the bug?

I was looking for a script to create a URL list for a sitemap and found this one: wget --spider --force-html -r -l1 http://sld.tld 2>&1 \ | grep '^--' | awk '{ print $3 }' \ | grep -v ...
0
votes
2answers
37 views

Install after download within a script?

I would like to download an msi and install it, all silently within a script. I wanted to try something like start iexplore.exe http://domain.com/file.msi /qnbut unfortunetaley, it will just download ...
0
votes
0answers
39 views

psexec with multiple usernames and passwods

Is there a way to provide multiple usernames and passwords to psexec via batch file? Using one username and password has worked with my below script. The list of servers belong to several different ...
-1
votes
2answers
86 views

why wont objshell work [closed]

Set objFSO=CreateObject("Scripting.FileSystemObject") outFile="C:\Program Files\number2.vbs" Set objFile = objFSO.CreateTextFile(outFile,True) objFile.WriteLine "Set objWshShell = ...
0
votes
2answers
47 views

Choose all variables after $var_no_N

I want to choose all or a set of variables that occurs after N number of variables. Eg: I have a file with multiple lines which are comma separated. How do I choose all variables that come after ...
1
vote
1answer
139 views

Using WMI to get printer logs

I'm trying to use WMI to get printer system logs from several servers. A week ago I made the following code which for some reason only works sometimes: wmic /node:<servername> NTEvent WHERE ...
0
votes
1answer
68 views

find and replace items from a list

I am a local SEO guy and when I'm doing keyword research with Google's keyword tool I have a list of various keyword combinations that normaly use find and replace in a text editor to change out the ...
0
votes
1answer
161 views

Find File based on partial file name and move file elsewhere in vbs

I'm looking to write a vbs script to do the following. - There is a mapping file which contains an identifier followed by a directory name (e.g. 123456-Documents). - For each line in the mapping file, ...
0
votes
1answer
47 views

save the result of a operation into a variable within a .BAT file

I have the following BAT file working ok: it connects to an specific sql server and select getdate() what I really wanted is to test whether the server is connectable. I would like something like: ...
0
votes
1answer
183 views

How to return the output of scp command using expect script?

I am trying to write an expect script which will automate the scp command and returns the status of scp command. Since I am new to ecpect script, I am not able to find any way by which this can be ...
0
votes
1answer
88 views

How can I write a VB script to search for a file and show its version information?

I'm trying to create a vb script that allows me to search directories and sub-directories for a file, get its location and version information. The file could be anything such as a .dll or .exe. ...
0
votes
1answer
205 views

Batch/Bash scripting for Jailbroken iOS devices

So I have a jailbroken iPhone and would like to automate some tasks on my phone but I would rather do this myself, rather than download tweaks or apps that can achieve this same functionality. I do ...
0
votes
3answers
80 views

How can I dynamically select the interpreter in the shebang line?

I am trying to write a script which is called from the shebang line and returns the right interpreter based on a condition (in my case, based on OS version) and I can't understand why it doesn't work. ...
4
votes
3answers
123 views

Creating a bash script that acts as a fortune teller or “magic 8 ball” essentially

I am trying to create a bash script that is essentially like a magic 8 ball with 6 different responses (Yes, No, Maybe, Hard to tell, Unlikely, and Unknown). The key is that once a response is given, ...
0
votes
2answers
43 views

Dividing per a lower number

A shell script is giving me a trouble. It should display some increasing values each iteration. Dividing "1/9" is the source of the problem, and setting count as "1.0" should do the trick but gives me ...
0
votes
1answer
153 views

Shell Script - Using the diff command

This doesn't seem to be working correctly. $4 is a C file. $in is the input file. $5 is a newly created output file, after $in inputs to $4 (I'm not really sure about this one.) $out is an output ...
1
vote
2answers
240 views

What does >/dev/null 2>&1 mean?

diff file1 file2 >/dev/null 2>&1 I know what this does. It's running the command diff, and it checks its exit status, ignoring the output of diff. I just don't know what this part means: ...
0
votes
0answers
12 views

General Automation of any window?

I have an application needs to change some settings of another ones, I could not find a proper api to do so, I think my solution is to inspect the other window element and to program a script to do ...
0
votes
0answers
99 views

SMO.Scripter: Help Walking a DependencyCollection

Hi there I am working on automating the process of scripting creates for our SQL Views and object dependencies of the views (namely functions in this case). I don't care about table dependencies. I ...
0
votes
2answers
333 views

A script that will copy files and move them into another folder

I know it seems like this question has been asked a million times, but I think that my predicament is a little different and I can't find anything that serves my purpose. If this has already been ...
0
votes
3answers
219 views

Inserting multiple lines containing backslashes/special characters after a certain line in a file via sed

I am writing a script to try and speed up my basic Wordpress installation. It downloads the latest version, unpacks it, changes to the clients name and then updates some text in the config file. I ...
0
votes
1answer
952 views

vbscript text file search a line with multiple strings

Need small modification in the below vbscript... Const ForReading = 1 Dim strSearchFor, set1, set2 strSearchFor = "10/17/2012" set1= app1 set2 =app2 Set objFSO = ...
1
vote
1answer
211 views

Incorporating variables in UI scripting for applescript with object scripts

I have a script that involves some UI Scripting to target a phone number in an in-house application that does not support applescript (thus why I must UI Script). The part which I have successfully ...
0
votes
1answer
90 views

Python — how to read and change specific fields from file? (specifically, numbers)

I just started learning python scripting yesterday and I've already gotten stuck. :( So I have a data file with a lot of different information in various fields. Formatted basically like... Name ...
0
votes
1answer
222 views

Netstat batch program

When running this batch script the results are always the same. I believe I am missing something in the syntax. What am I missing? @echo off netstat -an | find /C "LIST" > tmpFile set ...
0
votes
3answers
278 views

Reading username and password from file

I'm looking at a away of reading the username and password of a file and inputing those to either add user or delete user. EG: I have a file named 'userlist' with the following content with this ...
0
votes
4answers
1k views

Shell: Connecting to a website and accessing a field

I want to write a script that takes an argument which is text, opens a connection to a specific website and input the arg into text field using the field's ID. Is this possible? How would I do this? ...
0
votes
1answer
83 views

Read in two text file lists and write out 1 line from to a text file

I need to create a powershell script that reads in two text files with lists. The first list is used to identify the remote computers that will have a file appended to it. The second list is the key ...
0
votes
1answer
261 views

Linux clean directory script

I need to write a script for a web server that will clean out files/folders older than 14 days, but keep the last 7 files/directories. I've been doing my research so far and here is what I came up ...
1
vote
1answer
357 views

Copying all .dll files from one virtual server to another with Powershell

I'm trying to copy all the .dll files from C:\windows in a virtual server to a new virtual server. I've managed to get all the .dll files, however I can't find a way to copy them to the new virtual ...
0
votes
1answer
380 views

Uninstall Multiple Programs with Custom Installer

I have run into an interesting situation where I need to check for the existence of more than one program that exists on a machine, and then remove it if it exists prior to installing some software ...
1
vote
1answer
172 views

Using Powershell on W2K3 to get group policy

Trying to create a script to get the group policy. Originally I thought this was going to be simple, after discovering several group policy cmdlets, however I've noticed that all the group policy ...
1
vote
1answer
200 views

Deleting contents of W2K3 recycle bin

Writing a Powershell script that deletes all the contents from the recycle bins for virtual servers. For some reason I'm running into an error with finding the path for the Windows 2003 recycle bin ...
0
votes
1answer
286 views

Batch for Automated Setup

I just started playing around to Batch scripts and I was wondering if anybody who is familiar with bash or scripting can give me a great reference. Right now, I am trying to run DiskPart, but another ...
1
vote
3answers
75 views

Deleting cabinet files

I'm trying to create a script to delete cabinet files in virtual servers. For some reason, the code that I've created ends up not deleting any cabinet files and instead tries to delete the entire ...
0
votes
1answer
139 views

Script to search for files and rename files

I have about 11000 different files in hundreds different folders, sub folders and sub-sub folders in following location \\mastercorrespondence, and I need to rename some of the files and copy ...
0
votes
1answer
186 views

Confirming with Try, Catch

I've created a script that creates a new snapshot in a VM and then deletes all but the 6 newest snapshots in that VM. I want to find a way to make my script check for errors and confirm that ...
0
votes
0answers
61 views

Design of a Scripting system using XML

I've built a system that parses a XML file into a Script class (described above). That file contains information about the scripting language (Javascript, Python etc) that is being used and the code ...
3
votes
11answers
166 views

simple jquery code. I don't know what I'm doing wrong

Ok. First let me say that I just started learning jQuery and I've taken various challenges upon myself so I can learn faster. Today, I have a very novice question, so apologies if the answer to this ...
1
vote
5answers
2k views

In bash, how to set a return code?

I want to set a return value once so it goes into the while loop: #!/bin/bash while [ $? -eq 1 ] do #do something until it returns 0 done In order to get this working I need to set $? = 1 at ...
1
vote
5answers
305 views

Choosing Scripting lang [closed]

I need to script my app (not a game) and I have a problem, choosing a script lang for this. Lua looks fine (actually, it is ideal for my task), but it has problems with unicode strings, which will be ...
1
vote
3answers
62 views

Get ony by one the results from find/locate

How can I get 1 by 1 the results of a command like # locate file.txt /home/alex/file.txt /backup/file.txt What I want to do is to make an interactive script where to ask: Which of the following ...
0
votes
1answer
662 views

Connecting VB Script and SQL Plus , passing value to Query

After reading from a text file , I am trying to connect to SQLplus with a value stored in a variable and trying to update a table but I am getting below error : " Unterminated String constant Here is ...

1 2 3