Announcement

Collapse
No announcement yet.

mkdir

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • mkdir

    I have created teh following tool cmd.exe /x /c mkdir \\%S%\sysman when I highlite the server on the right side pane, and choose to run my tool, the file is never created. Any idea what I'm doing wrong? If I just use c:\sysman, it will do it on my local PC every time.

  • #2
    Re: mkdir

    Change your command to:

    cmd.exe /x /c mkdir \\%S%\sysman &pause

    And see if you are getting an error.

    Comment


    • #3
      Re: mkdir

      OK, I put the & pause in ... when I use %S% I get 'no server available to process the command' If I use %E%, the cmd window opens up and says 'The network path was not fouond'

      Comment


      • #4
        Re: mkdir

        Try this:

        cmd.exe /x /c mkdir \\%S%\c$\sysman &pause

        Comment

        Working...
        X