|
|
stackoverflow.com
- 2013-03-13 12:57:14
- Similar
- Report/Block
I have searched a lot of ways to run a batch file with process in c#, all of them didn't help me. the actions of the batch file are: using psexec, it connects to remote control and stops there some services. after that it deletes a lot of files and then copies the new ones, connecting again ,using psexec to the computer and starts service...
|
|
|
stackoverflow.com
- 2011-11-01 21:27:35
- Similar
- Report/Block
I am trying to execute a batch file using the Process class. This code is in the middle of a larger section of code where I am using LogonUser() and WindowsIdentity.Impersonate() to impersonate the local PC admin account. I was attempting to run a batch file within a Process, without adding credentials in ProcessStartInfo, but doing it t...
|
|
|
stackoverflow.com
- 2008-12-11 21:46:04
- Similar
- Report/Block
I have a service that call a batch file sometime. The batch file take 5-10 seconds to be executed. The code to launch the batch file is : System.Diagnostics.Process proc = new System.Diagnostics.Process(); // Declare New Process proc.StartInfo.FileName = fileName; proc.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hi dde...
|
|
|
|
dbforums.com
- 2013-05-17 20:02:13
- Similar
- Report/Block
Hello All! Unsure if this is possible but here goes. Have the following QRY and would like to automatically assign a range of values i.e., 1-10 in a separate column to each record within each Batch# and reset after a new Batch# :S Problem is that within each Batch # there are multiple records assigned as well as multiple Batch #'s. Any su...
|
|
|
stackoverflow.com
- 2012-01-25 13:59:50
- Similar
- Report/Block
I have a python script to start a process which I want to monitor using Nagios. When I run that script and perform ps -ef on my ubuntu EC2 instance, it shows process as python <filename>.py --arguments . For Nagios to monitor that process using check_procs, we need to supply process name. Here process name becomes 'python'. /usr/li...
|
|
|
stackoverflow.com
- 2012-04-17 22:24:36
- Similar
- Report/Block
I asked this question before but that time the issue was that I had blanks in my directory, which SAS somehow did not like. This time I do not have any blank in my directory but batch run is not working for me. It either keeps on running (the DOS screen keeps rolling) or no output. I don't get any error in my log and can run in the progra...
|
|
|
stackoverflow.com
- 2013-02-27 06:04:04
- Similar
- Report/Block
I have one Spring Batch project(jar) and one Spring Batch Admin UI (war) project. I want to achieve that when I run jar file which includes various job configurations,the statistics related to those jobs should automatically get published on the web application(war) which is running on my Tomcat server. Is this possible ? (Initially I was...
|
|
|
|
stackoverflow.com
- 2012-04-13 10:15:08
- Similar
- Report/Block
Is it possible to set a cmd.exe shell / batch file to print what would be executed but not actually execute it? For example, given a batch file that takes some arguments, based on those arguments selects some other batch files to run, those batch files execute some commands, may or may not call other files/commands etc. I would like to be...
|
|
|
stackoverflow.com
- 2009-09-16 17:09:07
- Similar
- Report/Block
I have been looking in to Spring Batch to solve a batch processing scenario with huge amount of data involved in each job. Are there any other solutions that compete with Spring Batch? To be used in a JEE environment.
|
|
|
techguy.org
- 2013-06-05 01:30:00
- Similar
- Report/Block
Hi, I’ve looked around a bit and have seen some posts very close to what i need but I’m just starting to play around with batch files and haven't quite been able to patch together something that works yet. What I’m trying to do is make a batch file to run in windows 7 and delete a folder located in: C:\users\"current user"\AppData\roaming...
|
|
|
stackoverflow.com
- 2013-04-11 14:46:05
- Similar
- Report/Block
So I'm running a simple shell command in Excel VBA that runs a batch file in a specified directory like below: Dim strBatchName As String strBatchName = "C:\folder\runbat.bat" Shell strBatchName But the issue is sometimes the batch file might take longer on some computer to run, and there are proceeding VBA code that is dependent on the b...
|
|
|
stackoverflow.com
- 2013-04-23 10:03:32
- Similar
- Report/Block
I am automating one of my Jobs in which i intend to zip the files in the folder as soon as they arrive in the folder. Win zip script has been written in the batch file, can you please help how it can be done through windows batch file or any other way? Thanks, Sid...
|
|
|
|
stackoverflow.com
- 2012-04-08 23:30:06
- Similar
- Report/Block
If I launch a PHP daemon in Windows with popen from a PHP script how do I check in a second time if that script is still running from a PHP script? I'm with Apache, php as module UPDATE: process it's started with popen('start /b php process.php', 'r'); Once this is launched in windows a php.exe process is started. How do I get that proce...
|
|
|
stackoverflow.com
- 2012-05-31 23:40:28
- Similar
- Report/Block
I'm trying to make something like a very simple painting app using Libgdx. I've been searching on the intertubes for a few days now trying to solve this issue, which is probably due to my openGL noobness. When I paint an object on the screen, as long as the render() method is running, the stuff that I've painted blinks very quickly (I ass...
|
|
|
stackoverflow.com
- 2012-02-29 16:20:36
- Similar
- Report/Block
I started a new project listing the full paths to all running processes. When accessing some of the processes the program crashes and throws a Win32Exception . The description says an error occured while listing the process modules. Initially I thought this problem might occur because I'm running it on a 64-bit platform, so I recompiled...
|
|
|
eightforums.com
- 2013-03-17 16:27:09
- Similar
- Report/Block
I've been having a problem with the process "Windows Assistive Technology" also known as the process "Atbroker.exe". I'm not sure what is causing it but it seems to consume a lot of my cpu which when running other programs, My CPU can go up to 100% because this process is already is consuming 50%. I have tried a lot of troubleshooting lik...
|
|
|
stackoverflow.com
- 2012-05-03 15:29:09
- Similar
- Report/Block
Real n00b to powershell. I was wondering if the community could help me build a pretty simple script. Really, I can achieve everything I need in windows batch files - but these only complete one task at a time. I want a master script (a powershell script) to call each individual batch process in turn. That is, I want to run Batch_1 and th...
|
|
|
stackoverflow.com
- 2013-05-09 11:20:17
- Similar
- Report/Block
I am trying to get a java Process object by using C#. The thing is i have several java Processes running on my computer. Following is the way i chose to get Processes: Process[] processes = Process.GetProcessesByName("java"); foreach(Process proc in processes){ //I need a filter here to get the correct process. The java Process is also c...
|
|
|
|
macupdate.com
- 2013-05-03 22:26:50
- Similar
- Report/Block
CaliBrate allows you to create and batch process Calendar (iCal) events. Batch process Calendar or iCal events. Flexible search criteria & range match presets Search for and remove duplicates. Search for annual recurring events and delete later non-recurring duplicates. Move or archive events to new calendars or delete them. Auto-reforma...
|
|
|
stackoverflow.com
- 2012-03-14 02:08:42
- Similar
- Report/Block
I'm trying to write a supervisord.conf for starting a django fastcgi process. The only problem is that when I execute my fastcgi command, it spawns a fastcgi process and shows up in supervisor immediately as "EXITED". (This kinda defeats the point of supervisor) Is there some way that the supervisor process can be aware of the fact that...
|
|
|
stackoverflow.com
- 2012-03-07 08:56:47
- Similar
- Report/Block
I have a running dispute with a colleague. He's written a program that I'm calling using a System.Diagnostics.Process object and invoking process.Start() . Under certain circumstances, though, he wants to throw an exception to crash his own process, and I'm supposed to catch his exception using process.StandardError and deal with it f...
|
|
|
|
stackoverflow.com
- 2011-03-07 00:21:28
- Similar
- Report/Block
I need to set a trap for a bash process i am starting in the background. The background process may run very long and has his pid saved in a specific file. Now i need to set a trap for that process, so if it terminates, the pid file will be deleted. Is there a way I can do that? EDIT: It looks like I was not precise enough with my decript...
|
|
|
stackoverflow.com
- 2012-07-02 01:45:24
- Similar
- Report/Block
Right now I'm running a process within GNU screen. Screen is started with the command screen -dmS screenname and the attached with screen -r screenname . A process is started in the screen session, and is killed after some time. How would I have the screen terminate when the process inside has ended? Note: I wouldn't prefer a loop, so I'...
|
|
|
stackoverflow.com
- 2013-05-02 08:13:49
- Similar
- Report/Block
I am trying to execute a console process in my worker role but no matter what configuration I set to the process it is always running in background : These are my console settings : Process proc = new Process(); proc.StartInfo.FileName = "D:\\ZProcessing.exe" ; //console process proc.StartInfo.UseShellExecute = false; proc.StartInfo.Redir...
|
|
|
|
computerhope.com
- 2012-09-03 22:05:47
- Similar
- Report/Block
The Microsoft Windows Task Scheduler is a software program included with Windows that allows for a computer task to be planned when a pre-determined trigger occurs. For example, if you perform a task such as running a batch file every Monday a scheduled task can be setup in Task Scheduler to run that batch file every Monday your computer...
|
|
|
stackoverflow.com
- 2012-05-13 06:50:09
- Similar
- Report/Block
im trying to get delayed_job to work in heroku. ive been following https://devcenter.heroku.com/articles/de layed-job https://devcenter.heroku.com/articles/pr ocfile i created a Procfile on my root and passed in worker: rake jobs:work my delayed_job works on my development machine when i do either rake jobs:work foreman start however, on he...
|
|
|
stackoverflow.com
- 2010-07-22 06:21:12
- Similar
- Report/Block
I'm trying to get a batch insert working with Hibernate into Oracle, according to what i've read here: http://docs.jboss.org/hibernate/core/3.3 /reference/en/html/batch.html , but with my benchmarking it doesn't seem any faster than before. Can anyone suggest a way to prove whether hibernate is using batch mode or not? I hear that there a...
|
|
|
|
tweaktown.com
- 2013-03-05 21:28:39
- Similar
- Report/Block
Just bought a 3570K cpu from one of the Micro Centers in Atlanta. Anyway, the batch number is 3239C107 and was curious if TT or anyone else keeps an updated 3570K batch performance database.... ....for $40 more I could have gotten the 3770K, I almost have buyers remorse.
|
|
|
stackoverflow.com
- 2012-04-01 08:18:16
- Similar
- Report/Block
By WireSharking the network traffic, I'm finding out my PC is sending out ICMP echo request to a suspicious ip address while I'm not running ping.exe explicitly. There must be some process doing this. And I want to find it out. I've looked at the identitier field of the outgoing ICMP packet, but haven't found any clue. (All packet's id fi...
|
|
|
dealsucker.com
- 2013-06-12 09:18:41
- Similar
- Report/Block
Batch Picture Protector is a powerful and easytouse batch image watermarking tool. It protects your digital images and artwork by adding professional transparent watermarks that combine text, illustrations and graphics. When used in conjunction with your favorite image editing software, a watermark can even contain your copyright, website...
|
|
|
|
stackoverflow.com
- 2012-03-07 02:44:22
- Similar
- Report/Block
hope you can help me!.. I'm trying to run a .bat file after my stored procedure has done running. The purpose of the batch file is to create logs based on the code in the stored procedure. But I don't know how to run a .bat or even an exe file using PL/SQL oracle. Thank you and God bless!...
|
|
|
eightforums.com
- 2013-03-22 16:50:15
- Similar
- Report/Block
I have a laptop running Windows 8 Pro x64, and lately I'm facing an issue where the System process (PID = 4) has spikes of 100% of disk usage according to task manager. I can't watch a video or play a song on a media player properly, for example (there's a crackling noise and the playback is slow), because this process (System) keeps usin...
|
|
|
stackoverflow.com
- 2012-04-02 11:51:02
- Similar
- Report/Block
Inside a LaunchConfigurationDelegate#launch() method I am running an external process with: Process process = DebugPlugin.exec(command, workingDir); IProcess iProcess = DebugPlugin.newProcess(launch, process, "myprocess"); This correctly launches the process and shows the output in a nice Eclipse console. I then want to pass commands int...
|
|
|
|
stackoverflow.com
- 2013-04-26 03:14:15
- Similar
- Report/Block
I'm trying to use the scalaz iteratee package to process a large zip file in constant space. I have a long-running process I need to perform on each file in the zip file. Those processes can (and should) be run in parallel. I created an EnumeratorT that inflates each ZipEntry into a File object. The signature looks like: def enumZipFil...
|
|
|
stackoverflow.com
- 2012-04-04 17:20:54
- Similar
- Report/Block
I want to measure the running time of a specific system call, for example, I want to know a pread need how many time on both CPU and I/O. Which function should I use? gettimeofday is get the current time, and that may not just calculate the running time of a specific process, right? clock is return the CPU time this program used so far...
|
|
|
stackoverflow.com
- 2013-04-23 06:42:31
- Similar
- Report/Block
I am trying to detect if there is a memory leak in a process while it is running - is it possible to do so using top vmstat etc. I don't want to use tools like valgrind, purify here.
|
|
|
|
stackoverflow.com
- 2012-04-23 12:58:19
- Similar
- Report/Block
I have two classes called Batch and Position and I'm having this error Caused by: org.hibernate.hql.ast.QuerySyntaxExcepti on: unexpected end of subtree [from bean.Position p where :batch member of p.positionConstraint] when calling the method findByStudent. I'm also using JPA, if it helps. Thanks a lot public class Position { @ElementCol...
|
|
|
stackoverflow.com
- 2012-03-07 18:35:41
- Similar
- Report/Block
We have a third party vendor running a program/service on my servers. We need to monitor that process and see if that process is using a lot of memory or dumping/uploading lot of data or accessing any other process/stuff that it is supposed not to access. What is the best possible way to do this? Since it is a prod box, we are not suppose...
|
|
|
stackoverflow.com
- 2012-06-05 13:42:48
- Similar
- Report/Block
I have a query related to memory leak. A 32 bit Linux based system is running multiple active processes A,B,C,D. All the processes are allocating/deallocating memory from the heap. Now if process A is contionusly leaking a significant amount of memory, could it happen that after a certain amount of time process B cant find any memory to a...
|
|
|
|
stackoverflow.com
- 2012-03-05 19:17:11
- Similar
- Report/Block
I setup a web application which was running fine but after doing some testing, I ran it on my server and since the back end job was long, I let it run. Now I tried to load the web application from another machine and it won't even load. Is this related to worker processes and application pools or is there perhaps something else possibly w...
|