Hello, is there a way for me to run a batch file at the start of my process to map my network drive or to run a code stage to make sure that my process has access to a certain network drive? The drive does not always remain persistently connected so I wanted to add another check. My batch script looks something like this:
net USE h: /DELETE /YES
net use h: \\server.domain.net\location /PERSISTENT:YES
Thanks!