Tagged Questions
The runonce tag has no wiki summary.
7
votes
7answers
7k views
How to run my program on before logout on windows XP?
I am looking for an inverse version of "RunOnceEx".
RunOnceEx does run some program, before the user's shell(desktop&taskbar) start. The login progress will not continue before the runonceex ...
3
votes
2answers
310 views
Why can't I make a RunOnce entry in the Windows Registry using TRegistry and Delphi?
I am using the following code to try to make a RunOnce entry:
program RunOnceTest;
{$APPTYPE CONSOLE}
uses
SysUtils, Registry, Windows;
var
R: TRegistry;
begin
try
WriteLn('Testing ...
1
vote
2answers
84 views
Windows Installer is invoking the RunOnce key immediately
In my MSI installer package I have a custom action which adds a RunOnce key. However, it surprised me to observe that, at the end of the install, the RunOnce key is invoked immediately (and then ...
0
votes
2answers
47 views
How to run code once per user session in PHP?
Okay, Ive searched around and found how this is supposed to be done. For example, finding this question. However it is not working for me, so I must be doing something wrong, but darned if I know ...
0
votes
1answer
149 views
Delayed start using RunOnce
I have a program that I want to start at Windows start up. So I wrote the program to the registry value SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce. The program runs immediately when Windows ...
0
votes
1answer
99 views
How to open a web page after reboot
I'm creating an installer of sorts. It's a C# application that upgrades prerequisites on a system before a new ClickOnce application is installed. The final step is to reboot the system and I'd like ...
0
votes
2answers
50 views
Where is the recommended folder to temporary store an EXE needed for a Runonce process
During software installation I need to have some code run after the next restart. To do this I am placing a link to the EXE under this registry key:
Software\Microsoft\Windows\CurrentVersion\RunOnce
...
0
votes
1answer
225 views
Windows Registry RunOnce Loop
I'm in an environment where apps in the start up menu and Run registry key wont execute anything, but RunOnce will, so I made small script to start the application I want to run on startup then ...
0
votes
0answers
130 views
Windows Question: RunOnce/Second Boot Issues [closed]
Moved to Super User:
Windows Question: RunOnce/Second Boot Issues
I am attempting to create a Windows XP SP3 image that will run my application on Second Boot. Here is the intended ...
0
votes
0answers
77 views
RUONCE key and reboot
All,
Beyond Windows XP, the runonce key in the registry does not do anything until a user logs on. The RUNONCE key remains until someone with enough rights logs on to run the commands. Only then the ...
0
votes
1answer
1k views
How to get runonce to run, without having to have an adminstrator login
Is there any way to force an update of software using RunOnce, without having an administrator log in, if there is a service running as Adminstrator running in the background?
EDIT: The main thing I ...