The Context: Powershell launched as a domain admin.
From this Powershell window, Is it possible to open c$ of a remote box (\server\c$) in explorer.exe without asking for credential (using the current credential) ?
Thanks
|
The Context: Powershell launched as a domain admin. From this Powershell window, Is it possible to open c$ of a remote box (\server\c$) in explorer.exe without asking for credential (using the current credential) ? Thanks
| |||
|
feedback
|
|
Yes, if you cd into \\server\c$ you can run invoke-item on the current directory.
Or you can invoke the directory directly
| |||
feedback
|
|
I found the solution: Thanks for your help Andy. I found the solution, reading this article from windowsitpro.com I had to modify a key in the register of the domain admin profile on my workstation. Since i'm not the only admin in my company, I included the key modification in my script. And i'm not asked for credential! Beautiful! Here you go:
I used net use, but there are many ways to do this, for example you can also use RUN AS
Hope that's help | |||
|
feedback
|