Tagged Questions
1
vote
3answers
33 views
Whats the windows equivalent of this simple bash string manipulation?
I'm once again, wishing I could use bash while trying to do some windows batch stuff. What's a short, windows batch equivalent of this Bash expression?
$ var="EIPADDRESS=192.168.20.139"; ...
0
votes
4answers
62 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
23 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
40 views
RoboCopy & Command
I need help with my RoboCopy batch file. I have a batch file to run RoboCopy to copy file from server1 to server2. I have include the /XO switch to copy only new file.
After the file has been copied, ...
0
votes
0answers
33 views
SQL instance fails to exit on error
I have a batch process used to created an oracle schema used with my application. It goes through the work creating a tablespace, a user, creating some oracle objects on that user, etc...
The issue ...
0
votes
1answer
93 views
How to schedule a powershell script for automating wack process through windows scheduler?
I am able to execute the below command from PowerShell prompt and command prompt, but I am unable to schedule it using windows scheduler.
powershell script code:
appcert.exe test -apptype metrostyle ...
0
votes
1answer
38 views
How to force computer not to restart
I am writing batch script to automate the product testing. After product finished installation, I need to force computer NOT to restart.
Is there any way to do that with batch script?
Thank for ...
0
votes
1answer
193 views
WMI Process Call Create will not Run Batch script properately
This is what i am trying to do:
I have a NLB Cluster. There are two machines on said cluster: Node1 and Node2.
I have a third machine that is not in that, or any, cluster. This third machine is ...
-2
votes
1answer
120 views
How do I create a batch file which send emails of ip [closed]
how do i create a batch file to send me the ip of the computer it's on by email everytime the computer connects to the internet
0
votes
1answer
71 views
windows batch file to compile and run scala script
I want to write a windows batch file that first compiles a scala script and then runs it.
Somehow when i run the .bat file, it will only perform the first command, not the second. It will only ...
0
votes
1answer
47 views
controlling interactive console programs from batch file (cmd)
I have a WindowsXP console program that offers an interactive cli mode (some cisco tool) prompting for username and password. How can I programmatically pipe those in from a .bat file?
0
votes
1answer
71 views
how do i get drive letter batch script is running from
I have a batch script on a cd. Whenever I try to run it and enter %~d0, it returns the C: drive instead of F:, which is my cd drive. I would be grateful if someone could help me find a way to find the ...
0
votes
2answers
36 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
33 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 ...
0
votes
1answer
29 views
Downoading then installing through batch- how do I download then silently install an msi?
I know how to silently install an msi by using /qn. I also know how to download something just by using the command start http://www.domain.com/file.exe. But how do I put these two together in a ...
0
votes
2answers
88 views
Scripting for windows
This is my first time trying scripting and I'm trying to create a small program that does a simple division and mod in a loop, and then calculates the average of the mod results.
This is what I have ...
2
votes
1answer
64 views
windows batch file scripting - keep formatting in html
I'm currently trying to write a simple batch script that will run a series of windows commands and output them nicely into a single html file.
the command im running for example, is netsh firewall ...
1
vote
0answers
201 views
Net use works in batch file, fails in script
We are a small office with a Linux appliance server (SAMBA) and Win7HP on the desktops. We have one machine that acts as a "backup server" and backs up the server nightly.
Writing what was supposed ...
0
votes
1answer
61 views
Copying a folder, but excluding specified sub-directories
I need help with copying a folder, but doesn't copy sub-folders with the names that are specified in a text file. The text file is located:
U:\Directory\Directory\Textfile.txt
I need to copy ...
0
votes
1answer
177 views
Windows Batch file to get value of wildcard matched line, check for substring and append string if required
I'm totally new to command scripting and could use a little direction...
I need to check if a certain line in a .ini file exists, however I only know what part of the line will be. If it exists, I ...
0
votes
3answers
58 views
Batch file that takes the file for the previous day only and copy it elsewhere
OK, so I've done a bit of research but have hit a bit of a hurdle here. What I'm trying to do is, (using event scheduler), run a batch daily, that takes the "ips*.csv file (* is just the date format) ...
-3
votes
1answer
26 views
need help regarding removing characters from end of file [closed]
I have some file with content as
iamboyfoocityaddress+blahblahhcityaddress+
this is one complete line without spaces
and i need to delete the line starting from "blah" till end using batch file ...
0
votes
2answers
96 views
Batch file: How to save/use subdir-name when iterating thru directories with FOR /R {directory} in (.fileext)
I'm trying to unrar files with a batchscript. I want to iterate thru a folder and its subfolders and whenever there is a .rar file I want it to rar its content into the same folder as the .rar file is ...
0
votes
1answer
57 views
Unable to remove the directories using a forfiles script in windows server 2003
I have prepared a forfiles script to delete the files and folders from one location on multiple servers using the below command. However, the below script does not delete the directories and sub ...
0
votes
4answers
267 views
Using Batch to run remote PowerShell V1.0 command
I am trying to gather some information from my Hyper-V hosts. I have a whole bunch of them and would like to automate this process.
I need to get the Virtual machines that are running on each host.
I ...
0
votes
1answer
53 views
Batch file to find number of folders under particular folder
I have a folder named Test under C:\Users\Desktop\Test
I want to find count of all sub folders under folders named Zone inside Test.
For example if we have folders like:
Test->Zone->Folder1 / ...
0
votes
2answers
75 views
Write batch file to count folders inside main folder
I am new to this, i am trying to write a batch file to calculate number of folders inside folder. Can someone please help me?
Here is folder system:
I have hundreds of folders like:
Area1
Area2
...
0
votes
2answers
101 views
loop and parse apart of a string from a file dos
I'm trying to parse a word from a line on a commandline with DOS command
if the string contains _(" then I want to store it in a file.
example:
js\.svn\text: $errors= '</b> - ' ...
2
votes
1answer
292 views
Batch Help — Move File To Directory, If Exist Filename, Rename 001
I have a batch file that checks a root directory every 10 seconds for PDF files and copies those files to their corresponding subfolders of the exact same name.
What I'm missing is that I need my ...
0
votes
1answer
51 views
Is it possible to determine the window/application with focus from a bat script?
The function to do so is apparently in User32.dll. I've been trying to tinker with rundll32.exe, but when I run this:
rundll32 User32.dll,GetActiveWindow
It exits without error but does nothing. ...
0
votes
2answers
76 views
I need to hash (obfuscate) a column of data in a CSV file. Script preferred
I have a pipe-delimited text file with a header row. (I said CSV in the question to make it a a bit more immediately understandable ... I imagine most solutions would be applicable to either format.)
...
0
votes
1answer
70 views
Batch file copying script giving errors on for loop
I'm in the middle of writing a batch script that will copy a bunch of tiny files from one location to another, verify that the file exists in the new directory, delete the original, and move on. I've ...
0
votes
3answers
48 views
Batch script: IF compaison is not working as expected
FOR /F "tokens=*" %%A IN ('gpresult /r ^| FIND "string"') DO SET Result=%%A
if '%Result%'=='this is where the word string shows up'
echo Success > %homepath%\Desktop\Success.txt
Does not ...
0
votes
1answer
42 views
Populating empty folders recursively with Windows
I have a huge series of folders, named 'A' through 'Z' such that each folder has subfolders in the same form.
For example, I could have a directory at this path: .\A\D\E
I want to populate each of ...
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 ...
1
vote
1answer
198 views
Batch file to send a file to an FTP server
I have a batch file (ftp.bat) that looks like:
@echo off
echo user etm124> ftpcmd.dat
echo testing123>> ftpcmd.dat
echo put %1>> ftpcmd.dat
echo quit>> ftpcmd.dat
ftp -n ...
0
votes
1answer
45 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:
...
1
vote
1answer
64 views
How to interprete variable in batch string?
i have a problem in a string with variable included
I read a key in registry like this :
call:ReadReg "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders" ...
0
votes
1answer
201 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 ...
2
votes
3answers
155 views
Checking Time and executing different instrcutions based on hour
I am using a Robocopy command on a Windows Server 2003 server to copy a series of EDB files to special folders from user workstations onto a server. I want to run the robocopy commands twice, once in ...
0
votes
1answer
81 views
Batch Scripting Syntax Error
I'm trying to built a simple dungeon crawler game with batch script, but I keep coming across the error as I'm creating the menu screen. Could anyone please help to point out what I'm going wrong? ...
0
votes
2answers
103 views
for /f in batch scripting
echo %DATE% will display something like this:
sri 09.01.2013
Here is the script:
for /f "tokens=2-4 usebackq delims=. " %%i in ('%DATE%') do set fileName=testing_%%i_%%j_%%k
echo %fileName%
When ...
0
votes
1answer
207 views
Batch file read from largest registry sub-key?
I am trying to modify my batch script to get the install path for a piece of software, however it needs to be version independent and the install path is stored in a version sub-key, so basically what ...
2
votes
2answers
41 views
SSED Remove Multiline XML Code
I'm trying to use SSED to delete multilines from a XML File. I am able to delete certain single lines within the XML file, but I need to be able to remove multilines.
For example:
...
1
vote
1answer
884 views
VBS or Bat - Determine OS and Office Version
Does anyone have a script that can determine the Windows OS and Office Version in the same script.
I have bits and pieces of the script but I can't seem to figure out how to incorporate both OS and ...
0
votes
2answers
36 views
copy C:\Dire\*.bak /d:%date% C:\Dire\D2\*.bak - Not working, has before somehow
I tried
copy C:\Dirname*.txt /d:%date% C:\Dirname\Dirtwo*.txt
to move a file from a directory to it's sub-directory, but only a file that was created TODAY.
and I got it to work once, I don't ...
1
vote
3answers
97 views
How to avoid batch line limit (8191 chars per line)?
I have a multiple line file (about 300 - 400 lines) each line has 72 characters and i need that transformed into a single line.
Any ideas ?
0
votes
2answers
70 views
Windows TYPE to Console recreated using Unix Shell scripting
We have simple Windows batch files that when an error occurs, an "ONCALL.bat" file is run to display support information that is maintained in a separate oncall.txt text file. This is our SOP.
...
0
votes
1answer
146 views
/ was unexpected at this time - batch script
im using the batch script below and i keep getting the error "/ was unexpected at this time."
any ideas?
thanks
@ Echo off
set n_user =%%%% username password;
c:\windows\system32\find / n "%% ...
0
votes
2answers
312 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 ...

