Have you ever wanted to make your script copy itself to the startup folder
but not every time.
And when the user removes it it can be a pain.
But now with my new add-on your script is always there.
;any includes you may have
If not FileExists(@StartupDir & "/" & "your script's name.exe") Then
FileCopy(@ScriptFullPath, @StartupDir)
EndIf
;===========
;===========
;your script here
;===========
;===========
Have Fun!