Using the WshShell Run Method using a variable..
Very Inexplicable result, Here is my file: Read the Comments. Using Windows 11 on Surface Pro 8
Dim Sexy,WshShell3,fil
Set WshShell3 = WScript.CreateObject("WScript.Shell")
'WshShell3.Run """.\Src and Dst.txt"""
'Above Line Works
fil = ".\Src and Dst.txt"
Sexy = chr(34)+chr(34)+chr(34) + fil +chr(34)+chr(34)+chr(34)
Wscript.Echo Sexy
WshShell3.Run Sexy
'Above line Opens up the "This PC" Explorer Window
Set WshShell3 = Nothing
Wscript.Quit