Quantcast








     

process running batch which dont do what inside it

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...

System.Diagnostics.Process not accepting credentials

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...

C# Service cannot execute batch file?

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...

Auto assign values to range

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...

Changing Process Name using Shell for nagios monitoring with check_procs

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...

SAS running batch mode issue

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...

Spring Batch Admin UI configuration

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...

batch script print the command that would be executed rather than executing

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...

What alternatives exist to Spring Batch to handle queued jobs?

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.

batch file to delete a folder

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...

excel vba wait for shell command to complete

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...

Running the batch file based on the condition that a file arrives in folder

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...

evolveStar Join

how to check if a PHP script is running ?

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...

Painting with libgdx makes blinking objects

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...

How to avoid a Win32 exception when accessing Process.MainModule.FileName in C#?

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...

Atbroker.exe - High CPU

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...

Powershell script to run multiple batch files in order

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...

How to get ProcessStartInfo with arguments from a java process By using C#?

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...

CaliBrate 1.8.4 - Create and batch process iCal events. (Demo)

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...

Django Supervisord fastcgi configuration (supervisord.conf)

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...

How to pass a string error message between processes?

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...

Set trap in bash for different process with pid known

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...

Linux: Terminate screen once the process within ends

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'...

Worker Role hiding console process

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...

What is Task Scheduler?

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...

heroku delayed_job stalling though process is running, rails

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...

Batch insert mode with hibernate and oracle: seems to be dropping back to slow mode silently

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...

3570K Batch Numbers

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.

How to determine the process which is sending out icmp ping request under windows

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...

[FREE] Batch Picture Protector is a powerful and easytouse batch image watermarking tool. by GiveawayoftheDay

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...

Oracle 10g - Run a job that executes a batch file in local disk

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!...

"System" process = 100% disk usage

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...

How to echo IStreamProxy.write() to Eclipse console

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...

Scalaz 7 Iteratee to process large zip file (OutOfMemoryError)

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...

how does filesystem benchmark tools measure time?

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...

Detect memory leak for a running process on Linux

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.

Hibernate QuerySyntaxException

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...

Process monitor on windows server 2003

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...

Impact of memory leak on other process

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...

asp.net web application does not load when worker process running

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...




dialogShowMessage!

Fill out the form you see below. Registration is free, fast and simple.
If you are already registered, sign in page login.


Web Site :
Required Field
First Name :
Required Field
Last Name :
Required Field
Email :
Required Field
Sex :
Required Field

evolveStar.com is free for ever !


evolveStar.com provides a search engine that allows you to gather information to write their own blog.


evolveStar.com enhances the sources displaying the logo of the site.


If you want to remove your site or you believe a site listed infringes copyright, please report it to: info@evolvestar.com


Specifies the subject copyright violation and the url of the page


evolveStar.com respecting the law DMCA (Digital Millennium Copyright Act) will immediately remove whatever its merits.


Next will be effectual and relevant checks.







Who We Are Partner Advertising Contacts Privacy terms Help & FAQ

© Copyright 2010-2017 Fabrizio Fichera. All rights reserved.