My Windows 7 computer is connected to a Windows network at the workplace. There are two domains in use on this network, `EMPLOYEES` and `TESTERS`. J'ai logins on both domains, par exemple `EMPLOYEES\Joe` and `TESTERS\TestJoe`.
If I am logged into a computer as `EMPLOYEES\Joe`, how do I launch a Explorateur Windows instance with the privileges of `TESTERS\TestJoe`? Notez que I can switch user and login as `TESTERS\TestJoe` on this computer without any problem.
J'ai tried the suggestions given in [this post](https://superuser.com/questions/55013), and they do not work.
Comment launch Explorateur Windows avec the privileges of a different domain user?
Re: Comment launch Explorateur Windows avec the privileges of a different domain user?
You don't need to run explorer.exe as a different user just to connect to a network share with different credentials.
In an explorer window vous pouvez cliquez sur "Map network drive", fill in the path and and assurez-vous to check "Connect using different credentials". Quand vous cliquez sur le finish button you will get prompted for the credentials you want to use to connect the current share.
Vous pouvez aussi accomplish this with the net command on the ligne de commande.
```
net use x: \\server\share /user:[email protected] password
```
In an explorer window vous pouvez cliquez sur "Map network drive", fill in the path and and assurez-vous to check "Connect using different credentials". Quand vous cliquez sur le finish button you will get prompted for the credentials you want to use to connect the current share.
Vous pouvez aussi accomplish this with the net command on the ligne de commande.
```
net use x: \\server\share /user:[email protected] password
```