Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
129 views

A tasklist tool for matlab

In Visual Studio there is a tool called TaskList, which searches the code for TODO comments, compiles a list of them, and lets you go to a TODO item in the code by clicking on it in the list. Is ...
5
votes
7answers
571 views

What tags do you use in the tasklist (e.g. Visual studio 2008)

In our code, we currently use the following tags that can in turn be listed in the visual studio's tasklist: TODO to mark tasks inside the code the need to be done // TODO: optimize this loop HACK ...
4
votes
1answer
344 views

Can I add Task List items to csHTML in Visual Studio 2010?

Background: I am fairly new to Visual Studio 2010 (worked on Lua, LIMSBasic (Labware) and a few others that didn't use decent IDEs and love the idea of task lists being pulled out of the comments I ...
4
votes
4answers
2k views

TODO: comments are not showing up in the Task List

I had to reinstall all my development tools after a hard drive failure and I'm having a problem with Visual Studio. I had a bunch of //TODO: items scattered throughout my projects and I can't get ...
3
votes
2answers
339 views

Executing tasklist on Windows with popen in C without cmd.exe popup

Hello everybody and thanks for your time. I'm developing some kind of monitoring application in C and I fell in need of getting the current tasks list. So I'm using tasklist and getting the output ...
3
votes
4answers
946 views

Top Moleskine (Journal) Techniques or “Hacks” to help you as a developer with daily tasks or projects

What are the top / proven Moleskine techniques that have helped you as a developer/programmer on managing your daily tasks or projects. Are there any API cheatsheets available that can be printed out ...
3
votes
2answers
11k views

Tasklist CPU % usage

I'm trying to use tasklist to find out which process is consuming more than X percent of my CPU (to later kill it with taskkill.) How do I know what percent does a time format represents? The ...
2
votes
2answers
526 views

eclipse task list TODOs and Mylyn

I use eclipse 3.5 and just installed Mylyn 3.4.2. It's GREAT, but .... When I open the old task list (// TODO), there is no menu option for defining a filter. Instead, the Mylyn focus icon appears. ...
2
votes
1answer
284 views

List javascript tasks in Visual Studio Task list

Is there a way to configure Visual Studio 2008 to display TODO comments in .js files or script-tags in the task list? Now only todo comments from the C# code is displayed. Thanks Endre
2
votes
3answers
1k views

Most efficient way to scan the windows process list?

So I'm currently working on a project that needs to time when certain processes are running. I'm trying to figure out the most efficient way to scan the process list, then check the process list ...
1
vote
2answers
191 views

Visual Studio tasklist

Ok to the takes list in VS sounds pretty great. But I can't make it work. (I'm using VS2010 shell, and also VS2010 proper and can't make it work in either. Language is F# if that matters) I have ...
1
vote
0answers
86 views

using tasklist to list applications alone

how do you use tasklist command in windows to list only the currently opened applications?(not processes).In taskmanager the applications tab lists only the applications .Is this possible using the ...
1
vote
2answers
828 views

Exit status of tasklist in batch file?

I am executing following command in a label inside a batch file: tasklist.exe /FI "USERNAME eq %USERDOMAIN%\%USERNAME%" /FI "IMAGENAME eq %1" /FI "PID eq %2" 2>nul && echo errorl:%errorlevel% ...
1
vote
1answer
228 views

jira - Private task list?

Our company is new to Jira. We are trying to work out if our users can create a private task list in jira? Cheers, Matt
1
vote
1answer
250 views

ICustomDestinationList windows7 taskbar feature

I am looking for the windows7 ICustomDestinationList implementation using typelibrary. Can anyone please provide an idl defenition or tlb typelibrary ..?
1
vote
2answers
348 views

How to display task name in CruiseControl.NET while processing

I have installed CruiseControl.NET and created project with 3 tasks on taskList in nAnt. But when I run project to process on CruiseControl.NET I see only that: Executing Nant :BuildFile: ...
0
votes
0answers
4 views

How do I get the Status column to display when running the tasklist command against a remote computer

Running the tasklist command with the /V option locally returns the Status column. (on Windows 7 and Windows Server 2003) tasklist /V Image Name PID Session Name ...
0
votes
1answer
37 views

Batch File - Tasklist - FindStr

In my batch file, I'm trying to kill a task with its name, if it's running. To do so, I use the following command.. 1) Tasklist | findstr "abc.exe" 2) IF %ErrorLevel% EQU 0 Taskkill /F /IM "abc.exe". ...
0
votes
1answer
152 views

How to get tasklist information from cmd, without using “tasklist” command

Anyone knows how to extract the tasklist information using cmd, but without using "tasklist /svc" command?
0
votes
2answers
222 views

C++ scanning process ids using the command prompt with tasklist

I'm trying to use c++ to scan in the processes shown in the command prompt of windows when you type in tasklist. I haven't have the whole code ready but would like help in trying to read in the ...
0
votes
1answer
39 views

IronCow Task Deletion Permissions Problem

I'm using the IronCow managed API for RememberTheMilk (http://ironcow.codeplex.com/) and I'm trying to remove tasks using my program. I've already logged in and downloaded the tasks list, but when I ...
0
votes
1answer
90 views

How to make TaskList show exact time it took to complete a Task?

Now it says Created 2011-01-03 Completed 2011-01014. But I wonder how long this feature took(for how long was task activated in minutes/hours if possible).
0
votes
1answer
88 views

Eclipse Tasks - only local repo

Im using Eclipse's Task List(aka Mylyn) and when I create new task I have to always choose Local Repository, is there any way to by-pass this step? (I will never use any other Repository). I create a ...
0
votes
1answer
957 views

Android, get icons of running activities?

I've got a list of running processes from ActivityManager.RunningAppProcessInfo, like this: ActivityManager am = (ActivityManager) getSystemService(Service.ACTIVITY_SERVICE); ...
0
votes
1answer
663 views

How to disable task scanning for PHP edition of Netbeans 6.9

Task scanning on very large projects seems to bog down the IDE. I love this editor and it's ability to parse large complex projects such as Magento, but performance can get iffy. According to this ...
0
votes
2answers
813 views

Batch File help needed for PsList/PsKill when a process is over a specific age (elapsed time)

I'd like to request some help in creating a Batch file to run on a windows server which will monitor processes which sometimes get "stuck" and linger after they should be killed. Specifcally, I can ...
0
votes
1answer
212 views

How do I Continue a batch file only if a process IS running

I have successfully managed to hold a batch file until a process ends. But how do I hold a batch file until a process starts? I am working using the following code: @echo off set ...
0
votes
3answers
472 views

Filtered tasklist piped into find doesn't show console output?

Windows XP Pro This shows output in the console: dir | find " free" This doesn't: tasklist | find "Image Name" This does: tasklist | find /C "Image Name" And this does write the expected ...
0
votes
2answers
266 views

Get active processes through Java on Windows 2000 Pro

I want to get the name of all active process on a Win2000 machine. I know that "tlist -s" is the command, but to use this, the "tlist.exe" has to be extracted from the Win2000 CD-ROM. I also know ...
0
votes
2answers
2k views

Adding Tasks programmatically into the taskList in sharepoint

I have Task List on URL, what I want , when the page loads, the Task list should be loaded with all the aggregated tasks of its sub sites. I want to do it in C#