This tag denotes question regarding RunOnce feature of Windows system - a specific branch of Windows Registry, where developers and application installers put paths to programs that should be executed only once. After successful execution, such entry is removed from Windows Registry. This feature is ...

learn more… | top users | synonyms

0
votes
0answers
43 views

RunOnce Not Working as Expected

I am totally confused by the RunOnce registry key. I am trying to do something that I expected to be easy, but it isn't working. After SysPrep I have SetupComplete.cmd do the following: rename the ...
1
vote
1answer
85 views

create a run-only-once java application

I have to create a jar with a java application that fulfills the following features: there are xml data packed in the jar which are read the first time the application is started. with every ...
0
votes
0answers
107 views

Alternative for insserv in both SuSE and Redhat as chkconfig or any other?

So my present code for SuSE where I am running insserv like this : insserv -d -p "/etc/init.d" "/etc/init.d/SkeletonScript" SkeletonScript is written as what it should be. #!/bin/sh # # ...
1
vote
1answer
455 views

What's the order of Windows startup?

I'm curious to know the order of Windows startup during a user login. Does anyone know? Basically, my application was being invoked by login script that a GPO calls. While 3rd party EXE was being ...
0
votes
1answer
155 views

Running PowerShell from RunOnce

I am trying to run a set of powershell commands during a template customization. These commands are injected into the RunOnce in the registry. ...
0
votes
0answers
312 views

RunOnce - How to Hide the Flashing Command Prompt Window

I am using Bitrock Installer software to Install and Un-Install my software. The installer will create a RunOnce entry into the registry during the Un-installation Process and it will restart the ...
2
votes
1answer
346 views

Limitations of runonce in windows

I have added the following command to the runonce registry to run a specific python script on start up with a long list of parameters as follows HKLU..."fio-test"=C:\Python26\python.exe ...
1
vote
3answers
2k views

How to run a powershell script in runonce-Key?

I have a call to powershell.exe that looks like this, and which works from my commandline: powershell.exe -noexit -command " & 'C:\Test\test.ps1' " However, when I enter that entry exactly that ...
1
vote
1answer
1k views

How to execute RunOnce for a specific user on Windows 7?

I know that I can set a runonce key in the Win7 registry globally, which will be executed no matter which user logs on the next time, using this registry key: ...
0
votes
2answers
502 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 ...
1
vote
2answers
357 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 ...
3
votes
2answers
1k 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 ...
0
votes
1answer
1k 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
193 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
69 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
413 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
214 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
160 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 ...
8
votes
7answers
11k 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 ...
0
votes
1answer
2k 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 ...