Hi,
I've created an AIO tool in Visual Basic and i need to create some code so when the application is opened it places itself in the computer startup folder. I know i can do it manually but i want to do it on school computers (restricted access)
Thanks in anticipation
Dim aFile as string = Application.ExecutablePath
Dim Split() as string = aFile.split("/")
Dim Filename as string = Split(Ubound(Split))
DIm Path as string = Environment.GetFolderPath(Environment.SpecialFolder.Startup)
System.io.File.move(Afile, Path & "/" & Filename