how to make a batch file start with windows
how to make a batch file start with windows
hello guys imw orking ona batch file and iw as looking how to make it start with my windows like is there a code i can add . im searching for a code not to add it manualy in my windows startup i know hwo to do that but im looking in a way to make it start with windows .
ah one more thign guys and how i make my Batch file to go Full screen ive seen it liek this one http://www.idcomm.com/personal/lorenblaney/SCROLLER.ZIP
Code: Select all
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"batchfile"="C:\\WINDOWS\\System32\\file.bat"
¯\_(ツ)_/¯ It works on my machine...
-
- Infinite Haze
- Posts: 334
- Joined: 11 Jun 2005, 16:00
- 19
- Location: abroad
- Contact:
..
Last edited by mystikblaze on 21 Jun 2009, 08:02, edited 2 times in total.
Any fool can count the seeds in an apple. Only God can count all the apples in one seed. ~Robert H. Schuller
God is the greatest.
God is the greatest.
You can also put your batch file registering itself using the reg command.gogeta70 wrote:Edit that accordingly, and put it in a .reg file, and then run the .reg file. Simple as that.Code: Select all
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "batchfile"="C:\\WINDOWS\\System32\\file.bat"
Using gogeta70's example:
Code: Select all
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v batchfile /t REG_SZ /d C:\\WINDOWS\\System32\\file.bat