This commit is contained in:
2021-04-25 17:19:49 -05:00
parent 4e17a68e45
commit 45c857508e
13 changed files with 0 additions and 0 deletions

22
cpp/vsc.vbs Normal file
View File

@@ -0,0 +1,22 @@
Option Explicit
Dim fsObj
Dim wshShell
Dim scriptDir
Dim strCommand1
Dim strCommand2
Set fsObj = CreateObject("Scripting.FileSystemObject")
Set wshShell = WScript.CreateObject("WScript.Shell")
scriptDir = fsObj.GetParentFolderName(WScript.ScriptFullName)
strCommand1 = Chr(34) & scriptDir & "\.vscode\pyenv.bat" & Chr(34)
strCommand2 = Chr(34) & scriptDir & "\.vscode\vsc.bat" & Chr(34)
' x = msgbox(strCommand1,0, "Launch Command")
' x = msgbox(strCommand2,0, "Launch Command")
Call wshShell.Run(strCommand1, 1, True)
Call wshShell.Run(strCommand2, 0, True)