From cc410d3f3feb550f163ab7d4ba0172596a42fb08 Mon Sep 17 00:00:00 2001 From: Dhaverd Date: Thu, 12 Feb 2026 05:57:08 +0100 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20Windows/copy=5Fas=5Fanother=5Fuser.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Windows/copy_as_another_user.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Windows/copy_as_another_user.md diff --git a/Windows/copy_as_another_user.md b/Windows/copy_as_another_user.md new file mode 100644 index 0000000..4d33178 --- /dev/null +++ b/Windows/copy_as_another_user.md @@ -0,0 +1,10 @@ +# Copy files or do smth as another user in CMD/Powershell + +```cmd +net use x: "\\shared\destination\" /user:domain\user password + +:: Copy or do whay you need +copy "source destination" "\\shared\destination\target" + +net use x: /d +``` \ No newline at end of file