Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. # Things to remember in Powershell
  2. ## Basic Stuff
  3. ### Copying and removing folders
  4. ```PowerShell
  5. # remove a folder and contents
  6. Remove-Item -path C:\<path> -recurse
  7. ```
  8. ```PowerShell
  9. # copy a folder and contents
  10. Copy-Item -path C:\<path> -recurse
  11. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement