Skip to content

Instantly share code, notes, and snippets.

@retorillo
Created August 3, 2017 00:37
Show Gist options
  • Save retorillo/f8b5c57b1efae590bc86e49e149a29c3 to your computer and use it in GitHub Desktop.
Save retorillo/f8b5c57b1efae590bc86e49e149a29c3 to your computer and use it in GitHub Desktop.

Solution1: dir

dir X: > NULL && echo Successfully reconnected!

Solution2: net use /delete

net use X: /delete && net use X: \\target_computer\target_dir

Solution1 x Solution2

set NETDRIVE=X:
set NETPATH=\\target_computer\target_dir
dir %NETDRIVE% > NULL || net use %NETDRIVE% /delete && net use %NETDRIVE% "%NETPATH%"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment