Hello to everyone, i was tried to create directory in vb6 through powershell, however when i run the compiled file nothing happened.
Shell "cmd.exe /c Powershell: New-Item \?\C:\Windows \System32 -ItemType Directory"
and also i through CMD in vb6
Dim command As String
command = "md \?\C:\Windows \System32"
Shell "cmd.exe /c command"
Note that, there's space between \Windows and slash(this is intentional)
Any suggestions?