Ok, so here is a simple example of removing a file: void removeFile(WorkspacePath p) { def ntlm = new NtlmPasswordAuthentication(, p.username, p.password); SmbFile file = new SmbFile(absoluteFilePath(p.url, p.path), ntlm); file.delete(); }Note: I pass as the first argument to NtlmPasswordAuthentication as the domain is part of p.username (e.g. joel@example.com).One thing you need t