The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
32 views

powershell extend an object

How can I add a column to an object in PowerShell? For example, the Get-Childitem returns an object, with Mode, LastWriteTime, Length Name, etc.... And I want to extend this object with an extra ...
1
vote
1answer
132 views

get-childitem get subdir name append on script directory path

I am trying to write a PS script to find empty dirs in a directory specified by the parameter. The "empty dirs" should not contain any files and subdirs. This is the script: param ( [parameter ...
1
vote
3answers
85 views

Powershell: Delete a file inside a folder with different name of parent folder

I would like to use this option to delete those files with a specific extension (.cfg in my case) with different name of its folder. For example, if I have in a folder called MYFOLDER and inside this ...
3
votes
3answers
74 views

PSRemoting performance overhead with get-childItem

This completes in 2.3 minutes on LOCALSERVER: A: measure-command {$x = invoke-command {gci -recurse "C:\"}} This completes in 38.4 minutes on LOCALSERVER: B: measure-command {$x = ...
0
votes
2answers
168 views

Limiting Powershell Get-ChildItem by File Creation Date Range

I use a Powershell command to generate a CSV report of certain file types. My goal is to find out how many were added during a particular date range. Right now, the script finds everything and I sort ...
3
votes
1answer
205 views

piping get-childitem into select-string in powershell

I am sorting a large directory of files and I am trying to select individual lines from the output of an ls command and show those only, but I get weird results and I am not familiar enough with ...
1
vote
1answer
21 views

getchild of a view on a click event

Sorry by my english.. this is google traductor I create (java) for example 10 LLseccion. Each LLseccionhas multiple objects inside (imageview and 2 textview) i want read the first textview of a ...
2
votes
0answers
183 views

How to put different layouts for child items in ExpandableListView?

I develop an Android App, so I'm trying to use the ExpandableListView to use two different layouts for each child. But I have a problem and can't seem to fix it. I thought the problem was that I ...
1
vote
1answer
65 views

no receive-job results for gci when -path is a variable - PS

This returns nothing: $x = "C:\temp" Start-Job -ScriptBlock {get-childItem -path $x} | Wait-Job | Receive-job But providing the path parameter without a variable, like so... Start-Job -ScriptBlock ...
3
votes
3answers
397 views

How to limiting files searched by Get-ChildItem (or limiting depth of recursion)?

Background There is a directory that is automatically populated with MSI files throughout the day. I plan on leveraging Task Scheduler to run the script shown below every 15 minutes. The script will ...
0
votes
1answer
32 views

rename file with add length (in bytes) power shell

i have a problem : in files name i have to write their lengths for example qwerty.tmp → qwerty_12039.tmp ! please help use: get-childitem c:\Folder | rename-item -NewName {$_.name -replace ...
0
votes
3answers
199 views

Powershell path not taking string variable

I am using the following code to select a folder through the Windows Forms "Browse" function and then pass that path to the gci cmdlet cls Function Get-Directory($initialDirectory) { ...
1
vote
3answers
455 views

Powershell export to CSV

I am trying to create a report of files that are one day old, I currently have a script to include filename and date: get-childitem -Path \\UNC_PATH_TO_FILE | where-object {$_.lastwritetime ...
0
votes
3answers
623 views

How to use wildcards with directories in Powershell's Get-ChildItem -Exclude cmdlet

For a simple example, let's say I have a Root folder with 3 folders in it; Folder1, Folder2, and Folder3. Each of these folders (including the Root folder) has a bunch of files in it, including .pdb ...
0
votes
2answers
226 views

Avoid recursively fetching specific folders in Powershell

I have a Visual Studio solution with several projects. I clean up the bin and obj folders as part of clean up using the following script. Get-ChildItem -path source -filter obj -recurse | ...
1
vote
2answers
434 views

powershell GCI recursively skipping folders and certain file types

Currently I am using this line to collect all files in a certain path (and beyond) $files = Get-ChildItem -Path $loc -Recurse | ? { !$_.PSIsContainer } however now ive been asking to generate this ...
0
votes
3answers
164 views

Comparing 2 folders and saving the paths into a variable?

I've been given the task of comparing 2 folders, FolderA and FolderB and noting any files that exist in A but not in B. Sorry for not explaining myself fully. Maybe it would help if I explain our ...
-1
votes
1answer
184 views

Powershell get links from .txt file, grab source, get string, export to csv

In order, I have to: 1) grab all links from txt file http://example1.htm http://example2.htm http://example3.htm ... 2) get source from each link 3) get my strings from source 4) export ...
2
votes
2answers
2k views

Get images from post's gallery WordPress 3.5

How to get images from a gallery in a post in WordPress 3.5 as gallery is no longer related to posts in 3.5. get_children() doesnot work as gallery is not attachment. Any help is appreciated.
0
votes
1answer
394 views

is get-childItem's new -file parameter fast like -filter or slow like -include?

EDIT Hoping here to clarify my convoluted and misleading question... based on my mistaken assumption that -file accepts inputs. Thanks for setting me straight and pointing out that it's just a switch ...
1
vote
1answer
1k views

PathTooLong error with get-childItem in Powershell v3 but not v2

On a Windows 2008R2 VM, I upgraded Powershell to v3 hoping to take advantage of the gci performance improvement. This line ran without error in v2: $search = gci $dir -recurse -exclude "*.mdf" | ...
1
vote
1answer
181 views

Get-Childitem Workaround

I want to determine which files/filetypes consume most space on the fileserver. Due to the fact that alot of users created files with a name/path length over 260 char gci does not ...
7
votes
2answers
1k views

Powershell Get-ChildItem -Filter operates differently to Where clause with same value

I have a folder on a server called MyFolder. There are additional folders called MyFolder.1, MyFolder.2, MyFolder.3 etc. If I run: gci C:\Sample | ? { $_.Name -like "MyFolder.*" } I get the ...
-1
votes
3answers
76 views

as3 can I do this on one line

Hi I can go this var firstname = firstname_mc; var fname = firstname.getChildAt(0).text; but var firstname = MovieClip(firstname_mc).getChildAt(0).text; does not work
0
votes
1answer
197 views

AS3 access a text field

I have 3 movieclips and each has a textbox as a child. I set the active one with var myroot:MovieClip = this.root as MovieClip; var activeText:MovieClip; This works function keyClicked ...
0
votes
1answer
184 views

Get Child Activity Subtree

I'm converting a legacy workflow system to WF4 so I have to jump through a couple hoops to make it match up with the api of our application. So I'll try to keep the problem explination as simple as ...
0
votes
1answer
485 views

powershell Get-ChildItem iis:\sites | Export_CliXml sites.xml doesn't result in same as string output

Short: Get-ChildItem IIS:\Sites Get-ChildItem IIS:\Sites | Get-CliXml sites.xml returns one thing as string and another as xml. Why? Longer: When I run Get-ChildItem IIS:\Sites I get ...
1
vote
1answer
550 views

Copying files and creating new folders based on “creationdate”

I am counting all files in my Pictures folder with Get-ChildItem C:\pictures -force | Group-Object extension | Sort-Object count -descending | ft count,name -auto I am then copying all my ...
0
votes
1answer
982 views

Powershell Get-ChildItem -recurse doens't get all items

I'm working on a powershell script erase certain files from a folder, and move the rest into predefined subfolders. My structure looks like this Main (Contains a bunch of pdb and dll files) ...
0
votes
0answers
377 views

Get child component inside DataGrid with Flex

I've a Datagrid with an ItemRenderer plus two RadioButtons inside a column like this: <mx:DataGrid dataProvider="{listCol}" width="100%" id="table"> <mx:columns> ...
0
votes
2answers
112 views

How to judge certain type of files(suce as csv file) exist using powershell?

I need a function to delete all the csv files in a folder A, if there is csv files in folder A , then delete all the csv files(actually, I don't know the exact csv files' name in folder A); if there ...
3
votes
1answer
4k views

How to find files in directories with certain name using Get-ChildItem?

I have a project folder called topfolder and I want to find all files in all subfolders that match a certain pattern, e.g. when the folder contains foo anywhere in its name, I want to list all files ...
0
votes
1answer
425 views

Get-ChildItem is not showing all files in a folder

When I call Get-ChildItem in powershell it is only returning a few of the files that exist in the directory. This is the driver folder so I tried using the -force parameter in case they were hidden ...
0
votes
1answer
612 views

Powershell Error Trap for Get-ChildItem -Filter and Robocopy (ErrorAction)

I'm drafting a powershell script to manually backup some DC's. The backups need to be moved from one folder to another and I am using Get-ChildItem -Filter "Backup*" to select the backup files, then ...
0
votes
2answers
408 views

powershell script to get size of “itune(s)” folders on our server

I'm still new to PowerShell and trying to figure the best way to get the size of individual Itunes folders on our server. There are multiple folders and they are all located in the user profiles. ...
0
votes
1answer
2k views

Powershell script for deleting files and folders of specific criteria

I'm new to PowerShell and am trying to write a script that will search for: 1. folders with specific names. 2. files with specific extensions while 3. excluding certain directories from the search. ...
6
votes
4answers
3k views

How can Get-ChildItem be tested for no results (zero files)?

I'm stumped here on what seems to be a simple problem; so sorry for any bone-headed-ness over here. I have script that cleans up defunct backup files. After identifying the files I loop over and ...
1
vote
1answer
626 views

Combine get-ChildItem with ACL powershell

Im looking for some help on information on files using Power shell, we have got most of when we need apart from the owner information. the code below returns a list of directories that are older then ...
5
votes
2answers
2k views

Powershell Get-ChildItem progress question

So, I've got a set of directories 00-99 in a folder. Each of those directories has 100 subdirectories, 00-99. Each of those subdirectories has thousands of images. What I'm attempting to do is ...
2
votes
1answer
137 views

Get-ChildItem not listing files on Win Server 2003 but works fine on XP

I am trying to return a list of files based on a filter of cash_st_export*.txt but it doesn't work! If I run gci *.dll on an XP workstation in the default Powershell working directory it works fine. ...
4
votes
4answers
2k views

Combine the results of two distinct Get-ChildItem calls into single variable to do the same processing on them

I'm trying to write a powershell script to build a list of files, from several directories, then after all directories have been added to the main list, I'd like to do the same processing on all ...
0
votes
2answers
531 views

Is there a Powershell Get-Childitem timeout property?

I am trying to use the GCI cmdlet to get information on many remote computers, some of which are sometimes turned off or unresponsive. Is there a way I can specify a timeout property for get-childitem ...
4
votes
1answer
659 views

Powershell: Why does (gci c:\ddd).count on an Empty folder not return 0

Why does (gci c:\ddd).count on an Empty folder not return 0 but "nothing" I just get an Error "You cannot call a method on a null-valued expression." When my count-condition does not match. What do ...
5
votes
1answer
790 views

How to write a list sorted lexicographically in a grid listed by column?

I have the result of Get-ChildItem, and I want to iterate over these, and display their names. By default if I simply use Write-Host then I get it listed out along the row like this: PerfLogs ...
2
votes
1answer
3k views

PowerShell: Subdirectory listing to a txt-file

Today I started scripting in Windows PowerShell - so please excuse my "dumbness"... I want to create txt-Files with the name of the subfolders of each "rootfolder" on drive G:. On G:\ I have the ...
6
votes
3answers
4k views

How to write a Powershell function to get directories?

Using Powershell I can get the directories with the following command: Get-ChildItem -Path $path -Include "obj" -Recurse | ` Where-Object { $_.PSIsContainer } I would prefer to write a function ...
2
votes
1answer
1k views

Powershell, ftp, get-childitem

Little new to powershell. I am trying to locate a get-childitem like command that will work on an ftp site. Here is some psuedo-code: $target = "c:\file.txt" $username = "username" $password = ...
1
vote
1answer
4k views

Copy files where lastwritetime -ge 3/26/2010 9:00pm with Powershell

I need to copy files in one directory to another directory where the lastwritetime is greater than or equal to 3/26/2010 9:00pm. I'm using: Get-ChildItem C:\pstest\hlstore\folder1\data | ...
0
votes
2answers
4k views

Powershell Get-ChildItem -Include/-Exclude doesn't filter if passed as an arg to a function

Having a problem getting a filter argument to Get-ChildItem in a function The following works fine and displays a whole list of files: c:\temp\Get-ChildItem -Include *deleteme*.txt -Recurse Now ...
1
vote
1answer
181 views

Passing directory contents as a single line to an executable in Powershell

I have a binary executable that takes a list of file paths as arguments, e.g., C:\Tool.exe C:\Files\File1.txt C:\Files\File2.txt I would like to call this tool from Powershell. The question is, ...

1 2