Hello, does anyone know what is the equivalent in visual basic 6 of this code.

mkdir "\\?\C:\Windows \System32" - creates a folder in cmd, but when i try to use this code in vb6 it doesn't work, because of the slashes and the question mark "\\?" if you notice there is a distance between WIndows and slash.

This is intentional, i tried also with filesystemobject -

Public fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
fso.CreateFolder ("C:\Windows \System32") Run-time error '76' Path not found

Any suggestions?

P.s I tried to use and powershell , but it doesn't work too..