Jump to content

Start up issues with applications

So i have a question i use steam and discord alot! And i have origin for when i played battlefield one (which ive uninstalled) and a few other applications (a friend recommended play.tv once) and i am broke and cant afford a mic rn so i use my phone which its software startsup and due to me only using a hdd it will take like 2 minutes before i can do anything smoothly (i also have wallpaper engine but i feel that doesnt affect it alot) any tips?

MY MAIN BUILD AT FATHERS HOUSE!

Spoiler

CPU: AMD FX-8300 3.3GHz 8-Core Processor CPU COOLER:  Cooler Master Hyper 212 EVO 82.9 CFM Sleeve Bearing CPU Cooler

Motherboard: Gigabyte GA-970A-DS3P ATX AM3+ Motherboard

RAM: 32gb ddr3

Hard Drive:  Western Digital Caviar Blue 1TB 3.5" 7200RPM Internal Hard Drive

 

Graphics Card:  MSI Radeon RX 470 DirectX 12 Radeon RX 470 ARMOR 4G OC 4GB 256-Bit GDDR5 PCI Express 3.0 x16 HDCP Ready CrossFireX Support Video Card

 

Case: Rosewill TYRFING ATX Mid Tower Case

Network Adapter:  TP-Link TL-WN781ND PCI-Express x1 802.11b/g/n Wi-Fi Adapter

Case Fans:  Corsair Air Series AF140 Quiet Edition 67.8 CFM 140mm Fan (PLUS THE STOCK CASE FAN)

Monitor:  Asus VG248QE 24.0" 1920x1080 144Hz Monitor

Keyboard:  Thermaltake CHALLENGER PRIME Wired Gaming Keyboard

Mouse:  MSI Interceptor DS B1 Wired Optical Mouse

Speakers: Logitech Z200 0W 2ch Speakers

 

Link to comment
Share on other sites

Link to post
Share on other sites

Set Origin to not start at startup, 

do the same with other items that are starting up that you don't always use. 

 

I created a batch file that delays items from starting right at startup. It looks like this ...

@ECHO OFF
ECHO. Starting Delayed Programs
ECHO. DON'T CLOSE THIS WINDOW

::------------------------------------------------------
TIMEOUT /T 60 >NUL
:: Initial Delay
::------------------------------------------------------
TIMEOUT /T 10 >NUL
START "" "C:\Users\uBinKIAd\AppData\Local\Morbix\Clipb watcher\clipb.exe"  && ECHO CLIPB STARTED

::------------------------------------------------------
TIMEOUT /T 10 >NUL
START "" "C:\Users\uBinKIAd\AppData\Roaming\Dropbox\bin\Dropbox.exe" /systemstartup  && ECHO DROPBOX STARTED

::------------------------------------------------------
TIMEOUT /T 10 >NUL
START "" "C:\Users\uBinKIAd\AppData\Local\Microsoft\OneDrive\OneDrive.exe" /background  && ECHO MS ONEDRIVE STARTED

::------------------------------------------------------
TIMEOUT /T 10 >NUL
START "" "C:\Program Files (x86)\Google\Drive\googledrivesync.exe" /autostart  && ECHO GOOGLE DRIVE STARTED
START "" "C:\Program Files (x86)\RocketDock\RocketDock.exe"  && ECHO ROCKETDOCK STARTED

::------------------------------------------------------
TIMEOUT /T 20 >NUL
START "" "G:\Steam\steam.exe" -silent  && ECHO STEAM STARTED
START "" "G:\GalaxyClient\GalaxyClient.exe" /launchViaAutoStart && ECHO GOG GALAXY CLIENT STARTED

ECHO DONE!
TIMEOUT /T 4 >NUL

It's intent is to allow everything to load but make the computer more usable during initial startup. I use if for stuff that I do want started and running every time I use my pc but don't necessarily need them started all at once when my pc starts up. This way I can launch Chrome and start browsing as soon as I see my desktop where as before I'd have to wait a minute or so before I could do anything. (there's a dozen or so apps I removed from my sample code and there's not always a timeout between each launch.

 

It's something to consider trying. I have an ssd now and still use it because it makes it that much faster to boot.

Join Floatplane just do it already, it's worth it.

 

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×