'Delete Warning File
Dim fso
Dim sFilePath As String
Set fso = CreateObject("Scripting.FileSystemObject")
sFilePath = "C:\Users\" & myUser & "\Documents\AHK\Batch_Manipulator\WarningBatchReport.txt"
If fso.FileExists(sFilePath) Then
Kill (sFilePath)
End If