About 50 results
Open links in new tab
  1. powershell - Create directory if it does not exist - Stack Overflow

    Each revision folder needs a Reports folder. Some of the "revisions" folders already contain a Reports folder; however, most do not. I need to write a script that runs daily to create these folders for each …

  2. How to create multiple folders in powershell - Super User

    Jul 8, 2018 · 1 I created the following to create a PowerShell script that will create folders and different subfolders underneath those folders based on a CSV file.

  3. Creating folders and moving files in powershell - Stack Overflow

    Jul 8, 2021 · 0 What you basically need to do, is to: Get a list of files in a selected folder through PowerShell. Create new folders in a loop by using the New-Item cmdlet which have name made by …

  4. Create a shortcut (.lnk file) using PowerShell - Stack Overflow

    Aug 14, 2024 · I want to create a shortcut with PowerShell for this executable: C:\\Program Files (x86)\\ColorPix\\ColorPix.exe How can this be done?

  5. Create a folder structure using PowerShell - Stack Overflow

    Feb 20, 2018 · You are looking for the New-Item cmdlet. Here an example to create a single folder using the New-Item cmdlet: New-item "D:\feb#16\LV2\7212\win10\x64\audio" -ItemType Directory -force

  6. Create folder remotely and Copy files - Stack Overflow

    I am trying to create a folder (if it does not exists on the server) using "powershell on target machine" task in Azure Pipeline and then copy files over from share location to the new folder created.

  7. powershell - Create folder directory from path? - Stack Overflow

    Feb 10, 2014 · C:\Folder1\Folder2\Folder3\Folder4 I want to physically create this folder path using Powershell. Not all of the file paths have the same amount of levels. I get the basic concepts of …

  8. How can I create a registry value and path leading to it in one line ...

    How can I create a registry value and path leading to it in one line using PowerShell? Asked 11 years, 3 months ago Modified 4 years, 1 month ago Viewed 92k times

  9. What is the `mkdir -p` equivalent in Powershell? [duplicate]

    Feb 4, 2022 · In other words, in Powershell, how to create directories recursively, and not fail if each directory level already exist ?

  10. Create a Clickable Folder Link in Powershell - Stack Overflow

    Aug 6, 2021 · I have a script that searches for a file name in a folder and gives a folder path. Does Powershell have a way to make these folder paths a clickable link? I want to bring up a list of file …