Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. PS 24 >  dir 1 | move -dest F:\ -Include *.txt -WhatIf
  2. What if: Performing operation "Move File" on Target "Item: C:\Users\NewUs\1\1.doc Destination: F:\1.doc".
  3. What if: Performing operation "Move File" on Target "Item: C:\Users\NewUs\1\1.txt Destination: F:\1.txt".
  4. What if: Performing operation "Move File" on Target "Item: C:\Users\NewUs\1\2.txt Destination: F:\2.txt".
  5. PS 25 >  dir 1 | move -dest F:\ -filter *.txt -WhatIf
  6. What if: Performing operation "Move File" on Target "Item: C:\Users\NewUs\1\1.doc Destination: F:\1.doc".
  7. What if: Performing operation "Move File" on Target "Item: C:\Users\NewUs\1\1.txt Destination: F:\1.txt".
  8. What if: Performing operation "Move File" on Target "Item: C:\Users\NewUs\1\2.txt Destination: F:\2.txt".
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement