vote up 1 vote down star
1

How can I get the number of times a program has previously run in C# without keeping a file and tallying. If it is not possible that way, can it be gotten from the Scheduled Task Manager?

To C. Ross: how would this be done in a registry setting? forgive me. . . what is a registry setting?

flag
@"what is a registry setting?" -- the registry is an organized file of information containing program and configuration data for a given installation of Windows. Chesso provides a decent example of how to interact with it below. Don't play around in the registry unless your comfortable though, it can be akin to doing brain surgery on someone that's awake (i.e. very bad). – Hardryv Aug 5 at 17:30
@Donta. Cheeso has an excellent answer. I would recommend using theirs. – C. Ross Aug 5 at 20:04

7 Answers

vote up 8 vote down check

To the best of my knowledge Windows does not keep this information for you. You would have to tally the value somewhere (file, database, registry setting). The Windows Task Scheduler is very low functionality.

link|flag
2  
+1, for a registry entry idea. – nik Aug 5 at 15:07
vote up 0 vote down

No, task manager does not provide that kind of information. I wouldn't be hard to create a script that would update a tally and then execute the application and then set up the task to call the script.

link|flag
vote up 6 vote down

I do this in a registry setting.

static string AppRegyPath = "Software\\Cheeso\\ApplicationName";
static string rvn_Runs = "Runs";

private Microsoft.Win32.RegistryKey _appCuKey;
public Microsoft.Win32.RegistryKey AppCuKey
{
    get
    {
        if (_appCuKey == null)
        {
            _appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, true);
            if (_appCuKey == null)
                _appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath);
        }
        return _appCuKey;
    }
    set { _appCuKey = null; }
}

public int UpdateRunCount()
{
    int x = (Int32)AppCuKey.GetValue(rvn_Runs, 0);
    x++;
    AppCuKey.SetValue(rvn_Runs, x);
    return x;
}
link|flag
4  
Stay out of my registry! – Jason Aug 5 at 15:06
4  
Don't run my code! – Cheeso Aug 5 at 15:07
1  
+1 cause of given code, very nice – BeowulfOF Aug 5 at 15:11
vote up 4 vote down

Here is a tutorial for registry handling -- C# Registry Basics

link|flag
vote up 0 vote down

I recommend using the ESENT database that is included with Windows. Software support is easily available with ESENT Managed Interface.

link|flag
vote up 0 vote down

@Cheeso,

You don't need the private member variable with that code, one way to slim it down a bit:

using Microsoft.Win32;
public RegistryKey AppCuKey
{
    get
    {
        return Registry.CurrentUser.OpenSubKey(AppRegyPath, true)
            ?? Registry.CurrentUser.CreateSubKey(AppRegyPath);
    }
}

Or, if you like to update the private variable, in order to keep from calling the method (which is a pretty cheap method, anyway), you can still save yourself an if == null check.

link|flag
Having a property return something that the caller should dispose is an incredibly bad design. -1 – erikkallen Aug 6 at 8:58
vote up 0 vote down

You could simply use Properties.Settings.Default.TimesRun;

Like so:

private void Form1_Load( object sender, EventArgs e )
{
   Properties.Settings.Default.TimesRun = timesrun++;
   Properties.Settings.Default.Save();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.