'How to Pass a string once shortcut to command prompt is opened

So I'm trying to pass a string into the command line once I've opened it via shortcut (I had to open it up this way due to some permission issues and onedrive being weird. I understand the code for the most part, the problem I'm having is how to pass a string into command prompt once it's opened since I'm not doing it the traditional way, is there a method I can use to pass a string into this so command prompt can automate stuff I input?

Sub OpenFile()

  Dim FileName As Variant
  Dim FolderItem As Object
  Dim FolderPath As Variant
  Dim oFolder As Object
  Dim oShell As Object
 'Dim UserName As String

 'UserName = InputBox("ex", "ex", "ex")
  
    FolderPath = [B]"C:\Documents and Settings\users\Command Prmompt"[/B]
    FileName = [B]"Command Prompt.lnk"[/B]
    
      Set oShell = CreateObject("Shell.Application")
      Set FolderItem = oShell.Namespace(FolderPath).ParseName(FileName)
    
      FolderItem.Verbs.Item(0).DoIt
    
End Sub


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source