Hi,
I am trying to connect to NetApp using following code
| server = na_server_open(computer.c_str(), 1, 15); |
| na_server_style(server, NA_STYLE_LOGIN_PASSWORD); |
| na_server_adminuser(server, username, password); |
here username is nothing but a domain user. which is of form DOMAIN\Username.
The computer from which i am executing this code , is using the same login which i have used in the code.
Can I anyhow Impersonate the domain user ?? so that i wont need to supply password through my code.