Revision history of "Quickly create folders for database on empty drives"

From DevOps Notebook

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 15:25, 28 February 2026MilosZ talk contribs 293 bytes +293 Created page with "For powershell <br> <pre> foreach ($drive in 'A','D','R') { foreach ($folder in 'Data','Log') { New-Item -ItemType Directory -Force -Path "$drive`:\MSSQL\$folder"..."