# Change the path to your desired loactioncd D:\Raj\PowerShell\ # Add the folder names you want to create$folders = @("001", "002", "003") foreach ($folder in $folders) { New-Item -ItemType Directory -Path $folder -Force | Out-Null}Write-Host "Folders created successfully."
Assistant
Responses are generated using AI and may contain mistakes.