python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Create file list in every subfolder using PowerShell
I'm very new to PowerShell and have basically zero knowledge about PowerShell scripting, which is why I need some help.
I have folder structure with subfolders (as shown below) for which I want to gen...
redoXiD
Votes: 0
Answers: 4
Powershell send directory contents to a program
My goal is to translate .wav files in a directory using an executable which converts them to the proper audio format. Once these files are created, I then need to move everything out of the directory ...
Kirk Calabrese
Votes: 0
Answers: 3
Powershell ps1 Get Children Copy command basic
I'm not a coder. I have a Powershell script .ps1 that goes into all subfolders of "db" and deletes the files I want to delete in all of them. It works for what I need. The following code:
Ge...
Allan Amaro
Votes: 0
Answers: 1
Why is Get-ChildItem inside a Function Access denied after correct New-PSDrive? (It works outside of the function scope.)
This doesnt work
function ImportProcess{
param(
[Parameter()]
[string]$XMLPath
)
$sourcePath = $XMLPath
$DestPath = split-path "$sourcePath" -Parent #this...
Jasmin Muhamedagic
Votes: 0
Answers: 0