Questions tagged [startup]

Startup usually refers to the processes or events that occur at the start of a program, at the beginning of execution of a code block, or when a device is first booted.

2846 questions
1
vote
2 answers

How to create a .BAT file opening program and preventing it from opening new windows?

So I am starting a consol program from .bat file. I want it to run as a process but not showing any windows. How to do such thing?
Rella
  • 65,003
  • 109
  • 363
  • 636
1
vote
2 answers

Getting program to run at start up from c# code. Setting Registry Run to 'true' doesn't work as well

I found this nice snippet of code online: rkApp = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true); Which runs great but alas on windows 7 and vista I suspect, it crashes cause it doesn't have permission…
Codejoy
  • 3,722
  • 13
  • 59
  • 99
1
vote
1 answer

AZURE VM refuses to start "Starting (Could not start)"

We have set up a small AZURE VM (plain windows 2012 R2 image as provided by Microsoft) with a lightweight DEMO application that happily runs with SQLExpress and 1GB RAM. This VM did run quite fine for a month. A few days ago we shut down the VM and…
Robert Orso
  • 246
  • 2
  • 8
1
vote
1 answer

Autostart noip2 on Buffallo NAS (Optware)

I'm a novice with linux or any command line, but I've managed to gain root access to my Buffalo Terastation (TS-HTGL/R5) and install noip & mediatomb. The problem I have is that I can't get noip2 to automatically start, but I figured out what to do…
Blease
  • 1,380
  • 4
  • 38
  • 64
1
vote
1 answer

Windows Registry Run Key

According to http://msdn.microsoft.com/en-au/library/aa376977(v=vs.85).aspx: "Run and RunOnce registry keys cause programs to run each time that a user logs on. The data value for a key is a command line." Should I then be able to add a key…
Ben Y
  • 291
  • 6
  • 14
1
vote
1 answer

Bare-Metal C: Why are some IDEs startup files doing things crt0.s would take care of anyway?

I'm writing bare-metal C software for the ARM Cortex-M3 microcontroller STM32F4 using Em::Blocks IDE. Here's the content of the startup_stm32f429x.S file which is included with the IDE. At line 169 to 192 you see that the .data section is filled…
Multisync
  • 767
  • 6
  • 25
1
vote
3 answers

Keeping administrator privileges

I wrote a WinForms C# app that needs administrator privileges to work and also needs to start at computer startup (with registry). RegistryKey reg = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true); …
marco polo
  • 159
  • 1
  • 2
  • 12
1
vote
1 answer

How to Run the Card Script Without Switching to that Card in Livecode?

I have a livecode project with five cards. First card has one label "label1", Second card has two labels "Greeting" and "Word", Third card has a button "button1", Fourth card has a textbox "text1", and the fifth card has a label "HelloWord". My goal…
Mai
  • 363
  • 3
  • 16
1
vote
0 answers

The emulator doesn't run in Android Studio

When I select the start button in my application, Visual studio displays back to me: "AppData\Local\Android\sdk\tools\emulator.exe" -avd Nexus_4_API_21 -netspeed full -netdelay none" and the emulator doesn't start.
1
vote
1 answer

Rabbit mq start up error - application_start_failure

I am trying to set up a HA rabbit mq cluster and I am following the instruction in https://www.rabbitmq.com/clustering.html The first rabbit mq server is fine, whereas in the second and third rabbitmq servers I am getting the below error, Kernel pid…
g0c00l.g33k
  • 2,458
  • 2
  • 31
  • 41
1
vote
1 answer

What's the right way to use idlestartup on python 2.6.5?

Idlestartup is analogous to pythonstartup variable, but for IDLE, instead of command line. But it seems not to work properly. I'm using python 2.6.5 on Windows. I have the following script assigned to it: from pprint import pprint import sys newPath…
duduklein
  • 10,014
  • 11
  • 44
  • 55
1
vote
2 answers

Application state after battery pull

I have a dumb question. Suppose an application is moved to the active state from the stopped state (this is related to having an app startup after BOOT_COMPLETED and moving the app out of the stopped state). But then the device is shutdown and…
JimCzek
  • 335
  • 1
  • 4
  • 17
1
vote
0 answers

New Connection in MySQL Server is unable to Start

I made a new Connection and then on selecting it, I am unable to Start MySQL Server using Workbench. I am getting following message: 2014-09-23 18:31:45 - Workbench will use cmd shell commands to start/stop this instance 2014-09-23 18:31:47 -…
Malwinder Singh
  • 6,644
  • 14
  • 65
  • 103
1
vote
3 answers

Seeing what files are run at startup (linux)

How do a check what startup scripts are run after I ssh into a machine?
user924
  • 635
  • 1
  • 9
  • 9
1
vote
2 answers

Simple android app crashes on startup

I am creating a new Android app, but it crashes on startup (phone and emulator). Here is the code: Arcig Manifest.xml
antoninkriz
  • 966
  • 4
  • 18
  • 36