Skip to content

Instantly share code, notes, and snippets.

@tylerapplebaum
Created October 24, 2019 21:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tylerapplebaum/96ba76f0308bf3deaaaf93bf2325fab6 to your computer and use it in GitHub Desktop.
Save tylerapplebaum/96ba76f0308bf3deaaaf93bf2325fab6 to your computer and use it in GitHub Desktop.
Create Hidden Directories
ForEach ($Folder in @("Folder 1","Folder A","Folder A-Z")) {
New-Item -ItemType Directory -Path $DestDir -Name $Folder | Set-ItemProperty -Name Attributes -Value Hidden
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment