I have a batch file which is converted to a exe application I'm struggling to insert a batch code in the file so my application auto starts when windows 7 boots. In my batch file I tried adding REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System\Scripts\Startup /v winboot /t REG_SZ /d C: Path to my application, this value is successfully added but my application does not start every time the computer boots. I have also tried various methods but no luck
Can anyone help I need a batch command to insert into my file so it starts when the operating system starts from reboot and it should be retained following conversion to the exe application?
I have tried using this also at the start of my bat script REG ADD HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /reg.bat /t REG_SZ /F /D C:\Desktop\reg.bat Then my script below... It's still not loading at start up using windows 7