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
31
votes
5 answers

Is it possible to have the Integrated Terminal open automatically on start of Visual Studio Code?

Is it possible to configure User Settings to have the Integrated Terminal to start automatically when opening Visual Studio Code?
Isak La Fleur
  • 4,428
  • 7
  • 34
  • 50
27
votes
2 answers

When I add a Splash Screen using Launch4j, I get a Startup Error ("An error occurred while starting the application")

I noticed that Launch4j's GUI seems to prefer a bmp file, so I used Gimp to convert my jpg file into that format, but I kept getting the error when trying to run the executable generated by Launch4j.
GregNash
  • 1,316
  • 1
  • 16
  • 25
27
votes
11 answers

How can I make a Click-once deployed app run at startup?

How can I make a Click-once deployed app run a startup? The best option I found by searching was to set the Publisher on the app to Startup, so the Start menu shortcut would be placed in the Startup folder, but that seems like a huge hack and I…
Eric Haskins
  • 8,505
  • 12
  • 38
  • 47
27
votes
1 answer

Eclipse project explorer expand on startup

Is there a way to get Eclipse to save the state of the project explorer tree and expand to where it was on startup? Every time I shut down Eclipse and start it back up, the file I had open last is opened, but the tree in the project explorer is…
intargc
  • 3,051
  • 5
  • 36
  • 52
26
votes
9 answers

How to make an exe start at the Windows Startup

Possible Duplicate: How to put exe file in windows Startup Suppose I have built an application in C#, Once I install it, I want it to run in the background whenever windows starts up,or you can say a user logs in to his windows account. Is there…
nightWatcher
  • 1,051
  • 3
  • 15
  • 28
26
votes
4 answers

Script running in PyCharm but not from the command line

When I try to run my program from the PyCharm IDE everything works fine but if I type in Fedora: python myScript.py in a shell prompt I get an import error from 1 of the module. ImportError : No modue named myDependency What does PyCharm do that…
Asics
  • 858
  • 1
  • 11
  • 20
25
votes
5 answers

.NET 6 - Inject service into program.cs

I know how to do dependency injection in the Startup.cs in .NET 5 (or before), but how do I do the same with the top-level Program.cs in .NET 6? .NET 5: for example, I can inject a class in the Configure method public class Startup { public…
Maarten Vissers
  • 499
  • 1
  • 4
  • 11
25
votes
5 answers

Start up script for node.js repl

Is there a way configure node.js's repl? I want to require jquery and underscore automatically whenever the repl starts. Is there a file (noderc?) that node.js loads when it starts the repl? The equivalent in Python is to edit…
hekevintran
  • 22,822
  • 32
  • 111
  • 180
25
votes
1 answer

Best way to start Zookeeper automatically on Ubuntu Server 14.04?

I have installed Zookeeper using sudo apt-get install zookeeper on an Ubuntu server 14.04. I am having trouble understanding how to configure Zookeeper to start automatically, on boot. Also, I can manually start it successfully only with root…
user2916547
  • 1,963
  • 5
  • 17
  • 21
25
votes
1 answer

Startup Settings In Chrome Disabled

Today when I turn on my laptop I haven't got the tabs which I have left opened in Google Chrome under start up settings (Continue where I Left Off). It is disturbing as I have opened some tabs from time to time. It is very time-consuming to re-open…
Shaikh Salman
  • 259
  • 1
  • 3
  • 7
25
votes
8 answers

how to start the tomcat server in linux?

i tried to install 1.yum install -zxvf apache-tomcat-6.0.47.tar.gz then 2. export TOMCAT_HOME=/home/mpatil/softwares/apache-tomcat-6.0.37 3. [root@localhost mpatil]# echo $TOMCAT_HOME …
user2854207
24
votes
3 answers

Start android application without activity

I've an application which aims to run only as a service (no interface, just run in background). I have no activity mentioned in my AndroidManifest.xml but put a receiver to start the application at phone start.
Martin Trigaux
  • 5,311
  • 9
  • 45
  • 58
24
votes
5 answers

Running Batch File in background when windows boots up

How do I run a batch file each time windows boots up also I need to run it in the back ground(without that command window getting displayed)? I use Windows Xp. My actuall requirement is I want to start the Tracd server using the command line…
Manoj
  • 5,011
  • 12
  • 52
  • 76
23
votes
2 answers

Make Swift Cocoa app launch on startup on OS X 10.11

I need to write a function that adds my application to Startup items on OS X 10.11. That's what I found at the moment: func applicationIsInStartUpItems() -> Bool { return (itemReferencesInLoginItems().existingReference != nil) } func…
pomo_mondreganto
  • 2,028
  • 2
  • 28
  • 56
22
votes
6 answers

Any way to boost JVM Startup Speed?

It is said that Java is 10x faster than python in terms of performance. That's what I see from benchmarks too. But what really brings down Java is the JVM startup time. This is a test I made: $time xlsx2csv.py Types\ of\ ESI\…
Phyo Arkar Lwin
  • 6,673
  • 12
  • 41
  • 55